Skip to content

Commit 407ae13

Browse files
author
Noah
authored
fix: support python 3.10 (#499)
* fix: support python 3.10
1 parent c641aee commit 407ae13

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
matrix:
3737
os: [ubuntu-latest, windows-latest]
38-
python-version: [3.6, 3.7, 3.8, 3.9]
38+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10.0-beta.1']
3939
fail-fast: false
4040
steps:
4141
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def version_scheme(v):
8686
"Programming Language :: Python :: 3.7",
8787
"Programming Language :: Python :: 3.8",
8888
"Programming Language :: Python :: 3.9",
89+
"Programming Language :: Python :: 3.10",
8990
"Topic :: Software Development :: Libraries",
9091
"Topic :: Software Development :: Testing",
9192
],

0 commit comments

Comments
 (0)