From 5bf2b7454511f5d16d79430184a4937dbb3d8670 Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Thu, 14 Mar 2024 20:57:50 -0400 Subject: [PATCH] force upgrade pip in gh actions --- .github/workflows/tests.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8ea0db9c..382ed515 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install package - run: pip install .[dev] + run: | + pip install --upgrade pip setuptools wheel + pip install .[dev] - name: make test-devel run: make test-devel @@ -37,7 +39,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install package and dependencies - run: pip install .[test] + run: | + pip install --upgrade pip setuptools wheel + pip install .[test] - name: Test with pytest run: make test @@ -54,7 +58,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install package and dependencies - run: pip install rundoc . + run: | + pip install --upgrade pip setuptools wheel + pip install rundoc . - name: make test-readme run: make test-readme