Drop support for Python 3.6, closes #1577

Refs #1606
This commit is contained in:
Simon Willison 2022-01-19 20:31:22 -08:00
commit fae3983c51
7 changed files with 12 additions and 13 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.6",
python_requires=">=3.7",
install_requires=[
"asgiref>=3.2.10,<3.5.0",
"click>=7.1.1,<8.1.0",
@ -91,6 +91,5 @@ setup(
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
],
)