Skip to content

Commit b8c19cf

Browse files
ctilPeterHamilton
authored andcommitted
Require enum-compat instead of enum34
The enum34 package is not compatible with python 3.4+. By requiring enum-compat instead, this requirement will be a noop when installing the dependencies from a python 3.4+ environment. Closes: #450
1 parent c1b816b commit b8c19cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cryptography>=1.4
2-
enum34
2+
enum-compat
33
requests
44
six>=1.11.0
55
sqlalchemy>=1.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
install_requires=[
5252
"cryptography",
53-
"enum34",
53+
"enum-compat",
5454
"requests",
5555
"six",
5656
"sqlalchemy"

0 commit comments

Comments
 (0)