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 36279b9 commit 7758eb8Copy full SHA for 7758eb8
noxfile.py
@@ -157,7 +157,9 @@ def lint(session: nox.Session):
157
@nox.parametrize(["req"], requirements_files, requirements_files)
158
def pip_compile(session: nox.Session, req: str):
159
# .pip-tools.toml was introduced in v7
160
- session.install("pip-tools >= 7")
+ # pip 24.3 causes a regression in pip-compile.
161
+ # See https://github.com/jazzband/pip-tools/issues/2131.
162
+ session.install("pip-tools >= 7", "pip < 24.3")
163
164
# Use --upgrade by default unless a user passes -P.
165
args = list(session.posargs)
0 commit comments