Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require enum-compat instead of enum34 #579

Merged
merged 1 commit into from Aug 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,5 +1,5 @@
cryptography>=1.4
enum34
enum-compat
requests
six>=1.11.0
sqlalchemy>=1.0
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -50,7 +50,7 @@
},
install_requires=[
"cryptography",
"enum34",
"enum-compat",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://github.com/jstasiak/enum-compat/blob/master/README.rst suggests to use
enum34; python_version < '3.4'
directly.
With enum-compat, we get autogenerated RPM dep in Fedora Requires: python3.9dist(enum-compat) which does not exist.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, looks like it should be changed back to enum34; python_version < '3.4'. Looks like the README in enum-compat was updated a couple months after this was merged to say it's no longer needed.

"requests",
"six",
"sqlalchemy"
Expand Down