-
Notifications
You must be signed in to change notification settings - Fork 877
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
requires-python
without *
caused missing wheels in uv.lock
#8169
Comments
requires-python
without *
cased missing wheels in uv.lock
requires-python
without *
caused missing wheels in uv.lock
Please see #7426 |
It's same root reason that uv hasn't define how a version without patch field is processed. But caused unexpected behavior for wheel locking scenes. Maybe add |
This behavior is not defined by us, it's a part of the Python standards and specifications — which we are following here. |
Thanks, looks like uv followed the PEP 440 for this. |
Yep! We're adding a warning for people who run into this. |
uv lock
With config:
Output:
If use
requires-python = "==3.12.*"
, problem fixed.Seems this came from #7904
The text was updated successfully, but these errors were encountered: