Skip to content

Commit 02bdb01

Browse files
committed
Update also setup.py regarding enum34
1 parent b63490e commit 02bdb01

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ def read(*names, **kwargs):
2323
).read()
2424

2525

26-
install_requires = ['enum34']
26+
install_requires = []
27+
if version_info[0] < 3.4:
28+
install_requires.append('enum34')
2729
if version_info[0] < 3:
2830
install_requires.append('future')
2931

0 commit comments

Comments
 (0)