From a6b5938bd3ad2e98dc6ff3a860b3ffd0195569db Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Wed, 18 Oct 2023 01:14:00 -0500 Subject: [PATCH] Temporarily disable non-3.12 jobs. --- .github/workflows/linux.yaml | 40 +++++++++++++++++----------------- .github/workflows/macos.yaml | 4 ++-- .github/workflows/windows.yaml | 4 ++-- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 5bc8fb45..c6895fcd 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -57,26 +57,26 @@ jobs: sudo apt-get update sudo apt-get install libopenblas-dev - - name: Unit tests in Python 3.10 - run: | - nox --session unit-3.10 - - - name: Sanity check Python 3.10 (ensure not resolved as PyPy by mistake) - run: | - IMPLEMENTATION_NAME=$(.nox/unit-3-10/bin/python -c 'import sys; print(sys.implementation.name)') - - if [[ "${IMPLEMENTATION_NAME}" != "cpython" ]]; then - echo "Unexpected implementation (${IMPLEMENTATION_NAME}), expected CPython" >&2 - exit 1 - fi - - - name: Unit tests in Python 3.11 - run: | - nox --session unit-3.11 - - - name: Unit tests in pypy3 - run: | - nox --session unit-pypy3 + # - name: Unit tests in Python 3.10 + # run: | + # nox --session unit-3.10 + + # - name: Sanity check Python 3.10 (ensure not resolved as PyPy by mistake) + # run: | + # IMPLEMENTATION_NAME=$(.nox/unit-3-10/bin/python -c 'import sys; print(sys.implementation.name)') + + # if [[ "${IMPLEMENTATION_NAME}" != "cpython" ]]; then + # echo "Unexpected implementation (${IMPLEMENTATION_NAME}), expected CPython" >&2 + # exit 1 + # fi + + # - name: Unit tests in Python 3.11 + # run: | + # nox --session unit-3.11 + + # - name: Unit tests in pypy3 + # run: | + # nox --session unit-pypy3 - name: Unit tests AND line coverage in Python 3.12 run: | diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 9a027a25..b44e195f 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -34,8 +34,8 @@ jobs: strategy: matrix: python-version: - - "3.10" - - "3.11" + # - "3.10" + # - "3.11" - "3.12" steps: diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 06f4ba0c..d9ed97a5 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -34,8 +34,8 @@ jobs: strategy: matrix: nox-session: - - unit-3.10 - - unit-3.11 + # - unit-3.10 + # - unit-3.11 - cover - functional-3.12 - doctest