Skip to content

Commit

Permalink
Merge pull request #90 from wfdb/tp/sphinx_error
Browse files Browse the repository at this point in the history
Bump Jupyter-Notebook and dependencies to fix build error
  • Loading branch information
tompollard authored Jul 19, 2024
2 parents bc57d42 + fb8d065 commit 59ae483
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 38 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Install dependencies
- name: Set up Python 3.9
uses: actions/setup-python@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10

- name: Install dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9"]
python-version: ["3.10"]
steps:
# Checkout the latest code from the repo
# https://github.com/actions/checkout
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
# Setup which version of Python to use
# https://github.com/actions/setup-python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# Display the Python version being used
Expand Down
55 changes: 27 additions & 28 deletions content/_toc.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,39 @@
# Table of content
# Learn more at https://jupyterbook.org/customize/toc.html
#
- file: intro
format: jb-article
root: intro
sections:
- file: workshop
sections:
- file: workshop/aims
- file: workshop/synopsis
- file: workshop/schedule
- file: workshop/prep
- file: workshop/aims
- file: workshop/synopsis
- file: workshop/schedule
- file: workshop/prep
- file: mimic-database
sections:
- file: mimic/physionet
- file: mimic/context
- file: mimic/structure
- file: mimic/formatting
- file: mimic/wfdb-toolbox
- file: mimic/physionet
- file: mimic/context
- file: mimic/structure
- file: mimic/formatting
- file: mimic/wfdb-toolbox
- file: tutorials
sections:
- file: tutorial/notebooks/data-exploration
- file: tutorial/notebooks/data-extraction
- file: tutorial/notebooks/data-visualisation
- file: tutorial/notebooks/signal-filtering
- file: tutorial/notebooks/differentiation
- file: tutorial/notebooks/beat-detection
- file: tutorial/notebooks/pulse-wave-analysis
- file: tutorial/notebooks/extracting-reference-bp
- file: tutorial/notebooks/data-exploration
- file: tutorial/notebooks/data-extraction
- file: tutorial/notebooks/data-visualisation
- file: tutorial/notebooks/signal-filtering
- file: tutorial/notebooks/differentiation
- file: tutorial/notebooks/beat-detection
- file: tutorial/notebooks/pulse-wave-analysis
- file: tutorial/notebooks/extracting-reference-bp
- file: case-study
- file: additional-resources
- file: about
sections:
- file: about/about-contributing
- file: about/about-maintenance
- file: about/about-contributing
- file: about/about-maintenance
- file: tutorials-for-the-future
sections:
- file: tutorial/notebooks/qrs-detection
- file: tutorial/signal-quality-assessment
- file: tutorial/data-modelling
- file: tutorial/data-analysis
- file: tutorial/data-interpretation
- file: tutorial/notebooks/qrs-detection
- file: tutorial/signal-quality-assessment
- file: tutorial/data-modelling
- file: tutorial/data-analysis
- file: tutorial/data-interpretation
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Jinja2==3.0.3
jupyter-book==0.9.1
Jinja2==3.1.4
jupyter-book==1.0.2
matplotlib==3.5.2
numpy>=1.10
numpy>=1.23.1
wfdb==3.4.1

0 comments on commit 59ae483

Please sign in to comment.