fix python_requires in setup.py (#1827)

This commit is contained in:
pzhokhov
2020-02-29 02:39:04 +01:00
committed by GitHub
parent a14e1c7292
commit c476e8553f

View File

@@ -43,7 +43,7 @@ setup(name='gym',
'envs/robotics/assets/textures/*.png'] 'envs/robotics/assets/textures/*.png']
}, },
tests_require=['pytest', 'mock'], tests_require=['pytest', 'mock'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', python_requires='>=3.5',
classifiers=[ classifiers=[
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',