From b3d02b0c37b0d6f8db4e333ab20642062b987d70 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Thu, 28 Sep 2017 22:33:17 -0400 Subject: [PATCH] Add missing python3.4 typing requirement typing is included python3.5+ --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index a3409457..5271f772 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,9 @@ setup( install_requires=install_requires, extras_require={ 'testing': testing_extras, + ':python_version=="3.4"': ['typing'], }, + python_requires='~=3.4', license='GPLv2', packages=['allianceauth'], url='https://github.com/allianceauth/allianceauth',