From c00f70d565a002b92374356be087927b131ce135 Mon Sep 17 00:00:00 2001 From: Thomas Chopitea Date: Tue, 29 Sep 2020 02:14:53 +0200 Subject: [PATCH] fix(deps): update setup.py to install httplib2>=0.15.0 (#1050) * fix: Pin the httplib2 version to a compatible version (0.15.0) --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 90285c59714..653742a161c 100644 --- a/setup.py +++ b/setup.py @@ -35,10 +35,7 @@ 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.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",