Skip to content

Commit 62357ca

Browse files
authored
MAINT: add jax[cpu] to execution checks (#260)
1 parent 4b32d03 commit 62357ca

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/execution-linux.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
run: |
2525
conda install anaconda
2626
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
27+
- name: Install Jax [CPU]
28+
shell: bash -l {0}
29+
run: |
30+
pip install "jax[CPU]"
2731
- name: Build Lectures (+ Execution Checks)
2832
shell: bash -l {0}
2933
run: jb build lectures --path-output=./ -W --keep-going

.github/workflows/execution-osx.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
run: |
2525
conda install anaconda
2626
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
27+
- name: Install Jax [CPU]
28+
shell: bash -l {0}
29+
run: |
30+
pip install "jax[CPU]"
2731
- name: Build Lectures (+ Execution Checks)
2832
shell: bash -l {0}
2933
run: jb build lectures --path-output=./ -W --keep-going

.github/workflows/execution-win.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
conda install -c numba llvmlite
3030
pip install jupyter-book
3131
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
32+
- name: Install Jax [CPU]
33+
shell: bash -l {0}
34+
run: |
35+
pip install "jax[CPU]"
3236
- name: Build Lectures (+ Execution Checks)
3337
shell: powershell
3438
run: jb build lectures --path-output=./ -W --keep-going

0 commit comments

Comments
 (0)