mirror of
https://github.com/astral-sh/uv
synced 2026-06-21 13:47:25 +00:00
b4d32e4356
This makes it easier for us to add resolver scenarios by 1. Rewriting the scenario package generation in Rust 2. Serving scenario packages from memory in a wiremock index 3. Rewriting the scenario test case generation in Rust 4. Dropping all dependencies on packse / the packse index --------- Co-authored-by: Codex <noreply@openai.com>
23 lines
467 B
TOML
23 lines
467 B
TOML
name = "local-not-latest"
|
|
description = "Tests that we can select an older version with a local segment when newer versions are incompatible."
|
|
|
|
[root]
|
|
requires = ["a>=1"]
|
|
|
|
[expected]
|
|
satisfiable = true
|
|
|
|
[expected.packages]
|
|
a = "1.2.1+foo"
|
|
|
|
[packages.a.versions."1.2.3"]
|
|
wheel_tags = ["py3-any-macosx_10_0_ppc64"]
|
|
sdist = false
|
|
|
|
[packages.a.versions."1.2.2+foo"]
|
|
wheel_tags = ["py3-any-macosx_10_0_ppc64"]
|
|
sdist = false
|
|
|
|
[packages.a.versions."1.2.1+foo"]
|
|
sdist = true
|