python3Packages.matplotlib: fix the minimum Python version

https://matplotlib.org/stable/devel/min_dep_policy.html says that
Matplotlib 3.7 does support Python 3.8.
This commit is contained in:
Ivan Kozik
2023-05-21 23:00:50 +00:00
parent 11c934a00e
commit fcfb25c7ba
@@ -80,7 +80,7 @@ buildPythonPackage rec {
pname = "matplotlib";
format = "pyproject";
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;