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

Commit 26214ed

Browse files
authored
fix(deps): add packaging requirement (#154)
1 parent a8f37db commit 26214ed

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@
2828
# 'Development Status :: 4 - Beta'
2929
# 'Development Status :: 5 - Production/Stable'
3030
release_status = "Development Status :: 5 - Production/Stable"
31-
dependencies = ["google-api-core[grpc] >= 1.22.2, < 2.0.0dev", "proto-plus >= 1.10.0"]
31+
dependencies = [
32+
"google-api-core[grpc] >= 1.22.2, < 2.0.0dev",
33+
"proto-plus >= 1.10.0",
34+
"packaging >= 14.3",
35+
]
3236
extras = {"libcst": "libcst >= 0.2.5"}
3337
scripts = ["scripts/fixup_keywords.py"]
3438

testing/constraints-3.6.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
google-api-core==1.22.2
99
proto-plus==1.10.0
1010
libcst==0.2.5
11+
packaging==14.3
12+
google-auth==1.24.0 # TODO: remove when google-auth>=1.25.0 is transitively required through google-api-core

0 commit comments

Comments
 (0)