Skip to content

Commit efc7ca8

Browse files
authored
Merge pull request #39 from kmaehashi/py-3.11
Support Python 3.11
2 parents c8776e7 + cea41b4 commit efc7ca8

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ on:
77

88
jobs:
99
test:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ['2.7', '3.7', '3.8', '3.9', '3.10']
13+
python-version: ['2.7', '3.7', '3.8', '3.9', '3.10', '3.11']
1414

1515
steps:
1616
- name: Git Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
submodules: recursive
2020

2121
- name: Setup Python
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v4
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Install
2626
Requirements
2727
------------
2828

29-
* Python 2.7 / 3.7 / 3.8 / 3.9 / 3.10
29+
* Python 2.7 / 3.7 / 3.8 / 3.9 / 3.10 / 3.11
3030

3131
Usage
3232
-----

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def _read(filename):
2929
'Programming Language :: Python :: 3.8',
3030
'Programming Language :: Python :: 3.9',
3131
'Programming Language :: Python :: 3.10',
32+
'Programming Language :: Python :: 3.11',
3233
],
3334
packages=find_packages(),
3435
test_suite = 'atwiki.test',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py37, py38, py39, py310
2+
envlist = py27, py37, py38, py39, py310, py311
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)