fix: add python3 support for ansible
This commit is contained in:
parent
d90791d467
commit
44ce4e6002
2 changed files with 4 additions and 1 deletions
|
@ -7,6 +7,7 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
### Fixed
|
||||
|
||||
- add full python3 support
|
||||
- remove useless no_log variable
|
||||
|
||||
## [1.3.0] - 2020-04-04
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
---
|
||||
- name: install backend dependencies
|
||||
package:
|
||||
name: python-requests
|
||||
name:
|
||||
- python-requests
|
||||
- python3-requests
|
||||
register: result
|
||||
retries: 3
|
||||
delay: 1
|
||||
|
|
Loading…
Reference in a new issue