Merge "Fix Python setup when venv is not used"

This commit is contained in:
Zuul 2020-11-27 20:26:39 +00:00 committed by Gerrit Code Review
commit d169b4f5c7
2 changed files with 6 additions and 1 deletions

View File

@ -89,7 +89,7 @@
- python3-setuptools
- python3-pip
package:
name: "{{ packages | select }}"
name: "{{ packages | select | list }}"
state: present
become: True
when: virtualenv is not defined

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes an issue with Python setup when venv is not used. See `story 2008378
<https://storyboard.openstack.org/#!/story/22008378>`__ for details.