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
This commit is contained in:
ctil 2019-08-28 08:58:35 -06:00 committed by Peter Hamilton
parent c1b816bf04
commit b8c19cfa0d
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cryptography>=1.4
enum34
enum-compat
requests
six>=1.11.0
sqlalchemy>=1.0

View File

@ -50,7 +50,7 @@ setuptools.setup(
},
install_requires=[
"cryptography",
"enum34",
"enum-compat",
"requests",
"six",
"sqlalchemy"