From 966c220e5567f5d5c8dffea98ea19a10b01f4c02 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Thu, 6 May 2021 18:37:57 +0200 Subject: [PATCH] Declare Python 3.4 as incompatible (#807) Python 3.4 testing has been dropped in #608, but it was not declared as incompatible in setup.py because the code base was expected to still work with Python 3.4 for a while. This compatibility finally broke with the 21.1.0 release. At least one of the problematic commits is e09b1d642339d7d94ba58d7855da40e65ed1a88f introducing an import of the typing module not available in Python 3.4. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3e224a5b5..79e45bfda 100644 --- a/setup.py +++ b/setup.py @@ -133,7 +133,7 @@ def find_meta(meta): long_description_content_type="text/x-rst", packages=PACKAGES, package_dir={"": "src"}, - 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.*", zip_safe=False, classifiers=CLASSIFIERS, install_requires=INSTALL_REQUIRES,