Skip to content

Commit 385b835

Browse files
authored
FEAT: Support Python 3.10 (#64)
* fix: tested with Python 3.10 Signed-off-by: Paul Horton <[email protected]> * added trove classifier for Python 3.10 Signed-off-by: Paul Horton <[email protected]> * fix: upgrade Poetry version to workaround issue between Poetry and Python 3.10 (see: python-poetry/poetry#4210) Signed-off-by: Paul Horton <[email protected]>
1 parent 7262783 commit 385b835

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# see https://github.com/marketplace/actions/setup-poetry
2626
uses: Gr1N/setup-poetry@v7
2727
with:
28-
poetry-version: 1.1.8
28+
poetry-version: 1.1.11
2929
- uses: actions/cache@v2
3030
with:
3131
path: ~/.cache/pypoetry/virtualenvs

.github/workflows/poetry.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ jobs:
8080
matrix:
8181
os: [ubuntu-latest, windows-latest, macos-latest]
8282
python-version:
83-
- "3.9" # highest supported
83+
- "3.10" # highest supported
84+
- "3.9"
8485
- "3.8"
8586
- "3.7"
8687
- "3.6" # lowest supported
@@ -107,7 +108,7 @@ jobs:
107108
# see https://github.com/marketplace/actions/setup-poetry
108109
uses: Gr1N/setup-poetry@v7
109110
with:
110-
poetry-version: 1.1.8
111+
poetry-version: 1.1.11
111112
- uses: actions/cache@v2
112113
with:
113114
path: ~/.cache/pypoetry/virtualenvs

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
'Programming Language :: Python :: 3.7',
3131
'Programming Language :: Python :: 3.8',
3232
'Programming Language :: Python :: 3.9',
33+
'Programming Language :: Python :: 3.10',
3334
'Typing :: Typed'
3435
]
3536
keywords = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ minversion = 3.10
88
envlist =
99
flake8
1010
mypy
11-
py{39,38,37,36}
11+
py{310,39,38,37,36}
1212
isolated_build = True
1313
skip_missing_interpreters = True
1414
usedevelop = False

0 commit comments

Comments
 (0)