From c3044878827501374c87a4e0aee2d9a9cd9e4f3e Mon Sep 17 00:00:00 2001 From: Brandon Butler Date: Tue, 9 Jan 2024 19:27:03 -0500 Subject: [PATCH] ci: Attempt to fix failing CI by updating pip --- .github/workflows/run-pytest.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-pytest.yml b/.github/workflows/run-pytest.yml index d6875b8..dd06ab1 100644 --- a/.github/workflows/run-pytest.yml +++ b/.github/workflows/run-pytest.yml @@ -43,6 +43,10 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.config.python }} + - name: Update pip/build packages + run: | + pip install setuptools --upgrade + pip install pip --upgrade - name: Install newest dependencies run: | pip install -r requirements/requirements-test.txt @@ -51,7 +55,6 @@ jobs: if: ${{ matrix.config.dependencies == 'newest' }} - name: Install the package run: | - pip install setuptools --upgrade pip install -e . - name: Test with pytest run: |