requirements: bump nim-waku to use new compose module

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-06-03 14:19:59 +02:00
parent dc9b6f5a81
commit 89c487dfcc
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@
- name: infra-role-nim-waku - name: infra-role-nim-waku
src: git@github.com:status-im/infra-role-nim-waku.git src: git@github.com:status-im/infra-role-nim-waku.git
version: f8752012cc0dea0ef58530925b139b1b62683a4a version: 0948fc8aa6c5738ca963d7faac2b203645d22afd
scm: git scm: git
- name: infra-role-certbot - name: infra-role-certbot

View File

@ -33,9 +33,10 @@ class Role:
return str(cmd.stdout.strip(), 'utf-8') return str(cmd.stdout.strip(), 'utf-8')
# Verify Ansible version is 2.8 or newer. # Verify Ansible version is 2.16 or newer.
if version.parse(ansible.__version__) < version.parse("2.8"): ansible_required = '2.16'
print('Your Ansible version is lower than 2.8. Upgrade it.') if version.parse(ansible.__version__) < version.parse(ansible_required):
print('Your Ansible version is lower than %s. Upgrade it.' % ansible_required)
exit(1) exit(1)
# Read Ansible requirements file. # Read Ansible requirements file.