Skip to content

Commit b75d792

Browse files
authored
Merge pull request #1701 from pints-team/notebook-tests-2024
Notebook tests fixes
2 parents 37c4778 + bb5903f commit b75d792

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/notebook-interfaces-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.13'
20+
python-version: '3.12'
2121

2222
# We use e.g. install pints[stan] to install dependencies for interfaces
2323
# that have some code in pints/interfaces. Dependencies that are not used

.github/workflows/notebook-test.yml

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
python -m pip install .
2727
python -m pip install .[dev]
2828
29+
# Install pandas for "estimation renewal" notebook
30+
- name: install pandas
31+
run: |
32+
python -m pip install pandas
33+
2934
- name: run jupyter notebooks
3035
run: |
3136
python run-tests.py --books

0 commit comments

Comments
 (0)