Skip to content

Commit a6fdfbd

Browse files
authored
⬆️ Support Python 3.11 (#101)
1 parent 87aa4c0 commit a6fdfbd

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.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.7", "3.8", "3.9", "3.10"]
15+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
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_EIG = "3.8"
2626
THREE_DOT_NIN = "3.9"
2727
THREE_DOT_TEN = "3.10"
28+
THREE_DOT_ELE = "3.11"
2829

2930

3031
class License(BaseEnum):

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.8",
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
2829
]
2930
dependencies = [
3031
"cookiecutter >= 1.7.2",

0 commit comments

Comments
 (0)