summaryrefslogtreecommitdiff
path: root/test/integration/targets/pip/tasks/pip.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/pip/tasks/pip.yml')
-rw-r--r--test/integration/targets/pip/tasks/pip.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/integration/targets/pip/tasks/pip.yml b/test/integration/targets/pip/tasks/pip.yml
index 2b5a8ac486..791e03dc6b 100644
--- a/test/integration/targets/pip/tasks/pip.yml
+++ b/test/integration/targets/pip/tasks/pip.yml
@@ -510,7 +510,11 @@
- name: install distribute in the virtualenv
pip:
- name: distribute
+ # using -c for constraints is not supported as long as tests are executed using the centos6 container
+ # since the pip version in the venv is not upgraded and is too old (6.0.8)
+ name:
+ - distribute
+ - setuptools<45 # setuptools 45 and later require python 3.5 or later
virtualenv: "{{ output_dir }}/pipenv"
state: present