File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
3
3
- name : Install dependencies
4
- apt : name="{{item}}" state=latest update_cache=yes cache_valid_time=86400
4
+ apt : name="{{item}}" update_cache=yes cache_valid_time=86400
5
5
with_items : " {{python_dependencies}}"
6
6
7
7
- name : Download python tarball
Original file line number Diff line number Diff line change 22
22
include : install_pip.yml
23
23
when : pip_installed.stat.exists == false
24
24
25
- - name : Upgrade pip
26
- pip : name=pip state=latest executable="{{python_pip_path}}" umask="{{python_pip_umask}}"
27
-
28
25
- name : Add system pip.conf
29
26
template :
30
27
src : pip.conf.j2
35
32
when : python_pip_config is defined
36
33
37
34
# Install packages
38
- - name : Install/upgrade virtualenv
39
- pip : name=virtualenv state=latest executable="{{python_pip_path}}" umask="{{python_pip_umask}}"
35
+ - name : Install virtualenv
36
+ pip : name=virtualenv executable="{{python_pip_path}}" umask="{{python_pip_umask}}"
40
37
when : python_major_version == '2'
41
38
42
39
- name : Install global packages
You can’t perform that action at this time.
0 commit comments