Skip to content

Commit b5f2574

Browse files
committed
Add support for Python 3.10.
1 parent 7b8f6b9 commit b5f2574

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,18 @@ jobs:
7272
toxenv: py39-format_nongpl-build
7373
- name: 3.9
7474
toxenv: py39-format_nongpl-tests
75+
- name: "3.10"
76+
toxenv: py310-noextra-build
77+
- name: "3.10"
78+
toxenv: py310-noextra-tests
79+
- name: "3.10"
80+
toxenv: py310-format-build
81+
- name: "3.10"
82+
toxenv: py310-format-tests
83+
- name: "3.10"
84+
toxenv: py310-format_nongpl-build
85+
- name: "3.10"
86+
toxenv: py310-format_nongpl-tests
7587
- name: 3.9
7688
toxenv: docs-dirhtml
7789
- name: 3.9

.github/workflows/packaging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-latest, ubuntu-latest]
14-
python-version: [pypy3, 3.7, 3.8, 3.9]
14+
python-version: [pypy-3.7, 3.9]
1515

1616
steps:
1717
- uses: actions/checkout@v2

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers =
1818
Programming Language :: Python :: 3.7
1919
Programming Language :: Python :: 3.8
2020
Programming Language :: Python :: 3.9
21+
Programming Language :: Python :: 3.10
2122
Programming Language :: Python :: Implementation :: CPython
2223
Programming Language :: Python :: Implementation :: PyPy
2324

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{37,38,39,py3}-{noextra,format,format_nongpl}-{build,tests},
3+
py{37,38,39,310,py3}-{noextra,format,format_nongpl}-{build,tests},
44
readme
55
safety
66
secrets

0 commit comments

Comments
 (0)