Min. supported Python version

This commit is contained in:
Michał Pasternak 2022-08-08 00:40:17 +02:00
parent 2e3f009426
commit f98fb8ca24

View file

@ -27,7 +27,6 @@ setup(
"static/dbtemplates/js/*.js", "static/dbtemplates/js/*.js",
], ],
}, },
python_requires=">=3.7",
classifiers=[ classifiers=[
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: Web Environment", "Environment :: Web Environment",
@ -43,7 +42,7 @@ setup(
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Framework :: Django", "Framework :: Django",
], ],
python_requires='>=3.6', python_requires=">=3.7",
install_requires=["django-appconf >= 0.4"], install_requires=["django-appconf >= 0.4"],
) )