From dbe7add8c9647237a7d967ce91100530cc9d2137 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Mon, 4 Mar 2024 12:02:09 +0100 Subject: [PATCH] Add a matpltolib optional target dependency Would help with https://github.com/ipython/matplotlib-inline/issues/4 --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 151c61ced61..3e4717d453d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,8 +108,11 @@ test_extra = [ "pandas", "trio", ] +matplotlib = [ + "matplotlib" +] all = [ - "ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,terminal]", + "ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,matplotlib]", "ipython[test,test_extra]", ]