From 15a2ca8af94ccdb87ea50df5cdfcf8e5ffbfc840 Mon Sep 17 00:00:00 2001 From: Brian Raf Date: Thu, 6 Jun 2024 17:18:55 +0000 Subject: [PATCH] Removing 3.8 testing --- .github/workflows/python-package.yaml | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/python-package.yaml b/.github/workflows/python-package.yaml index 2a509fb46..e32609bdd 100644 --- a/.github/workflows/python-package.yaml +++ b/.github/workflows/python-package.yaml @@ -39,21 +39,21 @@ jobs: fail-fast: false matrix: os: ["ubuntu-22.04"] - python-version: ["3.8", "3.11"] + python-version: ["3.11"] env: SKIP_GPU_TESTS: 1 steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install -e . - - name: Test with unittest - run: | - pip install unittest-parallel - python3 -m unittest_parallel -v -s ./tests -t . + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install -e . + - name: Test with unittest + run: | + pip install unittest-parallel + python3 -m unittest_parallel -v -s ./tests -t .