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
9 changes: 9 additions & 0 deletions .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
python-version: "3.13"
environment-file: environment.yml
activate-environment: quantecon
- name: Install JAX (CPU, pinned)
shell: bash -l {0}
run: |
# Pinned: jax 0.11.1 (2026-08-17) hangs numpy_vs_numba_vs_jax's
# lax.fori_loop cells on the CPU path -- context is recorded in
# QuantEcon/workspace-lectures#49. With jax already present, the
# lecture's unpinned `!pip install quantecon jax` cell is satisfied
# and does not upgrade.
pip install "jax==0.11.0"
- name: Build HTML
shell: bash -l {0}
run: |
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
python-version: "3.13"
environment-file: environment.yml
activate-environment: quantecon
- name: Install JAX (CPU, pinned)
shell: bash -l {0}
run: |
# Pinned: jax 0.11.1 (2026-08-17) hangs numpy_vs_numba_vs_jax's
# lax.fori_loop cells on the CPU path -- context is recorded in
# QuantEcon/workspace-lectures#49. With jax already present, the
# lecture's unpinned `!pip install quantecon jax` cell is satisfied
# and does not upgrade.
pip install "jax==0.11.0"
- name: Install latex dependencies
run: |
sudo apt-get -qq update
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
python-version: "3.13"
environment-file: environment.yml
activate-environment: quantecon
- name: Install JAX (CPU, pinned)
shell: bash -l {0}
run: |
# Pinned: jax 0.11.1 (2026-08-17) hangs numpy_vs_numba_vs_jax's
# lax.fori_loop cells on the CPU path -- context is recorded in
# QuantEcon/workspace-lectures#49. With jax already present, the
# lecture's unpinned `!pip install quantecon jax` cell is satisfied
# and does not upgrade.
pip install "jax==0.11.0"
- name: Install latex dependencies
run: |
sudo apt-get -qq update
Expand Down
Loading