Skip to content

Commit ef750f6

Browse files
authored
nox pip-compile: temporarily pin pip version (#2085)
Relates: #1950 (comment) Relates: jazzband/pip-tools#2131
1 parent 789a22b commit ef750f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ def lint(session: nox.Session):
158158
@nox.parametrize(["req"], requirements_files, requirements_files)
159159
def pip_compile(session: nox.Session, req: str):
160160
# .pip-tools.toml was introduced in v7
161-
session.install("pip-tools >= 7")
161+
# 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")
162164

163165
# Use --upgrade by default unless a user passes -P.
164166
args = list(session.posargs)

0 commit comments

Comments
 (0)