From 2a1b9e7232eefb8e404c3acd2ee663e0c3b3bd8e Mon Sep 17 00:00:00 2001 From: Louis Sautier Date: Thu, 12 Jul 2018 23:43:27 +0200 Subject: [PATCH] Require typing only for Python < 3.5 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7e96b720..d1269047 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ Jinja2>=2.7.3 raven>=5.23.0 psutil>=3.0.0 zipstream>=1.1.4 -typing>=3.5.3.0 # Otherwise yarl fails with python 3.4 +typing>=3.5.3.0;python_version<"3.5" # Otherwise yarl fails with python 3.4 prompt-toolkit==1.0.15