From 9744f204feee03ccd176fd60352d1a427c927a4f Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:46:07 +0100 Subject: [PATCH 1/6] fix security hole related to an old version of numpy --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f08c551d7..0018f286b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ wheel meson-python ninja -numpy +numpy >= 1.10 cython >=0.29.31 fabio scipy From 48a4fe44ee5b3406f00d4dfbb5f2aa21c7097919 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:47:09 +0100 Subject: [PATCH 2/6] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cff314200..dc0ba1668 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = ["Development Status :: 5 - Production/Stable", ] dependencies = [ - 'numpy', + 'numpy>=1.10', 'h5py', 'fabio', "silx>=1.1; python_version < '3.12'", From 3acc335f18dd38496fdc97604366876de44b02a6 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:47:34 +0100 Subject: [PATCH 3/6] Update requirements_appveyor.txt --- ci/requirements_appveyor.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/requirements_appveyor.txt b/ci/requirements_appveyor.txt index ef519563b..2d858ba90 100644 --- a/ci/requirements_appveyor.txt +++ b/ci/requirements_appveyor.txt @@ -3,7 +3,7 @@ --find-links http://www.silx.org/pub/wheelhouse wheel -numpy +numpy >= 1.10 #cython Pillow h5py From b342b6e97d7eb08b6092bff984384d12ab25d321 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:48:05 +0100 Subject: [PATCH 4/6] Update requirements_gh.txt --- ci/requirements_gh.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/requirements_gh.txt b/ci/requirements_gh.txt index cf69d2ed8..4405611cf 100644 --- a/ci/requirements_gh.txt +++ b/ci/requirements_gh.txt @@ -5,9 +5,7 @@ --trusted-host www.edna-site.org wheel -numpy <1.19 ; python_version <= '3.5' -numpy <1.20 ; python_version <= '3.6' -numpy; python_version> '3.6' +numpy > 1.10 cython >=0.29.31 pillow lxml From 615b3fd6b6b4ef845cb81ba2bc2f334657670302 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:48:32 +0100 Subject: [PATCH 5/6] Update requirements_rtd.txt --- ci/requirements_rtd.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/requirements_rtd.txt b/ci/requirements_rtd.txt index e2c46eb72..23477d00f 100644 --- a/ci/requirements_rtd.txt +++ b/ci/requirements_rtd.txt @@ -1,5 +1,4 @@ -numpy <1.19 ; python_version <= '3.5' -numpy; python_version>= '3.6' +numpy >= 1.10 h5py fabio sphinx From b96ccbb6b8d9aa0fdf7bb70fd806121b0f8ea911 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Tue, 30 Jan 2024 16:48:57 +0100 Subject: [PATCH 6/6] Update requirements_travis.txt --- ci/requirements_travis.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/requirements_travis.txt b/ci/requirements_travis.txt index 9679ba19b..514031639 100644 --- a/ci/requirements_travis.txt +++ b/ci/requirements_travis.txt @@ -3,8 +3,7 @@ --find-links http://www.edna-site.org/pub/wheelhouse wheel -numpy <1.19 ; python_version <= '3.5' -numpy; python_version>= '3.6' +numpy >=1.10 cython (>=0.29.31) pillow lxml