"transitive-package-only-prereleases-in-range" doesn't follow the spec #171
Description
The scanrio is the following currently:
{
"name": "transitive-package-only-prereleases-in-range",
"description": "The user requires package `a` which has a dependency on a package which only matches prerelease versions but they did not include a prerelease specifier.",
"root": {
"requires": [
"a"
]
},
"packages": {
"a": {
"versions": {
"0.1.0": {
"requires": [
"b>0.1"
]
}
}
},
"b": {
"versions": {
"0.1.0": {},
"1.0.0a1": {}
}
}
},
"expected": {
"satisfiable": false,
"explanation": "Since there are stable versions of `b` available, the prerelease version should not be selected without explicit opt-in. The available version is excluded by the range requested by the user."
}
},
In short, the idea is because a prerelease requirement is not opted into then even though a prerelease version is available it is not selected.
However, this is explictly again the following line in the spec (https://packaging.python.org/en/latest/specifications/version-specifiers/#handling-of-pre-releases):
By default, dependency resolution tools SHOULD:
- ...
- accept remotely available pre-releases for version specifiers where there is no final or post release that satisfies the version specifier
- ...
In this case there is no final or post release that satisfies the version specifier, and therefore the dependency resolution SHOULD accept the removetely available pre-release.
Currently neither uv nor pip follow the spec here, pip needs an overhaul on prereleases and uv has deicded not to follow the spec due to design choices, but poetry does follow the spec and does find this satisfiable.
If packse is attempting to follow the spec, and not be a catalogue of uv's design choices, this should be set to "satisfiable": true
and uv should mark this as XFAIL. I'll be happy to make a PR.
Activity