1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/yaml/conflict_3.yml
2020-06-15 15:34:34 +08:00

23 lines
611 B
YAML

base:
available:
- A 1.0.0; depends B == 1.0.0, C == 2.0.0
- B 1.0.0; depends C == 1.0.0
- C 1.0.0
- C 2.0.0
cases:
-
request:
- install: A
response:
- state: null
skip: old
# -- currently the error message is:
# Could not find a version that satisfies the requirement C==2.0.0 (from a)
# Could not find a version that satisfies the requirement C==1.0.0 (from b)
# No matching distribution found for c, c
# -- This is a bit confusing, as both versions of C are available.
# -- better would be something like:
# A 1.0.0 -> B 1.0.0 -> C 1.0.0
# A 1.0.0 -> C 2.0.0