Skip to content

Commit 6e16d66

Browse files
feaet: added support for python 3.12 (#19)
* refactor: removed support for python 3.7 * feat: added support for python 3.12 * feat: added support for 3.13 * fix: removed support for 3.13 since it is devel version only --------- Co-authored-by: Martin Hablak <martin.hablak@sk.ibm.com>
1 parent 800f0c6 commit 6e16d66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
FASTAPI_FF: '{"json_only": False, "file_1": True, "file_2": False, "file_3": True, "file_4": True}'
1515
strategy:
1616
matrix:
17-
python-version: [3.8, 3.9, '3.10', '3.11']
17+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1818

1919
steps:
2020
- uses: actions/checkout@v2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = []
3232
dynamic = ["version"]
3333

3434
[tool.poetry.dependencies]
35-
python = ">=3.7, <=3.12"
35+
python = ">=3.8, <=3.12"
3636
requests = "^2.29.0"
3737
fastapi = "^0.103.1"
3838

0 commit comments

Comments
 (0)