From 5696769d2688e4f79166281b15b4c840fc3f1436 Mon Sep 17 00:00:00 2001 From: Danilo Tatoni <36413174+danilotat@users.noreply.github.com> Date: Sat, 21 Feb 2026 10:57:37 +0100 Subject: [PATCH] fix: matplotlib version for pip version higher than 24, address #27 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6888d67..b901c49 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,4 @@ deap>=1.3.0 scipy=1.3 cachetools>=3.1.1 scikit-learn>=0.21.3 -matplotlib==3.0.* +matplotlib>=3.0.0 diff --git a/setup.py b/setup.py index bb73e5e..bbacd8a 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,6 @@ 'scipy>=1.3', 'cachetools>=3.1.1', 'scikit-learn>=0.21.3', - 'matplotlib>=3.0.*' + 'matplotlib>=3.0.0' ] )