You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now you have two choices for download/extract:
Don't pass --fresh, which will error out if we don't have a cached index with an sdist for that version
Pass --fresh, and always pay a roundtrip to update an index, even if the cached version has an sdist for that/
What we have now requires the caller to decide up front, and the api.download_* functions require you to already have a Package object. A stopgap would be a pick_sdist(pkg, ver) function that just has the list comprehension that keeps getting repeated:
Right now you have two choices for download/extract:
--fresh
, which will error out if we don't have a cached index with an sdist for that version--fresh
, and always pay a roundtrip to update an index, even if the cached version has an sdist for that/What we have now requires the caller to decide up front, and the
api.download_*
functions require you to already have aPackage
object. A stopgap would be apick_sdist(pkg, ver)
function that just has the list comprehension that keeps getting repeated:The text was updated successfully, but these errors were encountered: