Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Jupyter-Notebook and dependencies to fix build error #90

Merged
merged 4 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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