remove enum34 to avoid issue with python 3.5+ #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We experienced an issue in a python 3.6 environment during the install of dependencies due to enum34.
AttributeError: module 'enum' has no attribute 'IntFlag'
Generally, it's considered good practice to utilize enum34 with Python versions 3.4 (or earlier), as stated by the packages description[1] (and a number of additional GitHub issues[2][3]):
'Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4'
If you require the functionality of enum34, I'd recommend utilizing aenum[4], or another package which would fit your purposes.
References:
[1] https://pypi.org/project/enum34/
[2] PyCQA/flake8-import-order#148
[3] snipsco/snips-nlu#649
[4] https://pypi.org/project/aenum/