-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KeyError: 'array'? (Python 3.10)
- Loading branch information
Henry Webel
committed
May 28, 2024
1 parent
ddc5131
commit 05eb01c
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Test tutorial | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
format: | ||
name: Check tutorial | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install Claster requirements | ||
run: | | ||
pip install numpy pandas matplotlib jupyter ipykernel eir-dl | ||
- name: Run papermill for cmd-line execution of notebooks | ||
run: | | ||
pip install papermill | ||
- name: Test Tutorial | ||
run: | | ||
cd scripts | ||
papermill 0_Tutorial.ipynb 0_Tutorial_out.ipynb | ||