diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e7d9dbafb..8516e745aa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [1.9.2](https://www.github.com/googleapis/google-api-python-client/compare/v1.9.1...v1.9.2) (2020-06-04) + + +### Bug Fixes + +* bump api-core version ([#936](https://www.github.com/googleapis/google-api-python-client/issues/936)) ([ee53b3b](https://www.github.com/googleapis/google-api-python-client/commit/ee53b3b32a050874ba4cfb491fb384f94682c824)) + ### [1.9.1](https://www.github.com/googleapis/google-api-python-client/compare/v1.9.0...v1.9.1) (2020-06-02) diff --git a/noxfile.py b/noxfile.py index ced9cf57632..d5bc2b30743 100644 --- a/noxfile.py +++ b/noxfile.py @@ -55,10 +55,6 @@ def lint(session): ], ) def unit(session, oauth2client): - session.install( - "-e", - "git+https://github.com/googleapis/python-api-core.git@master#egg=google-api-core", - ) session.install(*test_dependencies) session.install(oauth2client) if session.python < "3.0": diff --git a/setup.py b/setup.py index 6331a499113..31215eb8c9b 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ "httplib2>=0.9.2,<1dev", "google-auth>=1.16.0", "google-auth-httplib2>=0.0.3", - "google-api-core>=1.17.0,<2dev", + "google-api-core>=1.18.0,<2dev", "six>=1.6.1,<2dev", "uritemplate>=3.0.0,<4dev", ] @@ -52,7 +52,7 @@ with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read() -version = "1.9.1" +version = "1.9.2" setup( name="google-api-python-client",