From 9a737b15fb10f5b37bb21edd4e092270343a3142 Mon Sep 17 00:00:00 2001 From: Matthew Larson Date: Wed, 22 May 2024 14:22:13 -0500 Subject: [PATCH] Fix requests version in workflow --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dc60dacf..c5981972 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -255,6 +255,10 @@ jobs: sleep 10 working-directory: ${{github.workspace}}/hsds + # Requests 2.32.0 breaks requests-unixsocket, used by HSDS for socket connections + - name: Fix requests version + run: | + pip install requests==2.31.0 - name: Test HSDS if: ${{matrix.endpoint != 'http://127.0.0.1:5101'}} run: |