Skip to content

Commit

Permalink
fix: adds lower bounds on packages in pyproject.toml (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Aug 26, 2024
1 parent 0f0b355 commit ff159d2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ all = [

bergamo = [
"scanimage-tiff-reader==1.4.1.4",
"numpy",
"numpy >= 1.26.4",
]

bruker = [
Expand All @@ -53,21 +53,21 @@ bruker = [

mesoscope = [
"aind-metadata-mapper[bergamo]",
"pillow",
"pillow >= 10.4.0",
"tifffile==2024.2.12 ; python_version >= '3.9'",
]

openephys = [
"h5py",
"np_session",
"npc_ephys ; python_version >= '3.9'",
"scipy",
"pandas",
"numpy",
"h5py >= 3.11.0",
"np_session >= 0.1.39",
"npc_ephys >= 0.1.18 ; python_version >= '3.9'",
"scipy >= 1.11.0",
"pandas >= 2.2.2",
"numpy >= 1.26.4",
]

dynamicrouting = [
"pyyaml>=6.0.0",
"pyyaml >= 6.0.0",
]

[tool.setuptools.packages.find]
Expand Down
1 change: 1 addition & 0 deletions scripts/singularity_build.def
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ Stage: build

%post
cd ${SINGULARITY_ROOTFS}/aind-metadata-mapper
pip install --upgrade pip
pip install .[all] --no-cache-dir
rm -rf ${SINGULARITY_ROOTFS}/aind-metadata-mapper

0 comments on commit ff159d2

Please sign in to comment.