I\'m using pip and virtualenv for my python application. I would like to upgrade to a new version of the application without touching the dependencies. When I use pip
I just tried on my virtualenv project and pip install -U --no-deps mypackage seems to work just fine. It just download mypackage and nothing else. What's your set up like?