Skip to content

Commit 1f84150

Browse files
mmckyclaude
andcommitted
Pin quantecon_book_networks==1.6 to unblock input_output + networks
quantecon_book_networks 1.6 migrates off the removed `pkg_resources` module to the stdlib `importlib.resources`, so the package imports again on the anaconda 2026.06 stack (and remains compatible with 2025.12). This unblocks the input_output and networks lectures, whose execution aborted with `ModuleNotFoundError: No module named 'pkg_resources'` under the 2026.06 upgrade. Picks up the upstream fix from QuantEcon/quantecon_book_networks#21. Addresses cause 2 of #775. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent c1e7c63 commit 1f84150

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lectures/input_output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This lecture requires the following imports and installs before we proceed.
2020
```{code-cell} ipython3
2121
:tags: [hide-output]
2222
23-
!pip install quantecon_book_networks
23+
!pip install quantecon_book_networks==1.6
2424
!pip install quantecon
2525
!pip install pandas-datareader
2626
```

lectures/networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kernelspec:
1616
```{code-cell} ipython3
1717
:tags: [hide-output]
1818
19-
!pip install quantecon-book-networks pandas-datareader
19+
!pip install quantecon-book-networks==1.6 pandas-datareader
2020
```
2121

2222
## Outline

0 commit comments

Comments
 (0)