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

29 lines
557 B
YAML

# Tzu-ping mentioned this example
base:
available:
- name: virtualenv
version: 20.0.2
depends: ['six>=1.12.0,<2']
- six 1.11
- six 1.12
- six 1.13
cases:
-
request:
- install: virtualenv
response:
- state:
- six 1.13
- virtualenv 20.0.2
-
request:
- install: ['six<1.12', 'virtualenv==20.0.2']
response:
- state: null
error:
stderr: >-
Cannot install six<1.12 and virtualenv 20.0.2 because these
package versions have conflicting dependencies.
skip: old