1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/setup_azure/tasks/main.yml
Matt Clay 8acb901bf2 Update Azure tests to limit cryptography version. (#31616)
* Revert "Work around cryptography 2.1 requiring pip 8.1.2+"

This reverts commit a10a80b8a3.

* Update Azure tests to limit cryptography version.
2017-10-11 19:18:16 -07:00

8 lines
390 B
YAML

- name: install cryptography requirement
# preempt the installation of cryptography from requirements-azure.txt to limit the version installed
# requests[security] requires cryptography >= 1.3.4
# cryptography 2.1 requires pip 8.1.2+
command: pip install cryptography>=1.3.4,<2.1
- pip:
requirements: '{{ role_path }}/../../../../packaging/requirements/requirements-azure.txt'