1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/yaml/conflict_1.yml

31 lines
811 B
YAML
Raw Normal View History

2020-05-05 18:44:48 +02:00
base:
available:
- A 1.0.0; depends B == 1.0.0, B == 2.0.0
- B 1.0.0
- B 2.0.0
cases:
-
request:
- install: A
response:
- state: null
skip: true
2020-05-05 18:59:16 +02:00
# -- currently the error message is:
# a 1.0.0 has requirement B==1.0.0, but you'll have b 2.0.0 which is incompatible.
# -- better would be:
# A 1.0.0 has incompatible requirements B==1.0.0, B==2.0.0
2020-05-05 18:44:48 +02:00
-
request:
- install: ['B==1.0.0', 'B==2.0.0']
response:
- state: null
skip: true
2020-05-05 18:59:16 +02:00
# -- currently the error message is:
# Could not find a version that satisfies the requirement B==1.0.0
# Could not find a version that satisfies the requirement B==2.0.0
# No matching distribution found for b, b
# -- better would be:
# cannot install different version (1.0.0, 2.0.0) of package B at the
# same time.