From 80b0e0e05a7c6e5286ac0baaf143691927f00f1f Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 12 Oct 2017 14:34:35 -0700 Subject: [PATCH] Remove cryptography version limit in Azure tests. No longer needed now that cryptography 2.1.1 has been released. --- test/integration/targets/setup_azure/tasks/main.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/integration/targets/setup_azure/tasks/main.yml b/test/integration/targets/setup_azure/tasks/main.yml index 8aee658c1da..17132a497b7 100644 --- a/test/integration/targets/setup_azure/tasks/main.yml +++ b/test/integration/targets/setup_azure/tasks/main.yml @@ -1,8 +1,2 @@ -- 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'