Hacker News new | ask | show | jobs
by jshen 2029 days ago
How do you validate versions against the constraint file? I read your original link a few times and didn’t see it.
1 comments

pip install -r requirements.txt -c constraints.txt

You can also, thanks to the weird way requirements.txt works, put the line "-c constraints.txt" in requirements.txt. In that case you don't have to specify it when you run pip.

That should apply the constraints when installing packages. I don't know if there's also a way to validate what's already installed.