From 40171c8092238d0eacd7792a87b774646ca39bd0 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Sat, 22 May 2021 00:18:53 +0000 Subject: [PATCH 1/4] fix(deps): add packaging requirement --- testing/constraints-3.6.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index 88b0c2fe..e63ca716 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -8,3 +8,7 @@ google-api-core==1.22.2 proto-plus==1.10.0 libcst==0.2.5 +packaging==14.3 +google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core +packaging==14.3 +google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core From 9463c40210309c2a1d90fc973c9514b0e806d10d Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Sat, 22 May 2021 00:32:59 +0000 Subject: [PATCH 2/4] fix: manually fix replacement --- setup.py | 2 +- testing/constraints-3.6.txt | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7ef9d2e5..3bbbb4b2 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ # 'Development Status :: 4 - Beta' # 'Development Status :: 5 - Production/Stable' release_status = "Development Status :: 5 - Production/Stable" -dependencies = ["google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0"] +dependencies = ["google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0", "packaging >= 14.3"] extras = {"libcst": "libcst >= 0.2.5"} scripts = ["scripts/fixup_keywords.py"] diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index e63ca716..b0967557 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -10,5 +10,3 @@ proto-plus==1.10.0 libcst==0.2.5 packaging==14.3 google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core -packaging==14.3 -google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core From b6cda212f4d44afe017b2a7d736b0c9421e8e7ec Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 21 May 2021 18:33:21 -0600 Subject: [PATCH 3/4] Update constraints-3.6.txt --- testing/constraints-3.6.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index b0967557..65c77e80 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -9,4 +9,4 @@ google-api-core==1.22.2 proto-plus==1.10.0 libcst==0.2.5 packaging==14.3 -google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core +google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 is transitively required through google-api-core From 9d40e6d9946ec008f9a510c6dd0a82746d739445 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Sat, 22 May 2021 00:34:05 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3bbbb4b2..ec122328 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,11 @@ # 'Development Status :: 4 - Beta' # 'Development Status :: 5 - Production/Stable' release_status = "Development Status :: 5 - Production/Stable" -dependencies = ["google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0", "packaging >= 14.3"] +dependencies = [ + "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", + "proto-plus >= 1.10.0", + "packaging >= 14.3", +] extras = {"libcst": "libcst >= 0.2.5"} scripts = ["scripts/fixup_keywords.py"]