Skip to content

fix maplotlib version #7

fix maplotlib version

fix maplotlib version #7

Workflow file for this run

name: continuous-integration
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[all,testing]
# ensure matplotlib version is the same as when generated tests
pip install matplotlib==3.8.4
- name: Test
run: |
python -m pytest --snapshot-warn-unused test/ # do not fail if unused snapshot, just warn