From a6b37649621e2a0e5ce5887678e660538ca502e2 Mon Sep 17 00:00:00 2001 From: Joseph Roitman Date: Mon, 11 May 2020 00:32:40 +0300 Subject: [PATCH] Depend on typing backport only on Python <3.5. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2b7cbd1..dcee208 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def read(fname): 'packaging', 'pathlib2>=2.2.0;python_version<"3.6"', # identical to pytest's setup.py 'pytest>=3.0.0', - 'typing', + 'typing;python_version<"3.5"', ], classifiers=[ 'Development Status :: 4 - Beta',