Skip to content

Commit b8829b6

Browse files
echostaccKludex
andauthored
Support Python 3.10 (#87)
* Support Python 3.10 * Update .github/workflows/test.yml * Lock dependencies to the latest available compatible versions * Update manage_fastapi/constants.py Co-authored-by: Marcelo Trylesinski <[email protected]>
1 parent 9f8b0f0 commit b8829b6

File tree

4 files changed

+273
-254
lines changed

4 files changed

+273
-254
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
python-version: [3.6, 3.7, 3.8, 3.9]
15+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1616
fail-fast: true
1717

1818
steps:

manage_fastapi/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class PythonVersion(BaseEnum):
2525
THREE_DOT_SEV = "3.7"
2626
THREE_DOT_EIG = "3.8"
2727
THREE_DOT_NIN = "3.9"
28+
THREE_DOT_TEN = "3.10"
2829

2930

3031
class License(BaseEnum):

0 commit comments

Comments
 (0)