From 707923e3f5d7682df58652a598edf2127a4ff95a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20G=C3=A9rard?= Date: Wed, 8 Apr 2020 21:43:50 +0200 Subject: [PATCH] fix subdependencies that dropped Py2 support --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 5cba5d9e..11185fd2 100644 --- a/setup.py +++ b/setup.py @@ -121,6 +121,8 @@ extra_opts = { "blinker", "Pillow>=2.0.0, <7.0.0", # 7.0.0 dropped Python2 support "zipp<2.0.0", # (dependency of pytest) dropped python2 support + "pyparsing<3", # sub-dependency that dropped py2 support + "configparser<5", # sub-dependency that dropped py2 support ], } if PY3: