From 0031689826ab9e91c113611e7af1a948c46173bc Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Sat, 22 May 2021 00:18:53 +0000 Subject: [PATCH 1/2] fix(deps): add packaging requirement --- setup.py | 1 + testing/constraints-3.6.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a6ee9706..832304e2 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ 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"} diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index 8f70f412..f462eab2 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -2,9 +2,10 @@ # are correct in setup.py # List all library dependencies and extras in this file. # Pin the version to the lower bound. - # e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0dev", # Then this file should have google-cloud-foo==1.14.0 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 From f13400fc415684dc2896b9b262f7ae27c98c9263 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Sat, 22 May 2021 00:27:08 +0000 Subject: [PATCH 2/2] =?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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 832304e2..c96cc6bc 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ dependencies = [ "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0", - "packaging >= 14.3" + "packaging >= 14.3", ] extras = {"libcst": "libcst >= 0.2.5"}