From c5e87bb8c177688833ca9524daa4e6229875627d Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Wed, 16 Jun 2021 10:20:02 -0600 Subject: [PATCH] fix(deps): widen version range on google-cloud-logging (#133) In response to https://github.com/GoogleCloudPlatform/getting-started-python/pull/361 and https://github.com/GoogleCloudPlatform/getting-started-python/issues/357. Given the libraries adhere to semantic versioning it should be fine to use `google-cloud-logging<3.0.0dev`. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ccbaaddf..c13dff49 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ # 'Development Status :: 5 - Production/Stable' release_status = "Development Status :: 4 - Beta" dependencies = [ - "google-cloud-logging>=1.14.0, <2.5", + "google-cloud-logging>=1.14.0, <3.0.0dev", "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.4.0", "packaging >= 14.3",