setup.py: incorrect dependency link #827
Closed
Comments
Work-around for |
@dstufft Do you know what URL setuptools should use for these dependency links? |
|
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Setuptools’ setup.py adds a link for
certifi
todependency_links
. The link it adds (https://pypi.python.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz
) is broken (404.)I'm not totally sure what's going on here. My guess is that PyPI has changed how downloads are filed. (Older packages seem to still be available under
/packages/source
, but recently released packages appear not to be.)In any case, this breaks
zc.buildout
— at least for me. Buildout picks up the broken dependency link from the setuptools egg and uses it (unsuccessfully) if an attempt is made to installcertifi==2016.9.26
.The text was updated successfully, but these errors were encountered: