Skip to content

Commit cd90ab9

Browse files
fix: click version constraint (#749)
1 parent e6bcb19 commit cd90ab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
requires-python = ">=3.8"
3535
dependencies = [
3636
"Authlib>=1.2.0",
37-
"Click>=8.0.2", # Just to set a minimum version, Typer works with >=8.0.0
37+
"Click>=8.0.2,<8.2.0", # Typer works with >=8.0.0,<8.2.0
3838
"dparse>=0.6.4",
3939
"filelock~=3.16.1",
4040
"jinja2>=3.1.0",
@@ -162,7 +162,7 @@ matrix.targets.dependencies = [
162162
{ value = "Click==8.0.2", if = ["typer-minimal"] },
163163

164164
{ value = "typer~=0.13", if = ["typer-latest"] },
165-
{ value = "Click~=8.1", if = ["typer-latest"] }
165+
{ value = "Click~=8.1.0", if = ["typer-latest"] }
166166
]
167167

168168
# Prevent running the OS specific tests locally

0 commit comments

Comments
 (0)