From dd3fbfd4f5dcac25acc6526445f1854f61c2d04b Mon Sep 17 00:00:00 2001 From: mmcky Date: Wed, 24 Sep 2025 12:02:08 +1000 Subject: [PATCH 1/4] FIX: upgrade quantecon-book-theme==0.9.3 --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 76faa295..e55f9368 100644 --- a/environment.yml +++ b/environment.yml @@ -7,7 +7,7 @@ dependencies: - pip - pip: - jupyter-book==1.0.4post1 - - quantecon-book-theme==0.9.2 + - quantecon-book-theme==0.9.3 - sphinx-tojupyter==0.3.1 - sphinxext-rediraffe==0.2.7 - sphinx-exercise==1.0.1 From 1c707c80ef1e3ac843ba4b0bbb8e1842f021a2f9 Mon Sep 17 00:00:00 2001 From: mmcky Date: Wed, 24 Sep 2025 12:03:36 +1000 Subject: [PATCH 2/4] tst: v0.9.3 --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index e55f9368..389d16e2 100644 --- a/environment.yml +++ b/environment.yml @@ -7,7 +7,7 @@ dependencies: - pip - pip: - jupyter-book==1.0.4post1 - - quantecon-book-theme==0.9.3 + - git+https://github.com/quantecon/quantecon-book-theme@prep-v0.9.3 - sphinx-tojupyter==0.3.1 - sphinxext-rediraffe==0.2.7 - sphinx-exercise==1.0.1 From 55a5946990c1db1453de2040893f958c1efcb878 Mon Sep 17 00:00:00 2001 From: mmcky Date: Wed, 24 Sep 2025 12:18:52 +1000 Subject: [PATCH 3/4] use release --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 389d16e2..e55f9368 100644 --- a/environment.yml +++ b/environment.yml @@ -7,7 +7,7 @@ dependencies: - pip - pip: - jupyter-book==1.0.4post1 - - git+https://github.com/quantecon/quantecon-book-theme@prep-v0.9.3 + - quantecon-book-theme==0.9.3 - sphinx-tojupyter==0.3.1 - sphinxext-rediraffe==0.2.7 - sphinx-exercise==1.0.1 From c8391be3ade174766a8a4e22c66ccc74b8a0ed34 Mon Sep 17 00:00:00 2001 From: mmcky Date: Wed, 24 Sep 2025 12:20:07 +1000 Subject: [PATCH 4/4] use collapse-20 as a standard size --- lectures/amss.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lectures/amss.md b/lectures/amss.md index e9208ee4..ad46b191 100644 --- a/lectures/amss.md +++ b/lectures/amss.md @@ -47,7 +47,7 @@ Now let's define numba-compatible interpolation functions for this lecture. We will soon use the following interpolation functions to interpolate the value function and the policy functions ```{code-cell} ipython -:tags: [collapse-40] +:tags: [collapse-20] @njit def get_grid_nodes(grid): @@ -745,7 +745,7 @@ assets, returning any excess revenues to the household as non-negative lump-sum The recursive formulation is implemented as follows ```{code-cell} python3 -:tags: [collapse-30] +:tags: [collapse-20] :load: _static/lecture_specific/amss/recursive_allocation.py ```