From 42725f9a2550cd1a582ff5325d7cdc6e7fd3bd1e Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 5 Dec 2019 09:57:28 -0800 Subject: [PATCH] Only install `configparser` backport in python 2.x --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bc1073e6cf5..70d211f000e 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ extras_require = LazyLoadPlugin.get_extras_require() extras_require[':python_version<"3"'] = [ + "configparser>=3.0.0,<4.0.0", "futures>=3.2.0,<4.0.0", "pathlib2>=2.3.2,<3.0.0" ] @@ -33,7 +34,6 @@ install_requires=[ "flyteidl>=0.15.0,<1.0.0", "click>=6.6,<8.0", - "configparser>=3.0.0,<4.0.0", "croniter>=0.3.20,<4.0.0", "deprecation>=2.0,<3.0", "boto3>=1.4.4,<2.0",