From b69ff9107c7ca097a841d274b9660d037832fa01 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 15 Oct 2025 14:45:27 +0200 Subject: [PATCH] ci: Remove Python 3.8 fallback to pip install * Use uv for all installations in CI, as the Python 3.8 fall back to 'pip install' was needed only for TensorFlow. - Amends PR https://github.com/scikit-hep/pyhf/pull/ 2609 --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c84c64157..053c7a8671 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,18 +47,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies - if: matrix.python-version != '3.8' run: | python -m pip install uv uv pip install --system --upgrade ".[all,test]" - # c.f. https://github.com/astral-sh/uv/issues/2062 - - name: Install dependencies (Python 3.8) - if: matrix.python-version == '3.8' - run: | - python -m pip install --upgrade pip - python -m pip install --upgrade ".[all,test]" - - name: List installed Python packages run: python -m pip list