From 1394c9e471a0efcf813a9b0957069813109a7b83 Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Thu, 27 Jul 2023 16:52:47 -0500 Subject: [PATCH] try limiting pip for windows run --- .github/workflows/test_and_deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index bcde39c..ef91eb5 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -53,6 +53,11 @@ jobs: python -m pip install --upgrade pip python -m pip install setuptools tox tox-gh-actions + - name: Limit pip for windows + if: runner.os == "Windows" + run: | + pip install --ugrade "pip<23.2.0" + # this runs the platform-specific tests declared in tox.ini - name: Test with tox uses: GabrielBB/xvfb-action@v1