Skip to content

Commit

Permalink
Require enum34 in Python 2 only
Browse files Browse the repository at this point in the history
The enum34 package is included in the standard library since Python 3.4, so there's no need to add it as a requirement when installing PyRDF in a Python 3.4+ environment.
In fact, this requirement is messing with pip (e.g. pypa/pip#8214)
  • Loading branch information
vepadulano committed Dec 8, 2020
1 parent 5a25588 commit 554b04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
enum34
enum34 ; python_version < '3.4' # Requires pip 6.0 and later
nose

0 comments on commit 554b04f

Please sign in to comment.