From dbe7add8c9647237a7d967ce91100530cc9d2137 2024-03-04 11:02:11 From: Matthias Bussonnier Date: 2024-03-04 11:02:11 Subject: [PATCH] Add a matpltolib optional target dependency Would help with https://github.com/ipython/matplotlib-inline/issues/4 --- diff --git a/pyproject.toml b/pyproject.toml index 151c61c..3e4717d 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]", ]