Skip to content

Commit cec1a89

Browse files
committed
Test on Python 3.10
1 parent e5d821a commit cec1a89

6 files changed

Lines changed: 18 additions & 11 deletions

File tree

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "windows-2019"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8"]
20+
python-version: ["3.6","3.7","3.8","3.9"]
2121

2222

2323
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "macos-latest"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy3'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8","pypy3"]
20+
python-version: ["3.6","3.7","3.8","3.9","pypy3"]
2121

2222

2323
steps:

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ python:
88
- '3.6'
99
- '3.7'
1010
- '3.8'
11-
- '3.9-dev'
11+
- '3.9'
12+
- '3.10-dev'
1213
- 'pypy3'
1314

1415
arch:
@@ -40,7 +41,9 @@ jobs:
4041
arch: arm64
4142
- python: '3.8'
4243
arch: arm64
43-
- python: '3.9-dev'
44+
- python: '3.9'
45+
arch: arm64
46+
- python: '3.10-dev'
4447
arch: arm64
4548
- python: 'pypy3'
4649
arch: arm64

repo_helper.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ python_versions:
1818
- '3.6'
1919
- '3.7'
2020
- "3.8"
21-
- "3.9-dev"
21+
- '3.9'
22+
- "3.10-dev"
2223
- "pypy3"
2324

2425
# travis secure password for PyPI

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers =
2626
Operating System :: OS Independent
2727
Programming Language :: Python
2828
Programming Language :: Python :: 3 :: Only
29+
Programming Language :: Python :: 3.10
2930
Programming Language :: Python :: 3.6
3031
Programming Language :: Python :: 3.7
3132
Programming Language :: Python :: 3.8

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py36, py37, py38, py39-dev, pypy3, mypy, build
22+
envlist = py36, py37, py38, py39, py310-dev, pypy3, mypy, build
2323
skip_missing_interpreters = True
2424
requires = pip>=20.2.1
2525
isolated_build = True
2626

2727
[envlists]
28-
test = py36, py37, py38, py39-dev, pypy3
28+
test = py36, py37, py38, py39, py310-dev, pypy3
2929
qa = mypy, lint
3030
cov = py36, coverage
3131

@@ -34,15 +34,17 @@ python =
3434
3.6: py36, build, mypy
3535
3.7: py37, build
3636
3.8: py38, build
37-
3.9-dev: py39-dev, build
37+
3.9: py39, build
38+
3.10-dev: py310-dev, build
3839
pypy3: pypy3, build
3940

4041
[gh-actions]
4142
python =
4243
3.6: py36, build
4344
3.7: py37, build
4445
3.8: py38, build
45-
3.9-dev: py39-dev, build
46+
3.9: py39, build
47+
3.10-dev: py310-dev, build
4648
pypy3: pypy3, build
4749

4850
[testenv]

0 commit comments

Comments
 (0)