From 3ce077b5d88508c575d2bcacc01f760b6bf976f0 Mon Sep 17 00:00:00 2001 From: Eric Bezzam Date: Tue, 9 Jul 2024 12:10:46 +0000 Subject: [PATCH] Update numpy. --- setup.py | 2 +- test/test_algos.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d1ab6d68..263d421a 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ python_requires=">=3.8.1, <=3.11.9", install_requires=[ "opencv-python>=4.5.1.48", - "numpy>=1.22", + "numpy>=1.26", "scipy>=1.7.0", "image>=1.5.33", "matplotlib>=3.4.2", diff --git a/test/test_algos.py b/test/test_algos.py index d0be03d6..441277fd 100644 --- a/test/test_algos.py +++ b/test/test_algos.py @@ -33,7 +33,7 @@ _n_iter = 5 # classical algorithms -standard_algos = [GradientDescent, NesterovGradientDescent, ADMM] +standard_algos = [GradientDescent, NesterovGradientDescent, FISTA, ADMM] @pytest.mark.parametrize("algorithm", standard_algos)