We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 567f764 commit 7230bd2Copy full SHA for 7230bd2
roles/base/tasks/main.yml
@@ -28,9 +28,3 @@
28
tags:
29
- packages
30
- packages.security
31
-
32
-- name: Upgrade pip
33
- ansible.builtin.pip: name=pip state=latest
34
- tags:
35
- - packages
36
- - skip_ansible_lint
roles/web/tasks/setup_virtualenv.yml
@@ -27,6 +27,13 @@
27
ansible.builtin.command: virtualenv -p {{ virtualenv_python_version }} {{ virtualenv_path }}
creates={{ virtualenv_path }}/bin/activate
+- name: Upgrade pip
+ ansible.builtin.pip:
+ name: pip
+ state: latest
+ tags:
+ - packages
+
37
- name: Ensure gunicorn and pycurl are installed in the virtualenv
38
ansible.builtin.pip:
39
virtualenv: "{{ virtualenv_path }}"
0 commit comments