Skip to content

Commit 1c8b1c7

Browse files
committed
MAINT: rm imageio pin and switch to durations kwarg.
1 parent 4d468fb commit 1c8b1c7

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

content/tutorial-x-ray-image-processing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ notebook:
187187

188188
```{code-cell} ipython3
189189
GIF_PATH = os.path.join(DIR, "xray_image.gif")
190-
imageio.mimwrite(GIF_PATH, combined_xray_images_1, format= ".gif", fps=1)
190+
imageio.mimwrite(GIF_PATH, combined_xray_images_1, format= ".gif", duration=1000)
191191
```
192192

193193
Which gives us:

environment.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ dependencies:
88
- matplotlib
99
- pandas
1010
- statsmodels
11-
# Temporary version limit, see https://github.com/numpy/numpy-tutorials/issues/179
12-
- imageio<2.28
11+
- imageio
1312
# For building the site
1413
- sphinx<5
1514
- myst-nb

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ scipy
44
matplotlib
55
pandas
66
statsmodels
7-
# temporary version limit, see https://github.com/numpy/numpy-tutorials/issues/179
8-
imageio<2.28
7+
imageio
98
# For supporting .md-based notebooks
109
jupytext

0 commit comments

Comments
 (0)