From 6fdc348009305cadc3626bb954168d7e89959d5e Mon Sep 17 00:00:00 2001 From: ryanking13 Date: Mon, 19 May 2025 19:57:51 +0900 Subject: [PATCH 1/2] update readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 8e91430..024dbdb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ +## DISCLAIMER + +This project is no longer used in Pyodide as of Pyodide v0.28 (see [issue#65](https://github.com/pyodide/matplotlib-pyodide/issues/65#issuecomment-2532463697)). + +The default matplotlib backend for Pyodide is now the patched version of `webagg` backend. If you were using `matplotlib_pyodide` in your code, +simply removing the `matplotlib.use('module://matplotlib_pyodide...')` line should be enough to make your code work with the new backend. + +If it doesn't, try replacing it with `matplotlib.use('webagg')`. + # matplotlib-pyodide [![PyPI Latest Release](https://img.shields.io/pypi/v/matplotlib-pyodide.svg)](https://pypi.org/project/matplotlib-pyodide/) From 51d664ffc481d2dad379a7f08eb00801988f19e4 Mon Sep 17 00:00:00 2001 From: ryanking13 Date: Mon, 19 May 2025 19:58:52 +0900 Subject: [PATCH 2/2] update --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 024dbdb..0cd1c3e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ ## DISCLAIMER This project is no longer used in Pyodide as of Pyodide v0.28 (see [issue#65](https://github.com/pyodide/matplotlib-pyodide/issues/65#issuecomment-2532463697)). +We don't accept any new features or bug fixes. The project is archived and will not be maintained anymore. The default matplotlib backend for Pyodide is now the patched version of `webagg` backend. If you were using `matplotlib_pyodide` in your code, simply removing the `matplotlib.use('module://matplotlib_pyodide...')` line should be enough to make your code work with the new backend.