Skip to content

Commit 8590eaa

Browse files
authored
ci: add support for Python 3.11 (#3064)
Signed-off-by: Hugo van Kemenade <[email protected]>
1 parent 3002298 commit 8590eaa

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.0-alpha - 3.11.0"]
24+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2525

2626
steps:
2727
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/setup-python@v4
2222
with:
23-
python-version: '3.10'
23+
python-version: '3.x'
2424

2525
- name: Generate Pacakge
2626
run: |

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
'Programming Language :: Python :: 3.8',
7272
'Programming Language :: Python :: 3.9',
7373
'Programming Language :: Python :: 3.10',
74+
'Programming Language :: Python :: 3.11',
7475
'Topic :: Software Development',
7576
'Topic :: Utilities',
7677
'License :: OSI Approved :: Apache Software License',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, flake8
2+
envlist = py{37,38,39,310,311}, flake8
33
skipsdist=True
44

55
[testenv]

0 commit comments

Comments
 (0)