Skip to content

Commit 8d00ed4

Browse files
committed
πŸ”§ Drop support for Python 3.8
1 parent f15bfd8 commit 8d00ed4

4 files changed

Lines changed: 66 additions & 926 deletions

File tree

β€Ž.github/workflows/test.ymlβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ jobs:
2525
test:
2626
strategy:
2727
matrix:
28-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
28+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2929
pydantic-version: ["v2"]
3030
include:
31-
- python-version: "3.8"
32-
pydantic-version: "v1"
3331
- python-version: "3.9"
3432
pydantic-version: "v1"
3533
- python-version: "3.10"

β€Ž.python-versionβ€Ž

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

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "fastapi-cloud-cli"
33
dynamic = ["version"]
44
description = "Deploy and manage FastAPI Cloud apps from the command line πŸš€"
55
authors = [{ name = "Patrick Arminio", email = "patrick@fastapilabs.com" }]
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.9"
77
readme = "README.md"
88
license = { text = "MIT" }
99
classifiers = [
@@ -22,7 +22,6 @@ classifiers = [
2222
"Intended Audience :: Developers",
2323
"License :: OSI Approved :: MIT License",
2424
"Programming Language :: Python :: 3 :: Only",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
Β (0)