How not to automatically update its dependencies when pip install a wheel package?
For example, I have built a wheel named packageA, and it's install_requires = ["packageB >= 2.0"].
Now a user already have packageB==1.0. And when he pip install packageA
, I want to pip can ask users whether upgrade the exist packageB==1.0 to packageB==2.0 rather than automatically upgrade it.
Is there any way to achieve this?