20 lines
641 B
YAML
20 lines
641 B
YAML
---
|
|
py3_ppa: 'ppa:deadsnakes/ppa'
|
|
|
|
py3_env_mandatory_dpkg:
|
|
- 'python{{ py3_env_version }}'
|
|
- 'python{{ py3_env_version }}-venv'
|
|
- 'python{{ py3_env_version }}-dev'
|
|
|
|
py3_env_pip_default_pkgs:
|
|
- 'pip'
|
|
- 'setuptools'
|
|
- 'wheel'
|
|
|
|
py3_el_env_version: '{{ py3_env_major_version }}{{py3_env_minor_version }}'
|
|
py3_el_env_mandatory_pkg:
|
|
- 'python{{ py3_env_major_version }}'
|
|
- 'python{{ py3_env_major_version }}-pip'
|
|
- 'python{{ py3_env_major_version }}-setuptools'
|
|
- "python{% if ansible_distribution_version is version_compare('18.04', '<=') %}{{ py3_el_env_version }}{% else %}{{ py3_env_major_version }}{% endif %}-virtualenv"
|