Skip to content

Commit 55c3ec7

Browse files
authored
drop Python 3.9 and adds support for Python 3.14 (#458)
1 parent 38e23bd commit 55c3ec7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
strategy:
4545
matrix:
46-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
46+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4747

4848
steps:
4949
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_version():
6767
long_description_content_type="text/markdown",
6868
author="Daniel Townsend",
6969
author_email="[email protected]",
70-
python_requires=">=3.9.0",
70+
python_requires=">=3.10.0",
7171
url="https://github.com/piccolo-orm/piccolo_admin",
7272
packages=find_packages(exclude=("tests",)),
7373
install_requires=REQUIREMENTS,
@@ -81,11 +81,11 @@ def get_version():
8181
"License :: OSI Approved :: MIT License",
8282
"Programming Language :: Python",
8383
"Programming Language :: Python :: 3",
84-
"Programming Language :: Python :: 3.9",
8584
"Programming Language :: Python :: 3.10",
8685
"Programming Language :: Python :: 3.11",
8786
"Programming Language :: Python :: 3.12",
8887
"Programming Language :: Python :: 3.13",
88+
"Programming Language :: Python :: 3.14",
8989
"Programming Language :: Python :: Implementation :: CPython",
9090
"Topic :: Database :: Front-Ends",
9191
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", # noqa: E501

0 commit comments

Comments
 (0)