From 93ee68793464ca3b0490b5ae4644f6095a8c86c8 Mon Sep 17 00:00:00 2001 From: Steffen Rehberg Date: Sat, 10 Sep 2022 23:45:35 +0200 Subject: [PATCH] DOC: fix deprecation warnings - ANTIALIAS is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.LANCZOS instead. - Passing the rotation parameter of __init__() positionally is deprecated since Matplotlib 3.6; the parameter will become keyword-only two minor releases later. --- 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) ###############################################################################