From a5f143ff03fceb3d90af13f0020f720b2047468c Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 14 Jan 2019 19:37:03 +0200 Subject: [PATCH] Do not install on Python 3.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38a9c85a..2d810b15 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ def get_release_command_class(): "Tracker": "{:s}/issues".format(REPOSITORY_URL), }, - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', install_requires=setuptools_require + install_requires, setup_requires=setuptools_require + pytest_runner_require, tests_require=tests_requires,