8000 Update setup.py, enum module is required with Python 2.7 and < 3.4.0. · apache/libcloud@5159bab · GitHub
[go: up one dir, main page]

Skip to content

Commit 5159bab

Browse files
committed
Update setup.py, enum module is required with Python 2.7 and < 3.4.0.
1 parent 73186bf commit 5159bab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def run(self):
126126

127127
if PY2_or_3_pre_34:
128128
INSTALL_REQUIREMENTS.append('typing')
129+
INSTALL_REQUIREMENTS.append('enum34')
129130

130131
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
131132
pytest_runner = ['pytest-runner'] if needs_pytest else []

0 commit comments

Comments
 (0)
0