From 0d63bca83fa1c35933f221c2f617e81050bec761 Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Sat, 10 Sep 2022 18:25:55 -0600 Subject: [PATCH] Backport PR #23855: DOC: fix deprecation warnings --- tutorials/intermediate/autoscale.py | 2 +- tutorials/introductory/images.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/intermediate/autoscale.py b/tutorials/intermediate/autoscale.py index c698eb5c35ab..0f4dda87d183 100644 --- a/tutorials/intermediate/autoscale.py +++ b/tutorials/intermediate/autoscale.py @@ -164,7 +164,7 @@ fig, ax = plt.subplots() collection = mpl.collections.StarPolygonCollection( - 5, 0, [250, ], # five point star, zero angle, size 250px + 5, rotation=0, sizes=(250,), # five point star, zero angle, size 250px offsets=np.column_stack([x, y]), # Set the positions offset_transform=ax.transData, # Propagate transformations of the Axes ) diff --git a/tutorials/introductory/images.py b/tutorials/introductory/images.py index f40b208dd225..236bc3b4bac2 100644 --- a/tutorials/introductory/images.py +++ b/tutorials/introductory/images.py @@ -245,7 +245,7 @@ from PIL import Image img = Image.open('../../doc/_static/stinkbug.png') -img.thumbnail((64, 64), Image.ANTIALIAS) # resizes image in-place +img.thumbnail((64, 64), Image.Resampling.LANCZOS) # resizes image in-place imgplot = plt.imshow(img) ###############################################################################