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
We currently store all wheels (and the source distribution) in uv.lock. We should remove those that can never be installed. One clear target is removing those with an incompatible python version, such as a cp311 tag for requires-python = ">=3.12". Example:
[project]
name = "a"version = "1.0.0"requires-python = "==3.12.*"dependencies = ["charset-normalizer==3.3.1"]
We currently store all wheels (and the source distribution) in
uv.lock
. We should remove those that can never be installed. One clear target is removing those with an incompatible python version, such as acp311
tag forrequires-python = ">=3.12"
. Example:Current lockfile:
We should trim this down to the set of installable wheels for python 3.12 to get the desired lockfile:
The text was updated successfully, but these errors were encountered: