Skip to content

Commit 980d9db

Browse files
authored
fix: align pip version constraint in requirements_dev.txt (#16275)
fix: align pip version constraint in requirements_dev.txt with requirements.txt (fixes #16272) requirements.txt pins pip==25.3 while requirements_dev.txt specified pip>=21.3,<=24.0, causing ResolutionImpossible when installing both. Updated requirements_dev.txt to use pip>=25.3 to maintain compatibility.
1 parent f2438a0 commit 980d9db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements/requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gprof2dot
2323
atomicwrites
2424
flake8
2525
yamllint
26-
pip>=21.3,<=24.0 # PEP 660 – Editable installs for pyproject.toml based builds (wheel based)
26+
pip>=25.3 # PEP 660 – Editable installs for pyproject.toml based builds (wheel based)
2727

2828
# python debuggers
2929
debugpy

0 commit comments

Comments
 (0)