Skip to content

Commit 46d3cce

Browse files
author
Olivier Chédru
authored
Merge pull request #91 from ochedru/python_3_11
Build with python 3.11
2 parents c11fa72 + 052faea commit 46d3cce

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
12+
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: set up Python ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
13+
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: set up Python ${{ matrix.python-version }}

tox.ini

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

55
[gh-actions]
@@ -11,6 +11,7 @@ python =
1111
3.8: py38
1212
3.9: py39
1313
3.10: py310
14+
3.11: py311
1415

1516
[testenv]
1617
deps =

0 commit comments

Comments
 (0)