Drop support for Python 3.7, refs #2091

This commit is contained in:
Simon Willison 2023-06-29 08:10:26 -07:00
commit 71fcdd953e
8 changed files with 13 additions and 18 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.7",
python_requires=">=3.8",
install_requires=[
"asgiref>=3.2.10",
"click>=7.1.1",
@ -102,6 +102,5 @@ setup(
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
],
)