We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee5d97 commit 5fb8595Copy full SHA for 5fb8595
.github/workflows/tests.yaml
@@ -31,7 +31,7 @@ jobs:
31
runs-on: ubuntu-latest
32
strategy:
33
matrix:
34
- python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
35
36
# Service containers to run with `container-job`
37
services:
@@ -78,7 +78,7 @@ jobs:
78
79
80
81
82
83
steps:
84
- uses: actions/checkout@v4
setup.py
@@ -68,7 +68,7 @@ def extras_require() -> dict[str, list[str]]:
68
long_description_content_type="text/markdown",
69
author="Daniel Townsend",
70
author_email="[email protected]",
71
- python_requires=">=3.9.0",
+ python_requires=">=3.10.0",
72
url="https://github.com/piccolo-orm/piccolo_api",
73
packages=find_packages(exclude=("tests",)),
74
package_data={
@@ -84,11 +84,11 @@ def extras_require() -> dict[str, list[str]]:
"License :: OSI Approved :: MIT License",
85
"Programming Language :: Python",
86
"Programming Language :: Python :: 3",
87
- "Programming Language :: Python :: 3.9",
88
"Programming Language :: Python :: 3.10",
89
"Programming Language :: Python :: 3.11",
90
"Programming Language :: Python :: 3.12",
91
"Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
92
"Programming Language :: Python :: Implementation :: CPython",
93
],
94
)
0 commit comments