-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
Python/CPython missing? (regression in tag-only GitHub in 1.6.0 & 2.0) #63
Comments
This worked in our weekly update a week ago, and was broken last night. See pypa/manylinux#1207. |
This doesn't seem to work either: |
I'm thinking this is not looking at the tags, but just at the GitHub Releases (which python/cpython does not have):
|
Yes! This is a bug introduced in 1.6.0: $ pipx run --spec lastversion==1.5.1 lastversion python/cpython
3.10.0
$ pipx run --spec lastversion==1.6.0 lastversion python/cpython
No release was found
$ pipx run --spec lastversion==2.0.0 lastversion python/cpython
No release was found An alias python -> python/cpython would be nice for performance, by the way. |
Please check with lastversion 2.0.1. It actually seems like a change with GitHub in regards to release feeds generation. Previously, I reckon they always included "tag-only" releases even when no formal release was present. And lastversion had some optimization to reduce API usage by leveraging this. |
Works, thanks! $ pipx run --no-cache lastversion python
3.10.0 |
We use last version in manylinux to detect the latest version of each release of Python. For some reason, it suddenly as stopped working; and if I run it manually:
I get nothing, as well.
The text was updated successfully, but these errors were encountered: