Matthew Feickert
Matthew Feickert
Thanks! For now just understanding the JSON is enough as ```console $ curl -s https://api.anaconda.org/package/scientific-python-nightly-wheels/ipython | jq -r .releases[].version > package-releases.txt $ for release in $(cat package-releases.txt); do curl -s...
@csoja @yshmatov-anaconda How stable is the anaconda.org API? It seems that `.distributions` doesn't exist for some of the package versions that have been uploaded in the past. ```console $ curl...
Thanks @csoja. ``` curl -s https://api.anaconda.org/release/scientific-python-nightly-wheels/ipython/8.13.2 | jq -r '.distributions[].upload_time' | sort | tail -n 1 ``` seems to be doing well enough for what this Issue was originally opened...
@vshevchenko-anaconda Feel free to close given that I'm somehow unable to replicate this (in the same Docker image as yesterday(?)) from the state of https://github.com/scientific-python/upload-nightly-action/pull/27 as things are now properly...
@vshevchenko-anaconda Hm, apparently there is a problem though as when the GitHub Action runs with a valid token (c.f. https://github.com/scientific-python/upload-nightly-action/pull/27#discussion_r1270228235) we are getting this failure I mentioned later on in...
@vshevchenko-anaconda The problem is apparently however `anaconda-client` is validating metadata is assuming it was built with `setuptools` and not any other build backend that adheres to [PEP 518](https://peps.python.org/pep-0518/). I tested...
@ofek, while this isn't your problem to fix, I thought I might tag you here in the event that you can provide information that might help move this along.
> Are you able to modify the code that checks validity so that we may see the actual traceback? I would need to build and install `anaconda-client` locally to do...
@csoja @vshevchenko-anaconda any chance that this could get looked at in the near future to figure out why `anaconda-client` rejects metadata that is validated by `twine`? This is still happening...
> Are you still having your original issue? I created a simple package based on your example above and was able to upload a wheel to anaconda.org when the backend...