bitly / bitly-api-python

python library to the bitly api
http://github.com/bitly/bitly-api-python
Other
245 stars 92 forks source link

0.2 removed from PyPi? #29

Closed benwilber closed 9 years ago

benwilber commented 10 years ago

Getting this error when trying to install from my requirements.txt:

Downloading/unpacking bitly-api==0.2 (from -r requirements.txt (line 71))
  Could not find a version that satisfies the requirement bitly-api==0.2 (from -r requirements.txt (line 71)) (from versions: 0.3)

I lock versions via pip freeze and I shouldn't have to upgrade to 0.3 when I know that 0.2 works fine, especially when all I'm trying to do is set up my project on a new server. Any reason why 0.2 was removed from PyPi?

rafaelpivato commented 10 years ago

According to PyPi https://pypi.python.org/pypi/bitly_api/0.2, the package was stored in an external and unverified source: https://bitly-downloads.s3.amazonaws.com/bitly_api/bitly_api-0.2.tar.gz

You can download that package and install manually, put it in your requirements or try the following command line:

pip install --allow-unverified bitly-api bitly-api==0.2

Note that --allow-unverified implies --allow-external