diff --git a/README.rst b/README.rst
index e5cda97..349deb4 100644
--- a/README.rst
+++ b/README.rst
@@ -220,6 +220,10 @@ Changelogs
HSF
---
+**Version 1.1.3**
+
+* Lower onnxruntime dependency to min 1.8.0
+
**Version 1.1.2**
* ***BREAKING CHANGE***: HSF needs to be installed using extra dependencies depending on the backend you want to use.
diff --git a/docs/index.md b/docs/index.md
index b9216ca..911dd2f 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -5,7 +5,7 @@
Hippocampal Segmentation Factory
- Current HSF version: 1.1.2
+ Current HSF version: 1.1.3
Built-in Models version: 3.0.0
Models in the Hub: 6
diff --git a/hsf/__init__.py b/hsf/__init__.py
index 7b344ec..7bb021e 100644
--- a/hsf/__init__.py
+++ b/hsf/__init__.py
@@ -1 +1 @@
-__version__ = '1.1.2'
+__version__ = '1.1.3'
diff --git a/pyproject.toml b/pyproject.toml
index dd647d1..0507d2a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -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 "]
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"
diff --git a/tests/test_hsf.py b/tests/test_hsf.py
index 700784e..bedcac1 100644
--- a/tests/test_hsf.py
+++ b/tests/test_hsf.py
@@ -16,7 +16,7 @@
def test_version():
- assert __version__ == '1.1.2'
+ assert __version__ == '1.1.3'
# SETUP FIXTURES