The default is still Python 2. This is a necessary prerequisite for using the master branch of kolla-ansible, which requires Python 3. Change-Id: Ida5b60b723c8208bb7305c3d669eafdab6dbbe01 Story: 2004959 Task: 38767
11 lines
396 B
YAML
11 lines
396 B
YAML
---
|
|
# List of packages to install.
|
|
kolla_ansible_package_dependencies:
|
|
- gcc
|
|
- libffi-devel
|
|
- openssl-devel
|
|
- patch
|
|
- "python{% if kolla_ansible_venv_python_major_version | int == 3 %}3{% endif %}-devel"
|
|
- "python{% if kolla_ansible_venv_python_major_version | int == 3 %}3{% endif %}-pip"
|
|
- "{% if kolla_ansible_venv_python_major_version | int == 2 %}python-virtualenv{% endif %}"
|