Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add platform-specific constraints to setup.cfg #8260

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ all =
tqdm>=4.47.0
lmdb
psutil
cucim-cu12; python_version >= '3.9' and python_version <= '3.10'
cucim-cu12; platform_system == "Linux" and python_version >= '3.9' and python_version <= '3.10'
openslide-python
tifffile
imagecodecs
tifffile; platform_system == "Linux" or platform_system == "Darwin"
KumoLiu marked this conversation as resolved.
Show resolved Hide resolved
imagecodecs; platform_system == "Linux" or platform_system == "Darwin"
pandas
einops
transformers>=4.36.0, <4.41.0; python_version <= '3.10'
Expand All @@ -78,7 +78,7 @@ all =
pynrrd
pydicom
h5py
nni
nni; platform_system == "Linux" and "arm" not in platform_machine and "aarch" not in platform_machine
optuna
onnx>=1.13.0
onnxruntime; python_version <= '3.10'
Expand Down Expand Up @@ -116,13 +116,13 @@ lmdb =
psutil =
psutil
cucim =
cucim-cu12
cucim-cu12; platform_system == "Linux" and python_version >= '3.9' and python_version <= '3.10'
openslide =
openslide-python
tifffile =
tifffile
tifffile; platform_system == "Linux" or platform_system == "Darwin"
imagecodecs =
imagecodecs
imagecodecs; platform_system == "Linux" or platform_system == "Darwin"
pandas =
pandas
einops =
Expand Down Expand Up @@ -152,7 +152,7 @@ pydicom =
h5py =
h5py
nni =
nni
nni; platform_system == "Linux" and "arm" not in platform_machine and "aarch" not in platform_machine
optuna =
optuna
onnx =
Expand Down
Loading