Skip to content

Commit 5f18c3b

Browse files
committed
Test on Python 3.10
1 parent c9a6a81 commit 5f18c3b

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: 3.9
20+
python-version: "3.10"
2121

2222
- name: Install dependencies
2323
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# We don't test on Windows currently as it appears mocket may not
1515
# work there.
1616
platform: [ubuntu-latest, macos-latest]
17-
python-version: [3.6, 3.7, 3.8, 3.9]
17+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
1818

1919
name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
2020
runs-on: ${{ matrix.platform }}

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ max-line-length = 88
99
universal = 1
1010

1111
[tox:tox]
12-
envlist = py36, py37, py38, py39, mypy
12+
envlist = py36, py37, py38, py39, py310, mypy
1313

1414
[gh-actions]
1515
python =
1616
3.6: py36
1717
3.7: py37
1818
3.8: py38
19-
3.9: py39, mypy
19+
3.9: py39
20+
"3.10": py310, mypy
2021

2122
[testenv]
2223
deps =

0 commit comments

Comments
 (0)