-
-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Our installation was working well until a couple months ago? when we stopped being able to download past a certain version of x package - mostly from more popular packages. I think I've traced the issue down to incomplete json being downloaded, possibly related to this ( https://discuss.python.org/t/backwards-incompatible-change-to-pypi-json-api/17154 )
Right now if I have in [requirements]
numpy = ==1.17.3
This works fine
But as of a few weeks/months ago?
numpy = ==1.26.0, for example, or anything above 1.19.5 errors out with "No files match requirement".
(this also happens with transformers and a handful of other packages that were working fine up until a certain point)
In examining the json from https://pypi.org/pypi/numpy/json for example, it seems to have 1.26.1. It's not invalid, so I don't think it's a string/request size limit.
I'm still trying to debug this, but I'm wondering if you have any input on this issue?