Skip to content

Commit af604c6

Browse files
authored
fix: ignore click 8.2.0 (#4948)
There is a fix foward but requires more LOC. This ignores the bad version and `8.2.1` should have the fix Related: pallets/click#2897
1 parent 8ad9b18 commit af604c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ dynamic = ["version"]
1111
# Dependencies should have lower bounds, which should be as loose as possible.
1212
dependencies = [
1313
# For maintainable cli
14-
"click>=8.0,<9",
14+
# - 8.2.0 introduced a bug where boolean flags broke
15+
"click>=8.0,!=8.2.0,<9",
1516
# code completion
1617
"jedi>=0.18.0",
1718
# compile markdown to html

0 commit comments

Comments
 (0)