Skip to content

Commit

Permalink
Merge pull request #2065 from silx-kit/security
Browse files Browse the repository at this point in the history
fix security hole
  • Loading branch information
kif authored Jan 31, 2024
2 parents a0fb45f + b96ccbb commit 9803a0a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ci/requirements_appveyor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--find-links http://www.silx.org/pub/wheelhouse

wheel
numpy
numpy >= 1.10
#cython
Pillow
h5py
Expand Down
4 changes: 1 addition & 3 deletions ci/requirements_gh.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions ci/requirements_rtd.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
numpy <1.19 ; python_version <= '3.5'
numpy; python_version>= '3.6'
numpy >= 1.10
h5py
fabio
sphinx
Expand Down
3 changes: 1 addition & 2 deletions ci/requirements_travis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ classifiers = ["Development Status :: 5 - Production/Stable",
]

dependencies = [
'numpy',
'numpy>=1.10',
'h5py',
'fabio',
"silx>=1.1; python_version < '3.12'",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
wheel
meson-python
ninja
numpy
numpy >= 1.10
cython >=0.29.31
fabio
scipy
Expand Down

0 comments on commit 9803a0a

Please sign in to comment.