From 7d2eb41ef0d414a997967dc45812a1f614897b5e Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Sat, 22 May 2021 02:56:04 -0600 Subject: [PATCH] fix(deps): add packaging requirement (#34) --- packages/google-cloud-binary-authorization/setup.py | 1 + .../testing/constraints-3.6.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/google-cloud-binary-authorization/setup.py b/packages/google-cloud-binary-authorization/setup.py index ce9ea46c7fff..cd089ff4c5e2 100644 --- a/packages/google-cloud-binary-authorization/setup.py +++ b/packages/google-cloud-binary-authorization/setup.py @@ -44,6 +44,7 @@ install_requires=( "google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.4.0", + "packaging >= 14.3", ), python_requires=">=3.6", classifiers=[ diff --git a/packages/google-cloud-binary-authorization/testing/constraints-3.6.txt b/packages/google-cloud-binary-authorization/testing/constraints-3.6.txt index 22b03cbbd8e5..d517611516da 100644 --- a/packages/google-cloud-binary-authorization/testing/constraints-3.6.txt +++ b/packages/google-cloud-binary-authorization/testing/constraints-3.6.txt @@ -2,8 +2,9 @@ # 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.4.0 +packaging==14.3 +google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 si transitively required through google-api-core