We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caa8651 commit a079fc9Copy full SHA for a079fc9
noxfile.py
@@ -158,7 +158,10 @@ def pip_compile(session: nox.Session, req: str):
158
# .pip-tools.toml was introduced in v7
159
# pip 24.3 causes a regression in pip-compile.
160
# See https://github.com/jazzband/pip-tools/issues/2131.
161
- session.install("pip-tools >= 7", "pip < 24.3")
+ # click causes an issue with the pip-compile header.
162
+ # See https://github.com/jazzband/pip-tools/issues/2238.
163
+ # Also see https://github.com/ansible/ansible-documentation/pull/3069.
164
+ session.install("pip-tools >= 7", "pip < 24.3", "click < 8.3.0")
165
166
# Use --upgrade by default unless a user passes -P.
167
args = list(session.posargs)
0 commit comments