From 20ff6dd2f871fc8effc3e18b34a2f42a60631bc5 Mon Sep 17 00:00:00 2001 From: Matthew Brett Date: Sat, 24 Jun 2023 09:19:25 +0100 Subject: [PATCH] NEWS entry for Matplotlib plot detection --- NEWS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index 2958cab1b..92721e726 100644 --- a/NEWS.md +++ b/NEWS.md @@ -17,9 +17,9 @@ - Behavior change: Previously, a Matplotlib plot would only be automatically displayed (without `plt.show()`) if there was a final standalone expression returning a Matplotlib object, and that expression did not have a final - semicolon. With this update, any standalone expression returning - a Matplotlib object, with or without a semicolon, will cause chunk to display - the plot automatically. See above for discussion. + semicolon. With this update, Reticulate will display any pending Matplotlib + plot. See above, and [Matplotlib plot + PR](https://github.com/rstudio/reticulate/pull/1401) for discussion. - Fix: the knitr engine now automatically calls `plt.show()` for matplotlib bar plots, like it does for other matplotlib plot types (#1391).