zuul-jobs/roles/ensure-python/tasks/main.yaml

9 lines
278 B
YAML

- name: Install specified version of python interpreter and development files
when:
- python_version is defined
- ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
package:
name: python{{ python_version }}-dev
state: present
become: yes