From 316255d524a16ab7121973fce774abef3bf9e407 Mon Sep 17 00:00:00 2001 From: Thomas Woerner Date: Mon, 8 May 2023 16:25:03 +0200 Subject: [PATCH] tests/azure/templates/build_container.yml: Quote requests with version The version requirement for requests need to be quoted not to lead into a pip install command issue. This is related to PR #1089 (Pin requests to < 2.29 temporarily) --- tests/azure/templates/build_container.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/azure/templates/build_container.yml b/tests/azure/templates/build_container.yml index d0de08098e..2b47c1b4aa 100644 --- a/tests/azure/templates/build_container.yml +++ b/tests/azure/templates/build_container.yml @@ -22,7 +22,7 @@ jobs: retryCountOnTaskFailure: 5 displayName: Install tools - - script: pip install molecule-plugins[docker] requests<2.29 + - script: pip install molecule-plugins[docker] "requests<2.29" retryCountOnTaskFailure: 5 displayName: Install molecule