Skip to content

Commit aa44257

Browse files
mmckyHumphreyYang
andauthored
MAINT: Update software stack (#146)
* MAINT: Update software stack * TMP: disable build cache * update links and remove old site redirect * re-enable cache --------- Co-authored-by: Humphrey Yang <[email protected]>
1 parent 352057d commit aa44257

File tree

10 files changed

+18
-17
lines changed

10 files changed

+18
-17
lines changed

.github/workflows/cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
auto-update-conda: true
1919
auto-activate-base: true
2020
miniconda-version: 'latest'
21-
python-version: "3.10"
21+
python-version: "3.11"
2222
environment-file: environment.yml
2323
activate-environment: quantecon
2424
- name: Install latex dependencies

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
auto-update-conda: true
1313
auto-activate-base: true
1414
miniconda-version: 'latest'
15-
python-version: "3.10"
15+
python-version: "3.11"
1616
environment-file: environment.yml
1717
activate-environment: quantecon
1818
- name: Install latex dependencies

.github/workflows/execution.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: ["ubuntu-latest"]
14-
python-version: ["3.10"]
14+
python-version: ["3.11"]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v2
@@ -53,7 +53,7 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
os: ["macos-latest"]
56-
python-version: ["3.10"]
56+
python-version: ["3.11"]
5757
steps:
5858
- name: Checkout
5959
uses: actions/checkout@v2
@@ -85,7 +85,7 @@ jobs:
8585
# fail-fast: false
8686
# matrix:
8787
# os: ["windows-latest"]
88-
# python-version: ["3.10"]
88+
# python-version: ["3.11"]
8989
# steps:
9090
# - name: Checkout
9191
# uses: actions/checkout@v2

.github/workflows/linkcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: ["ubuntu-latest"]
16-
python-version: ["3.10"]
16+
python-version: ["3.11"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2
@@ -23,7 +23,7 @@ jobs:
2323
auto-update-conda: true
2424
auto-activate-base: true
2525
miniconda-version: 'latest'
26-
python-version: "3.10"
26+
python-version: "3.11"
2727
environment-file: environment.yml
2828
activate-environment: quantecon
2929
- name: Download "build" folder (cache)

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
auto-update-conda: true
1717
auto-activate-base: true
1818
miniconda-version: 'latest'
19-
python-version: "3.10"
19+
python-version: "3.11"
2020
environment-file: environment.yml
2121
activate-environment: quantecon
2222
- name: Install latex dependencies

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: quantecon
22
channels:
33
- default
44
dependencies:
5-
- python=3.10
6-
- anaconda=2023.07
5+
- python=3.11
6+
- anaconda=2023.09
77
- pip
88
- pip:
99
- jupyter-book==0.15.1
1010
- docutils==0.17.1
11-
- quantecon-book-theme==0.5.3
11+
- quantecon-book-theme==0.6.0
1212
- sphinx-tojupyter==0.3.0
1313
- sphinxext-rediraffe==0.2.7
1414
- sphinx-exercise==0.4.1

lectures/_config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ latex:
3333
sphinx:
3434
extra_extensions: [sphinx_multitoc_numbering, sphinxext.rediraffe, sphinx_tojupyter, sphinx_exercise, sphinx_togglebutton]
3535
config:
36+
linkcheck_ignore: ['https://doi.org/10.3982/ECTA8070',
37+
'https://doi.org/10.1086/261749',
38+
'https://doi.org/10.1086/262078',
39+
'https://keras.io/',
40+
'https://data.oecd.org/']
3641
nb_mime_priority_overrides: [
3742
# HTML
3843
['html', 'application/vnd.jupyter.widget-view+json', 10],

lectures/intro.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,4 @@ This website presents a set of advanced lectures on quantitative economic modeli
1717
For an overview of the series, see [this page](https://quantecon.org/python-lectures/)
1818

1919
```{tableofcontents}
20-
```
21-
22-
```{admonition} Previous website
23-
While this new site will receive all future updates, you may still view the [old site here](http://rst-python-advanced.quantecon.org) for the next month.
2420
```

lectures/lqramsey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ In this case, the formula for computing $q(x_0)$ is known to be $q(x_0) = x_0' Q
415415
* $v = \text{trace} \, (C' Q C) \beta / (1 - \beta)$
416416

417417
The first equation is known as a discrete Lyapunov equation and can be solved
418-
using [this function](https://github.com/QuantEcon/QuantEcon.py/blob/master/quantecon/matrix_eqn.py#L25).
418+
using [this function](https://github.com/QuantEcon/QuantEcon.py/blob/master/quantecon/_matrix_eqn.py).
419419

420420
### Finite State Markov Case
421421

lectures/tax_smoothing_1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ model using the `LQMarkov` class that solves Markov jump linear
406406
quandratic control problems as described above.
407407

408408
The code for the class can be viewed
409-
[here](https://github.com/QuantEcon/QuantEcon.py/blob/master/quantecon/lqcontrol.py#L334).
409+
[here](https://github.com/QuantEcon/QuantEcon.py/blob/master/quantecon/_lqcontrol.py).
410410

411411
The class takes lists of matrices that corresponds to $N$ Markov states.
412412

0 commit comments

Comments
 (0)