From 28e9e9c4189434906fd47eb297a02e3fd09062b9 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 14 May 2021 18:13:11 -0600 Subject: [PATCH 1/3] fix(deps): add packaging requirement --- testing/constraints-3.6.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/constraints-3.6.txt b/testing/constraints-3.6.txt index 25cd0683d..2f5ddda8a 100644 --- a/testing/constraints-3.6.txt +++ b/testing/constraints-3.6.txt @@ -7,3 +7,4 @@ # Then this file should have google-cloud-foo==1.14.0 google-api-core==1.22.2 proto-plus==1.10.0 +packaging==14.3 From 1aa591fea8397f994148740c754b7061603cc24b Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 14 May 2021 18:36:27 -0600 Subject: [PATCH 2/3] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 573546bfb..0fb0cbc46 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ description = "Client library for the Dialogflow API" version = "2.1.2" 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"] package_root = os.path.abspath(os.path.dirname(__file__)) From 006537f00c7c7f73718613acc241f2f18533d8ea Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Sat, 15 May 2021 00:38:10 +0000 Subject: [PATCH 3/3] =?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 0fb0cbc46..5586eacfa 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,11 @@ description = "Client library for the Dialogflow API" version = "2.1.2" 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", +] package_root = os.path.abspath(os.path.dirname(__file__))