Skip to content

Commit 8fe514e

Browse files
committed
Dropped 3.10 support
1 parent 5b26b97 commit 8fe514e

File tree

4 files changed

+3
-422
lines changed

4 files changed

+3
-422
lines changed

.github/workflows/workflow.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
strategy:
2929
matrix:
3030
python-version:
31-
- '3.10'
3231
- '3.11'
3332
- '3.12'
3433
- '3.13'

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,12 @@ classifiers = [
1919
"Natural Language :: English",
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python :: 3 :: Only",
22-
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
2524
"Programming Language :: Python :: 3.13",
2625
"Programming Language :: Python :: Implementation :: CPython",
2726
]
28-
requires-python = ">=3.10"
27+
requires-python = ">=3.11"
2928
dependencies = [
3029
"fastapi>=0.104.0",
3130
"sqlmodel>=0.0.8",
@@ -99,7 +98,7 @@ description = "TimescaleDB is a Python Client based on SQLModel and SQLAlchemy f
9998
authors = ["Justin Mitchel <justin@codingforentrepreneurs.com>"]
10099

101100
[tool.poetry.dependencies]
102-
python = "^3.10"
101+
python = "^3.11"
103102
fastapi = "^0.115.8"
104103
sqlmodel = "^0.0.22"
105104
uvicorn = "^0.34.0"

tests/requirements/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
run = partial(subprocess.run, check=True)
2424

2525
# Generate requirements for each supported Python version
26-
for py_version in ["3.10", "3.11", "3.12", "3.13"]:
26+
for py_version in ["3.11", "3.12", "3.13"]:
2727
run(
2828
[
2929
*common_args,

0 commit comments

Comments
 (0)