diff --git a/docs/source/installation.rst b/docs/source/installation.rst index cd04172f..094f09bd 100755 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -474,11 +474,6 @@ or with ``pip`` via SPGL1 ----- - -.. warning:: - - ``SPGL1`` is not yet supported with Numpy 2. - `SPGL1 `_ is used to solve sparsity-promoting basis pursuit, basis pursuit denoise, and Lasso problems in :py:func:`pylops.optimization.sparsity.SPGL1` solver. diff --git a/pytests/test_sparsity.py b/pytests/test_sparsity.py index 00c7d944..ef4c0d6e 100644 --- a/pytests/test_sparsity.py +++ b/pytests/test_sparsity.py @@ -362,9 +362,6 @@ def test_ISTA_FISTA_multiplerhs(par): ) def test_SPGL1(par): """Invert problem with SPGL1""" - if int(np_version[0]) >= 2: - return - np.random.seed(42) Aop = MatrixMult(np.random.randn(par["ny"], par["nx"]))