-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for numpy 2, update all deps (#1139)
- Loading branch information
Showing
10 changed files
with
41 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# pinned dependencies that are optional. used to reproduce an entire development environment to use HDMF | ||
tqdm==4.66.3 | ||
zarr==2.17.1 | ||
linkml-runtime==1.7.4; python_version >= "3.9" | ||
tqdm==4.66.4 | ||
zarr==2.18.2 | ||
linkml-runtime==1.7.7; python_version >= "3.9" | ||
schemasheets==0.2.1; python_version >= "3.9" | ||
oaklib==0.5.32; python_version >= "3.9" | ||
oaklib==0.6.10; python_version >= "3.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# pinned dependencies to reproduce an entire development environment to use HDMF | ||
h5py==3.10.0 | ||
h5py==3.11.0 | ||
importlib-resources==6.1.0; python_version < "3.9" # TODO: remove when minimum python version is 3.9 | ||
jsonschema==4.19.1 | ||
numpy==1.26.1 | ||
pandas==2.1.2 | ||
jsonschema==4.22.0 | ||
numpy==1.26.4 # TODO: numpy 2.0.0 is supported by hdmf but incompatible with pandas and scipy | ||
pandas==2.2.2; python_version >= "3.9" | ||
pandas==2.1.2; python_version < "3.8" # TODO: remove when minimum python version is 3.9 | ||
ruamel.yaml==0.18.2 | ||
scipy==1.11.3 | ||
scipy==1.14.0; python_version >= "3.10" | ||
scipy==1.11.3; python_version < "3.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters