We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 789a22b commit ef750f6Copy full SHA for ef750f6
noxfile.py
@@ -158,7 +158,9 @@ def lint(session: nox.Session):
158
@nox.parametrize(["req"], requirements_files, requirements_files)
159
def pip_compile(session: nox.Session, req: str):
160
# .pip-tools.toml was introduced in v7
161
- session.install("pip-tools >= 7")
+ # pip 24.3 causes a regression in pip-compile.
162
+ # See https://github.com/jazzband/pip-tools/issues/2131.
163
+ session.install("pip-tools >= 7", "pip < 24.3")
164
165
# Use --upgrade by default unless a user passes -P.
166
args = list(session.posargs)
0 commit comments