Skip to content

update notebooks testing to 3.9 and 3.13 #73

update notebooks testing to 3.9 and 3.13

update notebooks testing to 3.9 and 3.13 #73

name: Test notebooks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies to run/test notebooks
run: |
pip install nbformat nbconvert jupyter pillow pytest numpy torch tensorflow
- name: Testing notebooks
run: |
pip install -e . && pytest scripts/test_notebooks.py