Change python_requires in setup.py

This commit is contained in:
Chad Whitacre 2020-06-26 07:50:42 -04:00
parent 73c40e8d2a
commit 2eab253b0f

View File

@ -353,7 +353,9 @@ setup(name="tahoe-lafs", # also set in __init__.py
package_dir = {'':'src'},
packages=find_packages('src') + ['allmydata.test.plugins'],
classifiers=trove_classifiers,
python_requires="<3.0",
# We support Python 2.7, and we're working on support for 3.6 (the
# highest version that PyPy currently supports).
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <3.7",
install_requires=install_requires,
extras_require={
# Duplicate the Twisted pywin32 dependency here. See