Skip to content

Commit 2d57900

Browse files
authored
fix(deps): exclude click 8.1.0 (#1255)
1 parent dfbde95 commit 2d57900

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/gapic-generator/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343
platforms="Posix; MacOS X",
4444
include_package_data=True,
4545
install_requires=(
46-
"click >= 6.7",
46+
# There is a typing issue with click==8.1.0
47+
# See https://github.com/pallets/click/issues/2227
48+
"click >= 6.7,!=8.1.0",
4749
"google-api-core >= 2.3.2",
4850
"googleapis-common-protos >= 1.54.0",
4951
"grpcio >= 1.24.3",

0 commit comments

Comments
 (0)