From c86e1348c6940014f0ad898b9be2eca632e12739 Mon Sep 17 00:00:00 2001 From: Dillon Stadther Date: Fri, 29 Nov 2024 21:05:03 -0500 Subject: [PATCH] remove old python 3.4 conditional --- setup.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/setup.py b/setup.py index e01d76018a..aa6efcf21a 100644 --- a/setup.py +++ b/setup.py @@ -52,13 +52,6 @@ def get_static_files(path): else: install_requires.append('tornado>=5.0,<6') -# Note: To support older versions of setuptools, we're explicitly not -# using conditional syntax (i.e. 'enum34>1.1.0;python_version<"3.4"'). -# This syntax is a problem for setuptools as recent as `20.1.1`, -# published Feb 16, 2016. -if sys.version_info[:2] < (3, 4): - install_requires.append('enum34>1.1.0') - if os.environ.get('READTHEDOCS', None) == 'True': # So that we can build documentation for luigi.db_task_history and luigi.contrib.sqla install_requires.append('sqlalchemy')