1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

stormssh tests: do not install newer cryptography (#5868)

Do not install newer cryptography.

ci_complete
This commit is contained in:
Felix Fontein 2023-01-22 17:27:17 +01:00 committed by GitHub
parent 59a9d34250
commit 098912c229
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,9 @@
- name: Install required libs - name: Install required libs
pip: pip:
name: stormssh name:
- stormssh
- 'paramiko<3.0.0'
state: present state: present
extra_args: "-c {{ remote_constraints }}" extra_args: "-c {{ remote_constraints }}"