2021-01-04 21:53:56 +01:00
|
|
|
- name: Copy constraints file
|
|
|
|
copy:
|
|
|
|
src: constraints.txt
|
|
|
|
dest: "{{ remote_tmp_dir }}/pexpect-constraints.txt"
|
|
|
|
|
2018-11-08 23:05:54 +01:00
|
|
|
- name: Install pexpect
|
|
|
|
pip:
|
|
|
|
name: pexpect
|
2021-01-04 21:53:56 +01:00
|
|
|
extra_args: '--constraint "{{ remote_tmp_dir }}/pexpect-constraints.txt"'
|
2018-11-08 23:05:54 +01:00
|
|
|
state: present
|