Constraints override pinned requifrements #6495
Labels
auto-locked
Outdated issues that have been locked by automation
C: dependency resolution
About choosing which dependencies to install
resolution: duplicate
Duplicate of an existing issue/PR
type: support
User Support
Environment
Description and How to Reproduce
constraints. txt:
urllib3>1.23
requirements.txt:
urllib3==1.24.3
When I run:
pip install -c constraints.txt -r requirements.txt
It installs:
Successfully installed urllib3-1.25.2
This means that the pinned requirement
urllib3==1.24.3
is ignored and is not what is expected.Expected behavior
Should install
urllib3==1.24.3
not1.25.2
.The text was updated successfully, but these errors were encountered: