Skip to content

Commit 5fb8595

Browse files
committed
drop Python 3.9 and adds support for Python 3.14
1 parent fee5d97 commit 5fb8595

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
34+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3535

3636
# Service containers to run with `container-job`
3737
services:
@@ -78,7 +78,7 @@ jobs:
7878
runs-on: ubuntu-latest
7979
strategy:
8080
matrix:
81-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
81+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
8282

8383
steps:
8484
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def extras_require() -> dict[str, list[str]]:
6868
long_description_content_type="text/markdown",
6969
author="Daniel Townsend",
7070
author_email="[email protected]",
71-
python_requires=">=3.9.0",
71+
python_requires=">=3.10.0",
7272
url="https://github.com/piccolo-orm/piccolo_api",
7373
packages=find_packages(exclude=("tests",)),
7474
package_data={
@@ -84,11 +84,11 @@ def extras_require() -> dict[str, list[str]]:
8484
"License :: OSI Approved :: MIT License",
8585
"Programming Language :: Python",
8686
"Programming Language :: Python :: 3",
87-
"Programming Language :: Python :: 3.9",
8887
"Programming Language :: Python :: 3.10",
8988
"Programming Language :: Python :: 3.11",
9089
"Programming Language :: Python :: 3.12",
9190
"Programming Language :: Python :: 3.13",
91+
"Programming Language :: Python :: 3.14",
9292
"Programming Language :: Python :: Implementation :: CPython",
9393
],
9494
)

0 commit comments

Comments
 (0)