Skip to content

Commit

Permalink
remove old python 3.4 conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
dlstadther committed Nov 30, 2024
1 parent 80549f6 commit c86e134
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit c86e134

Please sign in to comment.