From cf0f6c1e79021cda053e2bbf642b7921b2c7888f Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Wed, 22 May 2024 14:54:55 -0400 Subject: [PATCH] [ci] Avoid installing requests 2.32 This request release is bugged. https://github.com/ansible-community/molecule-plugins/issues/256 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a58b075a..2cf0fd01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,8 @@ jobs: run: | pip install molecule molecule-plugins[docker] yamllint ansible-lint docker pip install openwisp-utils[qa] + # https://github.com/ansible-community/molecule-plugins/issues/256 + python -m pip install 'requests<2.32' - name: Install Ansible Galaxy dependencies run: ansible-galaxy collection install "community.general:>=3.6.0"