Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 5cc56aa

Browse files
committed
Pin pip to below 26 for ASF updates
1 parent f79fc17 commit 5cc56aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ freeze: ## Run pip freeze -l in the virtual environment
3636
@$(VENV_RUN); pip freeze -l
3737

3838
upgrade-pinned-dependencies: venv
39-
$(VENV_RUN); $(PIP_CMD) install --upgrade pip pip-tools pre-commit
39+
# TODO: Avoid pip 26.0 for now due to https://github.com/jazzband/pip-tools/issues/2319
40+
$(VENV_RUN); $(PIP_CMD) install --upgrade "pip!=26.0" pip-tools pre-commit
4041
$(VENV_RUN); pip-compile --strip-extras --upgrade -o requirements-basic.txt pyproject.toml
4142
$(VENV_RUN); pip-compile --strip-extras --upgrade --extra runtime -o requirements-runtime.txt pyproject.toml
4243
$(VENV_RUN); pip-compile --strip-extras --upgrade --extra test -o requirements-test.txt pyproject.toml

0 commit comments

Comments
 (0)