Skip to content

Commit 8b110a1

Browse files
committed
✅ add test support for Python 3.10
1 parent 0e8fbdb commit 8b110a1

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: "3.9"
18+
python-version: "3.10"
1919
- name: Install dependencies
2020
run: >-
2121
pip install

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- "3.7"
1515
- "3.8"
1616
- "3.9"
17+
- "3.10"
1718
steps:
1819
- name: Checkout Source
1920
uses: actions/checkout@v1

changes/_zCfgFuekQ.feature.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:white_check_mark: add support for Python `3.10`

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,coverage
2+
envlist = py37,py38,py39,py310,coverage
33
isolated_build = True
44
skip_missing_interpreters = True
55

@@ -14,7 +14,7 @@ commands =
1414
python -m unittest {posargs:discover}
1515

1616
[testenv:coverage]
17-
basepython = python3.9
17+
basepython = python3.10
1818
commands =
1919
coverage run -m unittest discover
2020
coverage report
@@ -24,3 +24,4 @@ python =
2424
3.7: py37
2525
3.8: py38
2626
3.9: py39
27+
3.10: py310

0 commit comments

Comments
 (0)