-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: lower min version of onnxruntime
- Loading branch information
1 parent
03f4d84
commit 9d80531
Showing
5 changed files
with
14 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.1.2' | ||
__version__ = '1.1.3' |
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 @@ | ||
[tool.poetry] | ||
name = "HSF" | ||
version = "1.1.2" | ||
version = "1.1.3" | ||
description = "A simple yet exhaustive segmentation tool of the Hippocampal Subfields in T1w and T2w MRIs." | ||
authors = ["Clément POIRET <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -28,8 +28,8 @@ wget = "^3.2" | |
antspyx = ">0.3.0" | ||
xxhash = "^3.2.0" | ||
rich = ">11.0.0" | ||
onnxruntime = {version = "^1.14.0", optional = true} | ||
onnxruntime-gpu = {version = "^1.14.0", optional = true} | ||
onnxruntime = {version = ">=1.8.0", optional = true} | ||
onnxruntime-gpu = {version = ">=1.8.0", optional = true} | ||
deepsparse = {version = "^1.4.0", optional = true} | ||
|
||
[tool.poetry.extras] | ||
|
@@ -50,3 +50,7 @@ omit = ["hsf/welcome.py"] | |
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
# The command to install deps manually | ||
# pip install hsf --no-deps | ||
# pip install "torchio>=0.18.56" "roiloc>0.2.8" "hydra-core>=1.1.1" "wget>=3.2" "antspyx>0.3.0" "xxhash>=3.2.0" "rich>11.0.0" "onnxruntime>=1.14.0" |
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
|
||
def test_version(): | ||
assert __version__ == '1.1.2' | ||
assert __version__ == '1.1.3' | ||
|
||
|
||
# SETUP FIXTURES | ||
|