We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37c4778 + bb5903f commit b75d792Copy full SHA for b75d792
.github/workflows/notebook-interfaces-test.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Set up Python
18
uses: actions/setup-python@v5
19
with:
20
- python-version: '3.13'
+ python-version: '3.12'
21
22
# We use e.g. install pints[stan] to install dependencies for interfaces
23
# that have some code in pints/interfaces. Dependencies that are not used
.github/workflows/notebook-test.yml
@@ -26,6 +26,11 @@ jobs:
26
python -m pip install .
27
python -m pip install .[dev]
28
29
+ # Install pandas for "estimation renewal" notebook
30
+ - name: install pandas
31
+ run: |
32
+ python -m pip install pandas
33
+
34
- name: run jupyter notebooks
35
run: |
36
python run-tests.py --books
0 commit comments