Skip to content
This repository was archived by the owner on Sep 5, 2023. It is now read-only.

Commit bf202ab

Browse files
authored
fix(deps): add packaging requirement (#91)
Add packaging requirement. packaging.version is used for a version comparison in transports/base.py and is needed after the upgrade to gapic-generator-python 0.46.3
1 parent 459b0f4 commit bf202ab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
description = "Cloud Recommender API client library"
2424
version = "2.1.0"
2525
release_status = "Development Status :: 5 - Production/Stable"
26-
dependencies = ["google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0"]
26+
dependencies = [
27+
"google-api-core[grpc] >= 1.22.2, < 2.0.0dev",
28+
"proto-plus >= 1.10.0",
29+
"packaging >= 14.3",
30+
]
2731
extras = {"libcst": "libcst >= 0.2.5"}
2832
scripts = [
2933
"scripts/fixup_recommender_v1_keywords.py",

testing/constraints-3.6.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
# Then this file should have google-cloud-foo==1.14.0
88
google-api-core==1.22.2
99
proto-plus==1.15.0
10+
packaging==14.3

0 commit comments

Comments
 (0)