Skip to content

Commit 6abc3a4

Browse files
committed
Add support for Python 3.10.
1 parent 65c8823 commit 6abc3a4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install python
2020
uses: actions/setup-python@v2.2.2
2121
with:
22-
python-version: 3.9
22+
python-version: "3.x"
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip setuptools
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
python-version: [2.7, 3.7, 3.8, 3.9]
40+
python-version: [2.7, 3.7, 3.8, 3.9, "3.10"]
4141
steps:
4242
- uses: actions/checkout@v2
4343
- name: Install python ${{matrix.python-version}}
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install python
7171
uses: actions/setup-python@v2.2.2
7272
with:
73-
python-version: 3.9
73+
python-version: "3.x"
7474
- name: Install dependencies
7575
run: |
7676
python -m pip install --upgrade pip setuptools twine

docs/history.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Release History
88
- Integrate with codecov.io.
99
- Adopt the Contributor Covenant.
1010
- Add ``jsonscribe.config`` module.
11+
- Advertise support for 3.10
1112

1213
2.0.0 (11-May-2021)
1314
-------------------

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
'Programming Language :: Python :: 3.7',
3939
'Programming Language :: Python :: 3.8',
4040
'Programming Language :: Python :: 3.9',
41+
'Programming Language :: Python :: 3.10',
4142
],
4243
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py27,py37,py39
2+
envlist = lint,py27,py37,py39,py310
33
toxworkdir = ./build/tox
44

55
[testenv]

0 commit comments

Comments
 (0)