[AIRFLOW-3779] Don't install enum34 backport when not needed (#4620)

https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-platform-specific-dependencies

Installing this in more recent versions causes a "AttributeError: module
'enum' has no attribute 'IntFlag'`" in re.py
This commit is contained in:
Ash Berlin-Taylor 2019-01-30 19:19:41 +00:00 коммит произвёл Tao Feng
Родитель 82c60a2040
Коммит 7ebecd677d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -291,7 +291,7 @@ def do_setup():
'configparser>=3.5.0, <3.6.0',
'croniter>=0.3.17, <0.4',
'dill>=0.2.2, <0.3',
'enum34~=1.1.6',
'enum34~=1.1.6;python_version<"3.4"',
'flask>=0.12.4, <0.13',
'flask-appbuilder==1.12.1',
'flask-admin==1.5.2',