From ec90332054c9cbf3fa0a40cb907a0411e857917d Mon Sep 17 00:00:00 2001 From: Thomas Chopitea Date: Mon, 28 Sep 2020 10:47:59 +0200 Subject: [PATCH 1/2] fix: Pin the httplib2 version to a compatible version (0.15.0) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 90285c59714..14556723117 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ # NOTE: Apache Beam tests depend on this library and cannot # currently upgrade their httplib2 version. # Please see https://github.com/googleapis/google-api-python-client/pull/841 - "httplib2>=0.9.2,<1dev", + "httplib2>=0.15.0,<1dev", "google-auth>=1.16.0", "google-auth-httplib2>=0.0.3", "google-api-core>=1.21.0,<2dev", From f9a255c087c507fbcef70a9994bd7454e40fc87d Mon Sep 17 00:00:00 2001 From: Thomas Chopitea Date: Mon, 28 Sep 2020 20:54:44 +0200 Subject: [PATCH 2/2] fix: remove superfluous comments --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 14556723117..653742a161c 100644 --- a/setup.py +++ b/setup.py @@ -35,9 +35,6 @@ packages = ["apiclient", "googleapiclient", "googleapiclient/discovery_cache"] install_requires = [ - # NOTE: Apache Beam tests depend on this library and cannot - # currently upgrade their httplib2 version. - # Please see https://github.com/googleapis/google-api-python-client/pull/841 "httplib2>=0.15.0,<1dev", "google-auth>=1.16.0", "google-auth-httplib2>=0.0.3",