From d8bfc8b5d945702e9e55116304cce69e47ea3532 Mon Sep 17 00:00:00 2001 From: Sam Mesterton-Gibbons Date: Mon, 1 May 2023 22:46:49 +0100 Subject: [PATCH] Pin requests to avoid docker incompatibility Pins back requests to avoid https://github.com/docker/docker-py/issues/3113 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f88bb86..4ff77ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: with: python-version: '3.x' - name: Install deps - run: pip3 install ansible ansible-lint molecule molecule-plugins + run: pip3 install ansible ansible-lint molecule molecule-plugins 'requests<2.2.29' # Pin back requests to avoid https://github.com/docker/docker-py/issues/3113 - name: Create instances, prepare environment run: molecule create && molecule prepare