Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Commit

Permalink
fix(deps): add packaging requirement (#293)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
busunkim96 committed May 15, 2021
1 parent 1b39fc0 commit a9f970c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -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"]
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__))

Expand Down
1 change: 1 addition & 0 deletions testing/constraints-3.6.txt
Expand Up @@ -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

0 comments on commit a9f970c

Please sign in to comment.