Skip to content

Commit cc0a464

Browse files
Python 3.11 + anywidget
1 parent 5a23440 commit cc0a464

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.binder/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ torch
1313
tqdm
1414
eagerpy
1515
ipywidgets
16+
anywidget

.github/workflows/test_notebooks.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,22 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
steps:
10-
- uses: actions/checkout@v2
11-
- name: Set up Python 3.8
12-
uses: actions/setup-python@v2
13-
with:
14-
python-version: 3.8
15-
- name: Install LaTeX support for matplotlib
16-
run: |
17-
sudo apt update
18-
sudo apt install -y ghostscript dvipng texlive-full
19-
- name: Install Python dependencies
20-
run: |
21-
python -m pip install --upgrade pip
22-
pip install -r .binder/requirements.txt
23-
pip install jupyter
24-
- name: Execute notebooks
25-
run: |
26-
for f in *.ipynb; do echo "Processing $f file.."; time jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=600 --inplace --execute $f;done;
9+
- uses: actions/checkout@v2
10+
- name: Set up Python 3.11
11+
uses: actions/setup-python@v2
12+
with:
13+
python-version: 3.11
14+
- name: Install LaTeX support for matplotlib
15+
run: |
16+
sudo apt update
17+
sudo apt install -y ghostscript dvipng texlive-full
18+
- name: Install Python dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -r .binder/requirements.txt
22+
pip install jupyter
23+
- name: Execute notebooks
24+
run: |
25+
for f in *.ipynb; do echo "Processing $f file.."; time jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=600 --inplace --execute $f;done;

0 commit comments

Comments
 (0)