From 8d0966f70b12665c6a5b7d586525c74173334585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Morais?= Date: Tue, 20 May 2025 10:10:20 +0200 Subject: [PATCH] docs: fix wrong package name --- doc/source/how-to/packaging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/how-to/packaging.rst b/doc/source/how-to/packaging.rst index 6b9e9c2d0..0c7509cdd 100644 --- a/doc/source/how-to/packaging.rst +++ b/doc/source/how-to/packaging.rst @@ -293,7 +293,7 @@ You use the decorator with a method like this: self._a = np.arange(sz) self._b = np.arange(sz) - @requires_package("emoo") + @requires_package("matplotlib") def plot(self): """Plot the internal arrays ``_a`` and ``_b``.