-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependencies and update documentation (#64)
* add reference for mantis * replace lapsolver with scipy lapsolver is abandoned and does not work with new python versions * update dependencies * update docs * test on python 3.11 * drop python 3.9 support * do not update example setup script it checks out a previous commit
- Loading branch information
Showing
6 changed files
with
44 additions
and
28 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 |
---|---|---|
|
@@ -6,12 +6,11 @@ build-backend = "setuptools.build_meta" | |
name = "viscy" | ||
description = "computer vision for image-based phenotyping of single cells" | ||
readme = "README.md" | ||
# cannot build on 3.11 due to https://github.com/cheind/py-lapsolver/pull/18 | ||
requires-python = ">=3.9,!=3.11" | ||
requires-python = ">=3.10" | ||
license = { file = "LICENSE" } | ||
authors = [{ name = "CZ Biohub SF", email = "[email protected]" }] | ||
dependencies = [ | ||
"iohub==0.1.0.dev4", | ||
"iohub==0.1.0rc0", | ||
"torch>=2.0.0", | ||
"timm>=0.9.5", | ||
"tensorboard>=2.13.0", | ||
|
@@ -20,21 +19,17 @@ dependencies = [ | |
"jsonargparse[signatures]>=4.20.1", | ||
"scikit-image", | ||
"matplotlib", | ||
"ipykernel", # used by demo_dlmbl | ||
"graphviz", # used by demo_dlmbl | ||
"torchview", # used by demo_dlmbl | ||
] | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.optional-dependencies] | ||
metrics = [ | ||
"cellpose==2.1.0", | ||
"lapsolver==1.1.0", | ||
"scikit-learn>=1.1.3", | ||
"scipy>=1.8.0", | ||
"torchmetrics[detection]>=1.0.0", | ||
"ptflops>=0.7", | ||
] | ||
visual = ["ipykernel", "graphviz", "torchview"] | ||
dev = ["pytest", "pytest-cov", "hypothesis", "profilehooks", "onnxruntime"] | ||
|
||
[project.scripts] | ||
|
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