From 7b608a08d781a47d0ee27ecc27807042392b2124 Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Fri, 20 Sep 2024 16:30:06 +0200 Subject: [PATCH] Unpin matplotlib --- requirements.txt | 8 ++------ setup.py | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 80ab225..758555e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,6 @@ numpy<2 -matplotlib<3.5 -scipy -openturns -jupyterlab -nbconvert +matplotlib +openturns>=1.23 black pre-commit flake8 @@ -12,5 +9,4 @@ numpydoc pandas tqdm shapely -lxml-html-clean joblib diff --git a/setup.py b/setup.py index ef04ea3..dc4c08f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ keywords=["OpenTURNS", "benchmark"], version="0.1.1", packages=find_packages(), - install_requires=["numpy", "matplotlib", "scipy", "openturns>=1.16"], + install_requires=["numpy<2", "matplotlib", "openturns>=1.23"], description="Benchmark problems for OpenTURNS", long_description=long_description, long_description_content_type="text/markdown",