Skip to content

Commit 615518a

Browse files
authored
MAINT: upgrade anaconda==2024.10 and python=3.12 (#182)
* update to anaconda=2024.10 * disabl build cache * fix python for linkchecker * update no-execute to skip-execution * re-enable build cache
1 parent c343b54 commit 615518a

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.11"
21+
python-version: "3.12"
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.11"
15+
python-version: "3.12"
1616
environment-file: environment.yml
1717
activate-environment: quantecon
1818
- name: Install latex dependencies

.github/workflows/execution.yml

Lines changed: 2 additions & 2 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.11"]
14+
python-version: ["3.12"]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
fail-fast: false
5454
matrix:
5555
os: ["macos-latest"]
56-
python-version: ["3.11"]
56+
python-version: ["3.12"]
5757
steps:
5858
- name: Checkout
5959
uses: actions/checkout@v4

.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.11"]
16+
python-version: ["3.12"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323
auto-update-conda: true
2424
auto-activate-base: true
2525
miniconda-version: 'latest'
26-
python-version: "3.11"
26+
python-version: "3.12"
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.11"
19+
python-version: "3.12"
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.11
6-
- anaconda=2024.02
5+
- python=3.12
6+
- anaconda=2024.10
77
- pip
88
- pip:
99
- jupyter-book==0.15.1
1010
- docutils==0.17.1
11-
- quantecon-book-theme==0.7.1
11+
- quantecon-book-theme==0.7.2
1212
- sphinx-tojupyter==0.3.0
1313
- sphinxext-rediraffe==0.2.7
1414
- sphinx-exercise==0.4.1

lectures/matsuyama.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ In order to use this, we recommend to run this notebook locally.
799799
```
800800

801801
```{code-cell} ipython3
802-
:class: no-execute
802+
:tags: [skip-execution]
803803
804804
def interact_attraction_basis(ρ=0.2, maxiter=250, npts=250):
805805
# Create the figure and axis that we will plot on
@@ -818,7 +818,7 @@ def interact_attraction_basis(ρ=0.2, maxiter=250, npts=250):
818818
```
819819

820820
```{code-cell} ipython3
821-
:class: no-execute
821+
:tags: [skip-execution]
822822
823823
fig = interact(interact_attraction_basis,
824824
ρ=(0.0, 1.0, 0.05),

0 commit comments

Comments
 (0)