Skip to content

Commit e57b2ac

Browse files
committed
remove explicit references to enum34 and use enum-compat instead
1 parent 74ce5c5 commit e57b2ac

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

setup.py

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

2525

26-
install_requires = []
27-
if version_info[0] < 3.4:
28-
install_requires.append('enum34')
26+
install_requires = ['enum-compat']
2927
if version_info[0] < 3:
3028
install_requires.append('future')
3129

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ deps =
2727
pytest
2828
nose
2929
future
30-
enum34
30+
enum-compat
3131
coverage
3232
commands =
3333
pytest -vv tests

0 commit comments

Comments
 (0)