Skip to content

Commit

Permalink
tests/azure/templates/build_container.yml: Quote requests with version
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
t-woerner committed May 8, 2023
1 parent 36b7a18 commit 316255d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/azure/templates/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 316255d

Please sign in to comment.