Skip to content

remove pypy3.7 on macos-13 #23

remove pypy3.7 on macos-13

remove pypy3.7 on macos-13 #23

Workflow file for this run

name: Python tests
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-14, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.7", "pypy3.8", "pypy3.9", "pypy3.10"]
exclude:
- os: macos-14
python-version: "3.7"
- os: macos-14
python-version: "pypy3.7"
- os: macos-13
python-version: "3.13"
- os: ubuntu-latest
python-version: "3.13"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[test]
- name: Fetch test files
run: |
test/fetch_examples.sh
- name: Test with pytest
run: |
pytest -v