mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Prevent CI failure with older pip versions. (#670)
This commit is contained in:
parent
bc43694ca9
commit
ee6baa30cf
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@
|
|||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
- name: "Installing the psutil module"
|
||||
pip:
|
||||
name: psutil
|
||||
name: psutil < 5.7.0
|
||||
# Version 5.7.0 breaks on older pip versions. See https://github.com/ansible/ansible/pull/70667
|
||||
|
||||
- name: "Checking the empty result"
|
||||
pids:
|
||||
|
|
Loading…
Reference in a new issue