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
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,16 @@ updates:
prefix: ⬆️
schedule:
interval: weekly

- package-ecosystem: "conda"
directory: "/"
commit-message:
prefix: ⬆️
schedule:
interval: weekly
ignore:
- dependency-name: "jupyter-book"
versions: [">=2.0"]
- dependency-name: "python"
# Python version should be constrained by the anaconda distribution version
versions: [">0"]
2 changes: 1 addition & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./ --keep-going
jb build lectures --path-output ./ -n -W --keep-going
- name: Upload Execution Reports (HTML)
uses: actions/upload-artifact@v4
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./ --keep-going
jb build lectures --path-output ./ -n -W --keep-going
- name: Upload Execution Reports (HTML)
uses: actions/upload-artifact@v4
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Build HTML
shell: bash -l {0}
run: |
jb build lectures --path-output ./
jb build lectures --path-output ./ -n -W --keep-going
# Create HTML archive for release assets
- name: Create HTML archive
shell: bash -l {0}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lectures/cass_fiscal.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ mp.pretty = True
我们使用`mpmath`库在射击算法中执行高精度运算,以防止由于数值不稳定而导致解发散。

```{note}
在下面的函数中,我们包含了一些处理增长成分的例程(将在{doc}`Exogenous growth` 一节中进一步讨论
在下面的函数中,我们包含了一些处理增长成分的例程,这部分内容将在{ref}`growth_model`一节中进一步讨论。

我们在这里提前加入这些代码是为了避免代码重复。
```
Expand Down
1 change: 1 addition & 0 deletions lectures/mix_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ $$

import matplotlib.pyplot as plt
FONTPATH = "fonts/SourceHanSerifSC-SemiBold.otf"
import matplotlib as mpl
mpl.font_manager.fontManager.addfont(FONTPATH)
plt.rcParams['font.family'] = ['Source Han Serif SC']

Expand Down
Loading