From c687f4207b9c574e539a7eab75201a58f2e91f35 Mon Sep 17 00:00:00 2001 From: Brendan Batliner Date: Sun, 28 Feb 2021 11:30:02 -0600 Subject: [PATCH] fix(deps): add upper-bound google-auth dependency (#1180) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For consistency with google-api-core, which specifies `google-auth >= 1.21.1, < 2.0dev` as a dependency. Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #1179 🦕 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 189f5fd42f5..f4981816db5 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ install_requires = [ "httplib2>=0.15.0,<1dev", - "google-auth>=1.16.0", + "google-auth>=1.16.0,<2dev", "google-auth-httplib2>=0.0.3", "google-api-core>=1.21.0,<2dev", "six>=1.13.0,<2dev",