Skip to content

Commit

Permalink
fix(deps): exclude click 8.1.0 (#1255)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Mar 30, 2022
1 parent 3100464 commit daf63eb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
platforms="Posix; MacOS X",
include_package_data=True,
install_requires=(
"click >= 6.7",
# There is a typing issue with click==8.1.0
# See https://github.com/pallets/click/issues/2227
"click >= 6.7,!=8.1.0",
"google-api-core >= 2.3.2",
"googleapis-common-protos >= 1.54.0",
"grpcio >= 1.24.3",
Expand Down

0 comments on commit daf63eb

Please sign in to comment.