Skip to content

Commit b39c3d0

Browse files
authored
➖ Drop support for Python 3.9 (#309)
1 parent a89c45c commit b39c3d0

File tree

4 files changed

+50
-484
lines changed

4 files changed

+50
-484
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,9 @@ jobs:
3333
uv-resolution:
3434
- highest
3535
include:
36-
- python-version: "3.9"
37-
os: macos-latest
38-
uv-resolution: lowest-direct
3936
- python-version: "3.10"
4037
os: ubuntu-latest
41-
uv-resolution: highest
38+
uv-resolution: lowest-direct
4239
- python-version: "3.11"
4340
os: windows-latest
4441
uv-resolution: highest

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9
1+
3.10

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Run and manage FastAPI apps from the command line with FastAPI CL
55
authors = [
66
{name = "Sebastián Ramírez", email = "tiangolo@gmail.com"},
77
]
8-
requires-python = ">=3.9"
8+
requires-python = ">=3.10"
99
readme = "README.md"
1010
license = "MIT"
1111
license-files = ["LICENSE"]
@@ -24,7 +24,6 @@ classifiers = [
2424
"Framework :: FastAPI",
2525
"Intended Audience :: Developers",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
@@ -47,7 +46,7 @@ standard-no-fastapi-cloud-cli = [
4746
"uvicorn[standard] >= 0.15.0",
4847
]
4948
new = [
50-
"fastapi-new >= 0.0.2 ; python_version >= '3.10'",
49+
"fastapi-new >= 0.0.2",
5150
]
5251

5352
[project.urls]

0 commit comments

Comments
 (0)