I'n using pip 1.5.1 which worked fine up until today.
Now, I'm trying to install a requirements.txt in a fresh virtualenv, and for many packages it can no longer find specific old version for most packages.
$ pip install django-endless-pagination==1.1 Downloading/unpacking django-endless-pagination==1.1 Could not find a version that satisfies the requirement django-endless-pagination==1.1 (from versions: 2.0) Some externally hosted files were ignored (use --allow-external to allow). Cleaning up... No distributions matching the version for django-endless-pagination==1.1 What do I need to do to get this to work again? Upgrading my app to use all the latest versions of all its packages is out of the question.
Update: This works fine in pip 1.4.1. It's the newer version of pip that's causing it to fail.
--allow-externalas the message suggests.