From cc720e846d9fc9cee1916dd951f1cbf57d752033 Mon Sep 17 00:00:00 2001 From: Alex Tong Date: Thu, 11 Jul 2024 16:29:10 -0400 Subject: [PATCH] fix pip version --- .github/workflows/test_runner.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_runner.yaml b/.github/workflows/test_runner.yaml index e901d93..d37a80e 100644 --- a/.github/workflows/test_runner.yaml +++ b/.github/workflows/test_runner.yaml @@ -27,7 +27,8 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + # Fix pip version < 24.1 due to lightning incomaptibility + python -m pip install pip==23.2.1 pip install -r runner-requirements.txt pip install pytest pip install sh