Skip to content

Commit 164c68f

Browse files
committed
Merge branch 'main' into lake-model
2 parents 4966a1e + 8092924 commit 164c68f

20 files changed

+66095
-1823
lines changed

.github/.DS_Store

-6 KB
Binary file not shown.

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
- name: Display Pip Versions
3838
shell: bash -l {0}
3939
run: pip list
40-
- name: Download "build" folder (cache)
41-
uses: dawidd6/action-download-artifact@v2
42-
with:
43-
workflow: cache.yml
44-
branch: main
45-
name: build-cache
46-
path: _build
40+
# - name: Download "build" folder (cache)
41+
# uses: dawidd6/action-download-artifact@v2
42+
# with:
43+
# workflow: cache.yml
44+
# branch: main
45+
# name: build-cache
46+
# path: _build
4747
# Build Assets (Download Notebooks and PDF via LaTeX)
4848
# - name: Build PDF from LaTeX
4949
# shell: bash -l {0}
@@ -63,7 +63,7 @@ jobs:
6363
- name: Build HTML
6464
shell: bash -l {0}
6565
run: |
66-
rm -r _build/.doctrees
66+
# rm -r _build/.doctrees
6767
jb build lectures --path-output ./ -W --keep-going
6868
- name: Upload Execution Reports (HTML)
6969
uses: actions/upload-artifact@v2

.github/workflows/linkcheck.yml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
name: Link Checker [Anaconda, Linux]
2-
on:
3-
pull_request:
4-
types: [opened, reopened]
5-
schedule:
6-
# UTC 12:00 is early morning in Australia
7-
- cron: '0 12 * * *'
8-
jobs:
9-
link-check-linux:
10-
name: Link Checking (${{ matrix.python-version }}, ${{ matrix.os }})
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
os: ["ubuntu-latest"]
16-
python-version: ["3.9"]
17-
steps:
18-
- name: Checkout
19-
uses: actions/checkout@v2
20-
- name: Setup Anaconda
21-
uses: conda-incubator/setup-miniconda@v2
22-
with:
23-
auto-update-conda: true
24-
auto-activate-base: true
25-
miniconda-version: 'latest'
26-
python-version: 3.9
27-
environment-file: environment.yml
28-
activate-environment: quantecon
29-
- name: Download "build" folder (cache)
30-
uses: dawidd6/action-download-artifact@v2
31-
with:
32-
workflow: cache.yml
33-
branch: main
34-
name: build-cache
35-
path: _build
36-
- name: Link Checker
37-
shell: bash -l {0}
38-
run: jb build lectures --path-output=./ --builder=custom --custom-builder=linkcheck
39-
- name: Upload Link Checker Reports
40-
uses: actions/upload-artifact@v2
41-
if: failure()
42-
with:
43-
name: linkcheck-reports
44-
path: _build/linkcheck
1+
# name: Link Checker [Anaconda, Linux]
2+
# on:
3+
# pull_request:
4+
# types: [opened, reopened]
5+
# schedule:
6+
# # UTC 12:00 is early morning in Australia
7+
# - cron: '0 12 * * *'
8+
# jobs:
9+
# link-check-linux:
10+
# name: Link Checking (${{ matrix.python-version }}, ${{ matrix.os }})
11+
# runs-on: ${{ matrix.os }}
12+
# strategy:
13+
# fail-fast: false
14+
# matrix:
15+
# os: ["ubuntu-latest"]
16+
# python-version: ["3.9"]
17+
# steps:
18+
# - name: Checkout
19+
# uses: actions/checkout@v2
20+
# - name: Setup Anaconda
21+
# uses: conda-incubator/setup-miniconda@v2
22+
# with:
23+
# auto-update-conda: true
24+
# auto-activate-base: true
25+
# miniconda-version: 'latest'
26+
# python-version: 3.9
27+
# environment-file: environment.yml
28+
# activate-environment: quantecon
29+
# - name: Download "build" folder (cache)
30+
# uses: dawidd6/action-download-artifact@v2
31+
# with:
32+
# workflow: cache.yml
33+
# branch: main
34+
# name: build-cache
35+
# path: _build
36+
# - name: Link Checker
37+
# shell: bash -l {0}
38+
# run: jb build lectures --path-output=./ --builder=custom --custom-builder=linkcheck
39+
# - name: Upload Link Checker Reports
40+
# uses: actions/upload-artifact@v2
41+
# if: failure()
42+
# with:
43+
# name: linkcheck-reports
44+
# path: _build/linkcheck

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dependencies:
66
- anaconda=2022.10
77
- pip
88
- pip:
9-
- jupyter-book
10-
- quantecon-book-theme
11-
- sphinx-tojupyter==0.2.1
9+
- jupyter-book==0.14.0
10+
# - quantecon-book-theme==0.3.2
11+
# - sphinx-tojupyter==0.2.1
1212
- sphinxext-rediraffe==0.2.7
1313
- sphinx-exercise==0.4.1
1414
- sphinx-proof==0.1.3

0 commit comments

Comments
 (0)