Skip to content

chore: drop Python 3.8 support; fix pytest ExceptionGroup compat #41

chore: drop Python 3.8 support; fix pytest ExceptionGroup compat

chore: drop Python 3.8 support; fix pytest ExceptionGroup compat #41

Workflow file for this run

name: Python
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13-dev']
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
pip install .
pip install -r test-requirements.txt
- name: Install dependency NumPy
if: "!endsWith(matrix.python-version, '-dev')"
run: |
pip install numpy
- name: Test with pytest
working-directory: ./grain
run: |
pytest