Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #242 from tango-controls/support-older-distutils-f…
Browse files Browse the repository at this point in the history
…or-enum34-install

Improve Python version check for enum34 install
  • Loading branch information
ajoubertza authored Feb 23, 2019
2 parents 7cf3f39 + 110bcd0 commit b432906
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,9 @@ def setup_args():

install_requires = [
'six',
'enum34;python_version<"3.4"',
]
if PYTHON_VERSION < (3, 4):
install_requires.append('enum34')

setup_requires = []

Expand Down

0 comments on commit b432906

Please sign in to comment.