Skip to content

Commit 399442f

Browse files
committed
Support Python 10 (#86)
- Update CI to support 3.10 - Update setup files to support 3.10
1 parent 0535266 commit 399442f

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: [ubuntu-latest, macos-latest, windows-latest]
41-
python-version: [3.6, 3.7, 3.8, 3.9]
41+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
4242

4343
steps:
4444
- uses: actions/checkout@v2

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,7 @@
5454
"python.analysis.typeCheckingMode": "basic",
5555
"python.testing.pytestArgs": [
5656
"--no-cov"
57-
]
57+
],
58+
"cmake.configureOnOpen": false,
59+
"restructuredtext.languageServer.disabled": true
5860
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
"Topic :: Utilities",
4848
],
4949
data_files=[],
50-
python_requires='>=3.6, <3.10',
50+
python_requires='>=3.6, <3.11',
5151
platforms="Any",
5252
)

setup_func_adl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
"Topic :: Utilities",
5151
],
5252
data_files=[],
53-
python_requires='>=3.6, <3.10',
53+
python_requires='>=3.6, <3.11',
5454
platforms="Any",
5555
)

setup_func_adl_ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
"Topic :: Utilities",
5151
],
5252
data_files=[],
53-
python_requires='>=3.6, <3.10',
53+
python_requires='>=3.6, <3.11',
5454
platforms="Any",
5555
)

0 commit comments

Comments
 (0)