Skip to content

Commit 9783cb4

Browse files
committed
chore: stop support for python 3.9
Signed-off-by: Jan Vollmer <jan@vllmr.dev>
1 parent d321649 commit 9783cb4

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1818
steps:
1919
- uses: actions/checkout@v5
2020
- name: Setup PDM

pdm.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ description = "SQLAlchemy load option that loads only from persisted session ins
44
authors = [{ name = "Jan Vollmer", email = "jan@vllmr.dev" }]
55
license = { file = "LICENSE" }
66
dependencies = ["sqlalchemy>=2.0.43"]
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.10"
88
readme = "README.md"
99
keywords = ["sqlalchemy", "session", "loader"]
1010
classifiers = [
1111
"Development Status :: 5 - Production/Stable",
1212
"Environment :: Plugins",
1313
"Intended Audience :: Developers",
1414
"License :: OSI Approved :: MIT License",
15-
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
2020
"Programming Language :: Python :: Implementation :: CPython",
2121
"Typing :: Typed",
2222
]

0 commit comments

Comments
 (0)