File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 3
3
os_openstackclient_venv :
4
4
# Whether to install package dependencies.
5
5
os_openstackclient_install_package_dependencies : true
6
+ # Value to use for the pip module's `virtualenv_command` argument when creating the virtualenv
7
+ os_openstackclient_virtualenv_command : " {{ 'python3.' ~ ansible_facts.python.version.minor ~ ' -m venv' if os_openstackclient_venv else omit }}"
6
8
7
9
# State of the openstackclient package.
8
10
os_openstackclient_state : present
@@ -11,3 +13,4 @@ os_openstackclient_state: present
11
13
os_openstackclient_version :
12
14
# Upper constraints file for installation of openstackclient.
13
15
os_openstackclient_upper_constraints_file : https://releases.openstack.org/constraints/upper/2024.1
16
+
Original file line number Diff line number Diff line change 40
40
name : " {{ item.name }}"
41
41
state : latest
42
42
virtualenv : " {{ os_openstackclient_venv or omit }}"
43
- virtualenv_command : " {{ 'python3.' ~ ansible_facts.python.version.minor ~ ' -m venv' if os_openstackclient_venv else omit }}"
43
+ virtualenv_command : " {{ os_openstackclient_virtualenv_command }}"
44
44
with_items :
45
45
- { name: pip }
46
46
- { name: setuptools }
You can’t perform that action at this time.
0 commit comments