From a7a97871fce027d8c3da0d96117f5b71536b8244 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 9 Nov 2019 08:41:02 +0100 Subject: [PATCH] fixup! setup.py: python_requires='!=3.4.*', --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb24676a..f8879752 100644 --- a/setup.py +++ b/setup.py @@ -311,5 +311,5 @@ def run(self): distclass=Distribution, cmdclass=cmdclass, - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', )