Skip to content

Commit

Permalink
Temporarily disable non-3.12 jobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Hermes authored and dhermes committed Jun 18, 2024
1 parent e301c71 commit a6b5938
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
# - "3.10"
# - "3.11"
- "3.12"

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a6b5938

Please sign in to comment.