We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82a3051 + 4a3a0e0 commit 2b3d3a8Copy full SHA for 2b3d3a8
tasks/install_pip.yml
@@ -1,4 +1,8 @@
1
---
2
+- name: Install python3-distutils
3
+ package:
4
+ name: python3-distutils
5
+ when: ansible_distribution_release == 'bionic'
6
7
- name: Download get-pip.py
8
get_url: url=https://bootstrap.pypa.io/get-pip.py dest=/tmp/
templates/pip.conf.j2
@@ -1,6 +1,6 @@
-{% for section,config in python_pip_config.iteritems() | sort %}
+{% for section,config in python_pip_config.items() | sort %}
[{{section}}]
-{% for k,v in config.iteritems() | sort %}
+{% for k,v in config.items() | sort %}
{% if v is iterable and v is not string %}
{{k}} =
{% for item in v %}
0 commit comments