Python 3.14, drop Python 3.9

Closes #2506
This commit is contained in:
Simon Willison 2025-10-08 13:11:32 -07:00 committed by GitHub
commit 85da8474d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 22 additions and 25 deletions

View file

@ -40,7 +40,7 @@ setup(
packages=find_packages(exclude=("tests",)),
package_data={"datasette": ["templates/*.html"]},
include_package_data=True,
python_requires=">=3.8",
python_requires=">=3.10",
install_requires=[
"asgiref>=3.2.10",
"click>=7.1.1",
@ -48,7 +48,6 @@ setup(
"Jinja2>=2.10.3",
"hupper>=1.9",
"httpx>=0.20",
'importlib_resources>=1.3.1; python_version < "3.9"',
'importlib_metadata>=4.6; python_version < "3.10"',
"pluggy>=1.0",
"uvicorn>=0.11",
@ -99,9 +98,10 @@ setup(
"Intended Audience :: End Users/Desktop",
"Topic :: Database",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
],
)