Skip to content

Commit

Permalink
[Resolves Sceptre#978] Only install typing on Python<3.5 (Sceptre#979)
Browse files Browse the repository at this point in the history
This PR constrains the installation of `typing` to Python<3.5, since it is included in the standard library as of 3.5 and causes issues if installed alongside the standard library version.
  • Loading branch information
gabriellesc authored and alex-harvey-z3q committed May 14, 2021
1 parent 066f441 commit 7c6b70b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
"colorama>=0.3.9",
"packaging>=16.8,<17.0",
"six>=1.11.0,<2.0.0",
"networkx==2.1",
"typing>=3.7.0,<3.8.0"
"networkx==2.1"
]

test_requirements = [
Expand Down

0 comments on commit 7c6b70b

Please sign in to comment.