Skip to content

Commit 8217f14

Browse files
authored
Add Python 3.10 support (#461)
1 parent 7bf2d41 commit 8217f14

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu, windows, macos]
17-
python: [3.8, 3.9]
17+
python: ["3.8", "3.9", "3.10"]
1818
steps:
1919
- name: ⤵️ Check out code from GitHub
2020
uses: actions/checkout@v2.4.0

.github/workflows/typing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: [3.8, 3.9]
16+
python: ["3.8", "3.9", "3.10"]
1717
steps:
1818
- name: ⤵️ Check out code from GitHub
1919
uses: actions/checkout@v2.4.0

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Natural Language :: English",
1818
"Programming Language :: Python :: 3.8",
1919
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
2021
"Programming Language :: Python :: 3",
2122
"Topic :: Software Development :: Libraries :: Python Modules",
2223
]

0 commit comments

Comments
 (0)