Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Update enum34 dependency (#13)
Browse files Browse the repository at this point in the history
Make sure its only installed for older python versions
  • Loading branch information
jonathangreen authored Dec 22, 2021
1 parent cf5e934 commit 770ca2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ packages = [
[tool.poetry.dependencies]
python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
multipledispatch = "^0.6.0"
enum34 = "^1.1.10"
enum34 = { version = "^1.1.10", python = "< 3.4" }
jsonschema = "^3.2.0"
rfc3987 = "^1.3.8"
pyrsistent = "0.16.1"
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ disable =
too-many-ancestors,
duplicate-code,
raise-missing-from,
too-many-lines
too-many-lines,
consider-using-f-string

[gh-actions]
python =
Expand Down

0 comments on commit 770ca2d

Please sign in to comment.