From 41e174ccb6cb01bd46264fe6d51da1eac3ecb6f5 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 8 Jul 2019 13:29:04 +0100 Subject: [PATCH 1/3] Fix Python version for extra requirement YARL This was excluded when Python 3.4 support was dropped in #435 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ad54f83..547c642 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ install_requires = [ 'six>=1.5', 'contextlib2; python_version=="2.7"', 'mock; python_version=="2.7"', - 'yarl; python_version>"3.5"', + 'yarl; python_version>="3.5"', ] excluded_packages = ["tests*"] From 26a4b8df55e6d76911d99c51e1dc22fedc386e25 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 8 Jul 2019 14:12:05 +0100 Subject: [PATCH 2/3] Remove yarl from extra dependencies: should be there if needed via aiohttp --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 547c642..9912ad5 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ install_requires = [ 'six>=1.5', 'contextlib2; python_version=="2.7"', 'mock; python_version=="2.7"', - 'yarl; python_version>="3.5"', ] excluded_packages = ["tests*"] From 2fa2ca20726691659ab7fe921ea01ad049043f0c Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 8 Jul 2019 14:39:21 +0100 Subject: [PATCH 3/3] Revert "Remove yarl from extra dependencies: should be there if needed via aiohttp" This reverts commit 26a4b8df --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9912ad5..547c642 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ install_requires = [ 'six>=1.5', 'contextlib2; python_version=="2.7"', 'mock; python_version=="2.7"', + 'yarl; python_version>="3.5"', ] excluded_packages = ["tests*"]