From 6c166482d9f1d5deeeb6836095f110fc61f28356 Mon Sep 17 00:00:00 2001 From: jxltom Date: Wed, 14 Nov 2018 09:48:49 +0800 Subject: [PATCH] Pin yarl and multidict version for python34 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae821ac..3c84091 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,9 @@ install_requires = [ 'six>=1.5', 'contextlib2; python_version=="2.7"', 'mock; python_version=="2.7"', - 'yarl; python_version>="3.4"', + 'yarl; python_version>"3.4"', + 'yarl<1.0.0; python_version=="3.4"', + 'multidict<4.0.0,>=2.0; python_version=="3.4"' ] excluded_packages = ["tests*"]