We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b63490e commit 02bdb01Copy full SHA for 02bdb01
1 file changed
setup.py
@@ -23,7 +23,9 @@ def read(*names, **kwargs):
23
).read()
24
25
26
-install_requires = ['enum34']
+install_requires = []
27
+if version_info[0] < 3.4:
28
+ install_requires.append('enum34')
29
if version_info[0] < 3:
30
install_requires.append('future')
31
0 commit comments