Skip to content

Commit

Permalink
setup: pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Sep 10, 2024
1 parent 1357625 commit 720b995
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.25.2
- setup: officially support numpy 2
- setup: pin dependencies
0.25.1
- fix: catch ValueError when computing relative path on different anchors
- ref: replace np.string_ with np.bytes_
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ classifiers = [
]
license = {text = "MIT"}
dependencies = [
"h5py>=3.0.0", # BSD
"hdf5plugin>=3.3.1", # MIT and others (per plugin)
"mahotas", # MIT
"numba", # BSD
"numpy>=1.21", # BSD
"opencv-python-headless", # Apache 2.0
"scikit-image", # BSD
"scipy>=1.8.0", # BSD
"h5py>=3.0.0, <4", # BSD
"hdf5plugin>=3.3.1, <6", # MIT and others (per plugin)
"mahotas>=1, <2", # MIT
"numba>=0.60, <1", # BSD
"numpy>=1.21, <3", # BSD
"opencv-python-headless>=4, <5", # Apache 2.0
"scikit-image>=0.24, <1", # BSD
"scipy>=1.8.0, <2", # BSD
]
dynamic = ["version"]

Expand Down

0 comments on commit 720b995

Please sign in to comment.