From 7c6b70bddf1f5441b4617f61513843addd0f755b Mon Sep 17 00:00:00 2001 From: Gabrielle Singh Cadieux Date: Thu, 15 Apr 2021 11:44:06 -0400 Subject: [PATCH] [Resolves #978] Only install typing on Python<3.5 (#979) 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. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7a25dfbe7..c05de09e7 100755 --- a/setup.py +++ b/setup.py @@ -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 = [