GitHub

Original file line numberDiff line numberDiff line change

@@ -14,7 +14,7 @@ jobs:

1414

auto-update-conda: true

1515

auto-activate-base: true

1616

miniconda-version: 'latest'

17-

python-version: "3.10"

17+

python-version: "3.11"

1818

environment-file: environment.yml

1919

activate-environment: quantecon

2020

- name: Build HTML

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ jobs:

1111

auto-update-conda: true

1212

auto-activate-base: true

1313

miniconda-version: 'latest'

14-

python-version: "3.10"

14+

python-version: "3.11"

1515

environment-file: environment.yml

1616

activate-environment: quantecon

1717

- name: Install latex dependencies

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

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ jobs:

1111

fail-fast: false

1212

matrix:

1313

os: ["macos-latest"]

14-

python-version: ["3.10"]

14+

python-version: ["3.11"]

1515

steps:

1616

- name: Checkout

1717

uses: actions/checkout@v2

Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@ jobs:

1111

fail-fast: false

1212

matrix:

1313

os: ["windows-latest"]

14-

python-version: ["3.10"]

14+

python-version: ["3.11"]

1515

steps:

1616

- name: Checkout

1717

uses: actions/checkout@v2

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@v3

@@ -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)

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

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

Original file line numberDiff line numberDiff line change

@@ -21,7 +21,8 @@ sphinx:

2121

linkcheck_ignore: ['https://github.com/matplotlib/matplotlib/blob/v3.6.2/lib/matplotlib/axes/_axes.py#L1417-L1669',

2222

'https://ieeexplore.ieee.org/document/8757088',

2323

'https://www.sciencedirect.com/science/article/pii/S1477388021000177',

24-

'https://keras.io/']

24+

'https://keras.io/',

25+

'https://data.oecd.org/']

2526

html_favicon: _static/lectures-favicon.ico

2627

html_theme: quantecon_book_theme

2728

html_static_path: ['_static']

Original file line numberDiff line numberDiff line change

@@ -185,6 +185,7 @@ def f(x):

185185
186186

Functions without a return statement automatically return the special Python object `None`.

187187
188+

(pos_args)=

188189

### Keyword Arguments

189190
190191

```{index} single: Python; keyword arguments

Read the original on github.com ↗