Skip to content

Commit c11fa72

Browse files
author
Olivier Chédru
authored
Build on Python 3.10 (#88)
1 parent 2c2eb92 commit c11fa72

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 ]
12+
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
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 ]
13+
python-version: [ '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
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
2+
envlist = py27, py35, py36, py37, py38, py39, py310
33
skip_missing_interpreters = True
44

55
[gh-actions]
@@ -10,6 +10,7 @@ python =
1010
3.7: py37
1111
3.8: py38
1212
3.9: py39
13+
3.10: py310
1314

1415
[testenv]
1516
deps =

0 commit comments

Comments
 (0)