-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Discrepancy between pypi.io and pypi.org for dask=2022.7.1
#104
Comments
Seeing the same issue with |
This is likely due to pypi/warehouse#11949, but an empty file is likely not the intended failure method here, so we might need to do some additional fixes to have this fail in a better way in the future. |
Thanks for the response @di. I just tried the |
Let's leave this open, I don't think you should be getting an empty file here. |
Thanks for all of your help with these issues @di! 🙏 Unfortunately we just ran into this another snag. This one with Cython. It also appears to be doing the empty file thing as well # archive is 0B
curl -LO https://pypi.io/packages/source/C/Cython/Cython-0.29.31.tar.gz # archive works as expected
curl -LO https://files.pythonhosted.org/packages/e3/96/ff430960a664e571285365009bf526fa8ec67267a9632b758914adf9206c/Cython-0.29.31.tar.gz Edit: Fixed the command above as there was a typo there. Though the original run didn't have this typo. cc @h-vetinari (for awareness) |
Appears the Cython package can now be downloaded. Thanks for the help here! 🙏 |
The primary issue (with purging) is resolved. The remaining issue here that needs to be addressed with VCL is the empty file return. That is either an issue here (with VCL) or in conveyor. |
Describe the bug
When attempting to download the latest
sdist
ofdask
on PyPI from pypi.io usingI get an empty file. However, when I go directly to PyPI to download dask-2022.7.1.tar.gz I get a non-empty file. My understanding is pypi.io is suppose to be a redirect for pypi.org (though my understanding may be wrong).
Expected behavior
I expected https://pypi.io/packages/source/d/dask/dask-2022.7.1.tar.gz to return the same
sdist
which was uploaded to pypi.orgTo Reproduce
https://pypi.io/packages/source/d/dask/dask-2022.7.1.tar.gz is empty while https://files.pythonhosted.org/packages/68/e1/1edb5eeb15f88267075c37ee8c83c4527e462bdea328566c5b1e88db705c/dask-2022.7.1.tar.gz (i.e. the link I get from pypi.org when I attempt to download the
dask=2022.7.1
sdist
) is returning thesdist
I would expectMy Platform
N/A I think, but happy to provide more details if needed
Additional context
This came up over in conda-forge/dask-core-feedstock#134 where we're attempting to create a conda package release on conda-forge for
dask=2022.7.1
Possibly similar to pypi/warehouse#7070
The text was updated successfully, but these errors were encountered: