Skip to content

build(deps): update jupyter-book requirement from <2.0,>=0.15 to >=1.0.4.post1,<2.0 #374

build(deps): update jupyter-book requirement from <2.0,>=0.15 to >=1.0.4.post1,<2.0

build(deps): update jupyter-book requirement from <2.0,>=0.15 to >=1.0.4.post1,<2.0 #374

# This runs alls notebooks in the Notebooks folder
name: windows
# Controls when the workflow will run
on:
push:
branches:
- master
pull_request:
branches:
- master
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest --nbmake -n=auto "./Notebooks"