diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml index eb289f2..2eed145 100644 --- a/.github/workflows/unittests.yaml +++ b/.github/workflows/unittests.yaml @@ -30,9 +30,13 @@ jobs: with: python-version: "3.10" + - name: Use latest version of pip + run: | + python -m pip install --upgrade pip + - name: Install Python dependencies run: | - pip3 install --user -e .[dev] + python -m pip install --user -e .[dev] - name: Test with pytest run: |