diff --git a/CHANGELOG.md b/CHANGELOG.md index e38d1ab500a..4199001a5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [1.12.3](https://www.github.com/googleapis/google-api-python-client/compare/v1.12.2...v1.12.3) (2020-09-29) + + +### Bug Fixes + +* **deps:** update setup.py to install httplib2>=0.15.0 ([#1050](https://www.github.com/googleapis/google-api-python-client/issues/1050)) ([c00f70d](https://www.github.com/googleapis/google-api-python-client/commit/c00f70d565a002b92374356be087927b131ce135)) + ### [1.12.2](https://www.github.com/googleapis/google-api-python-client/compare/v1.12.1...v1.12.2) (2020-09-23) diff --git a/setup.py b/setup.py index 90285c59714..642313c36ab 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", @@ -52,7 +49,7 @@ with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read() -version = "1.12.2" +version = "1.12.3" setup( name="google-api-python-client",