Skip to content

Commit b9238e3

Browse files
authored
Merge pull request #2609 from stackhpc/fix-kayobe-version-check
Fix deprecation warning in check-kayobe-version
2 parents 2e4a29e + 300e486 commit b9238e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

etc/kayobe/ansible/tools/check-kayobe-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
3030
- name: Check if pip is version 24.0 or newer
3131
ansible.builtin.assert:
32-
that: "{{ packages.packages.pip.pip[0].version is version('24.0', '>=') }}"
32+
that: packages.packages.pip.pip[0].version is version('24.0', '>=')
3333
fail_msg: |
3434
Pip must be 24.0 or newer to run this check. Upgrade pip by running
3535
pip install -U pip and reinstall Kayobe by running:

0 commit comments

Comments
 (0)