Added pytz to install_requires.

pytz will not automatically be installed with Django from v4.0.
This commit is contained in:
Carlton Gibson 2021-09-22 09:57:17 +02:00
parent f0a5b958a1
commit 250479dc37

View File

@ -82,7 +82,7 @@ setup(
author_email='tom@tomchristie.com', # SEE NOTE BELOW (*)
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=["django>=2.2"],
install_requires=["django>=2.2", "pytz"],
python_requires=">=3.5",
zip_safe=False,
classifiers=[