Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/execution-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
schedule:
# UTC 15:00 is early morning in Australia
- cron: '0 15 * * *'
workflow_dispatch:
jobs:
execution-tests-linux:
name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
Expand All @@ -23,7 +24,10 @@ jobs:
shell: bash -l {0}
run: |
conda install anaconda
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
# jupyter-book pinned <2: the 2.x line drops the jb CLI (see #569);
# this repo stays on jupyter-book 1.x until a JB2-compatible theme
# exists (mirrors the <2.0 pin in environment.yml)
pip install "jupyter-book<2" sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/execution-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
schedule:
# UTC 16:00 is early morning in Australia
- cron: '0 15 * * 1'
workflow_dispatch:
jobs:
execution-tests-osx:
name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
Expand All @@ -23,7 +24,10 @@ jobs:
shell: bash -l {0}
run: |
conda install anaconda
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
# jupyter-book pinned <2: the 2.x line drops the jb CLI (see #569);
# this repo stays on jupyter-book 1.x until a JB2-compatible theme
# exists (mirrors the <2.0 pin in environment.yml)
pip install "jupyter-book<2" sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/execution-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
schedule:
# UTC 17:00 is early morning in Australia
- cron: '0 15 * * 4'
workflow_dispatch:
jobs:
execution-tests-win:
name: Execution Tests (${{ matrix.python-version }}, ${{ matrix.os }})
Expand All @@ -27,8 +28,10 @@ jobs:
conda install anaconda
conda install -c numba numba
conda install -c numba llvmlite
pip install jupyter-book
pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
# jupyter-book pinned <2: the 2.x line drops the jb CLI (see #569);
# this repo stays on jupyter-book 1.x until a JB2-compatible theme
# exists (mirrors the <2.0 pin in environment.yml)
pip install "jupyter-book<2" sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx-tojupyter sphinx-exercise sphinx-togglebutton
- name: Install Jax [CPU]
shell: bash -l {0}
run: |
Expand Down
Loading