From c476e8553fa281977da59694702d5782cf80a174 Mon Sep 17 00:00:00 2001 From: pzhokhov Date: Sat, 29 Feb 2020 02:39:04 +0100 Subject: [PATCH] fix python_requires in setup.py (#1827) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fd2a6b6c6..c46e1c576 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ setup(name='gym', 'envs/robotics/assets/textures/*.png'] }, tests_require=['pytest', 'mock'], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', + python_requires='>=3.5', classifiers=[ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5',