From 88c1724a2bbb089b02c07b330ee12821421b26a8 Mon Sep 17 00:00:00 2001 From: Conley Owens Date: Wed, 18 Nov 2020 00:15:04 +0000 Subject: [PATCH] Restrict python version for typing dependency Importing typing causes errors after python 3.6. See https://github.com/python/typing/issues/573 Signed-off-by: Conley Owens --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 18f0d36e..ee81fd3a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -33,7 +33,7 @@ install_requires = requests >= 2.7.0, < 3.0.0 intbitset >= 2.3.0, < 3.0 saneyaml - typing >=3.6, < 3.7 + typing >=3.6, < 3.7; python_version < "3.7" setup_requires = setuptools_scm[toml] >= 4 [options.packages.find]