From 2106d5df79578e99ea7183dccefa69e964e2ef67 Mon Sep 17 00:00:00 2001 From: Jovanka Date: Tue, 29 Oct 2024 10:55:36 +0100 Subject: [PATCH] Pin pip to 22.0.4 --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3e6eb9..51a8dfa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,8 +52,10 @@ jobs: - uses: actions/checkout@v2 - name: Install CURL run: apt install curl -y - - name: Install specific setuptools version (44.1.0) - run: pip install setuptools==44.1.0 + - name: Install specific pip(22.0.4) && setuptools version (44.1.0) + run: | + pip install pip==22.0.4 + pip install setuptools==44.1.0 - name: Install requirements run: | pip install -r dev-requirements.txt