Skip to content

Commit 62c57cc

Browse files
committed
Add Python 3.10 to the CI setup
1 parent 0f771c5 commit 62c57cc

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
- os: ubuntu-20.04
3030
python: "3.9"
3131
experimental: true
32+
- os: ubuntu-20.04
33+
python: "3.10"
34+
experimental: true
3235

3336
runs-on: ${{ matrix.os }}
3437
continue-on-error: ${{ matrix.experimental }}

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ classifiers =
2323
Programming Language :: Python :: 3.6
2424
Programming Language :: Python :: 3.7
2525
Programming Language :: Python :: 3.8
26+
Programming Language :: Python :: 3.9
27+
Programming Language :: Python :: 3.10
2628

2729
[options]
2830
packages = find:

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[tox]
2-
envlist = {py35,py36,py37,py38}
2+
envlist = {py35,py36,py37,py38,py39,py310}
33

44
[testenv]
55
basepython =
66
py35: python3.5
77
py36: python3.6
88
py37: python3.7
99
py38: python3.8
10+
py39: python3.9
11+
py310: python3.10
1012
deps = .
1113
usedevelop = True
1214
commands = make test

0 commit comments

Comments
 (0)