Skip to content

Commit dc4fe83

Browse files
authored
MAINT: Upgrade docker to -b (sphinx-reredirects, latest theme) (#379)
* MAINT: Upgrade docker to -b (sphinx-reredirects, latest theme) * update env * fix link to pym.sample
1 parent 5342d3c commit dc4fe83

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/cache.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
needs: deploy-runner
2828
runs-on: [self-hosted, cml-gpu]
2929
container:
30-
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311
30+
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b
3131
options: --gpus all
3232
steps:
3333
- uses: actions/checkout@v3

.github/workflows/ci.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
needs: deploy-runner
2525
runs-on: [self-hosted, cml-gpu]
2626
container:
27-
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311
27+
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b
2828
options: --gpus all
2929
steps:
3030
- uses: actions/checkout@v3
@@ -34,9 +34,6 @@ jobs:
3434
- name: nvidia Drivers
3535
shell: bash -l {0}
3636
run: nvidia-smi
37-
- name: Install sphinx-reredirects
38-
shell: bash -l {0}
39-
run: pip install sphinx-reredirects
4037
- name: Display Conda Environment Versions
4138
shell: bash -l {0}
4239
run: conda list

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: deploy-runner
2929
runs-on: [self-hosted, cml-gpu]
3030
container:
31-
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311
31+
image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b
3232
options: --gpus all
3333
steps:
3434
- name: Checkout

environment.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ dependencies:
88
- pip:
99
- jupyter-book==0.15.1
1010
- docutils==0.17.1
11-
- quantecon-book-theme==0.6.0
11+
- quantecon-book-theme==0.7.0
12+
- sphinx-reredirects==0.1.3
1213
- sphinx-tojupyter==0.3.0
1314
- sphinxext-rediraffe==0.2.7
1415
- sphinx-exercise==0.4.1

lectures/ar1_bayes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ with AR1_model:
192192
y_like = pmc.Normal('y_obs', mu=yhat, sigma=sigma, observed=y[1:])
193193
```
194194
195-
[pmc.sample](https://www.pymc.io/projects/docs/en/latest/api/generated/pymc.sample.html?highlight=sample#pymc.sample) by default uses the NUTS samplers to generate samples as shown in the below cell:
195+
[pmc.sample](https://www.pymc.io/projects/docs/en/v5.10.0/api/generated/pymc.sample.html#pymc-sample) by default uses the NUTS samplers to generate samples as shown in the below cell:
196196
197197
```{code-cell} ipython3
198198
:tag: [hide-output]

0 commit comments

Comments
 (0)