Skip to content

Commit dc9849e

Browse files
authored
Project and doc changes to get ready to release 3.1 minor update (#551)
* Tests show that newest MONAI v1.5 is not compatible with Holoscan SDK v3.6 due to MONAI v1.5 limits torch <2.7, and the installed torch 2.6 has an older version of the cuda12 runtime, libcudart.so.12 at 12.4 which is not compatible with HSDK v3.6 (CUDA >=12.6.77). So need to limit HSDK dependency to ~=3.5.0 Signed-off-by: M Q <[email protected]> * Make Python 3.10 the min version for the code, while still at 3.9 for doc build. Signed-off-by: M Q <[email protected]> * Need set holoscan<=3.5 so that doc build with Python 3.9 may work Signed-off-by: M Q <[email protected]> * Still need to include Python3.9 for doc build, as temp fix Signed-off-by: M Q <[email protected]> * One more fix Signed-off-by: M Q <[email protected]> * last one? Signed-off-by: M Q <[email protected]> --------- Signed-off-by: M Q <[email protected]>
1 parent 7da6e97 commit dc9849e

File tree

6 files changed

+523
-524
lines changed

6 files changed

+523
-524
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Set up Python 3.9
17+
- name: Set up Python 3.10
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.10"
2121
- name: Setup Dev Environment
2222
run: |
2323
pip install virtualenv

docs/source/release_notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
```{toctree}
1111
:maxdepth: 1
1212
13+
v3.1.0
1314
v3.0.0
1415
```
1516
## Version 2.0

notebooks/tutorials/03_segmentation_app.ipynb

Lines changed: 515 additions & 517 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[tool.black]
1010
line-length = 120
11-
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
11+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
1212
include = '\.pyi?$'
1313
exclude = '''
1414
(

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
holoscan~=3.0
2-
holoscan-cli~=3.0
1+
holoscan<=3.5.0
2+
holoscan-cli<=3.5.0
33
numpy>=1.21.6
44
colorama>=0.4.1
55
tritonclient[all]>=2.53.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ python_requires = >=3.9, <3.14
2424
# cucim
2525
install_requires =
2626
numpy>=1.21.6
27-
holoscan~=3.0
28-
holoscan-cli~=3.0
27+
holoscan<=3.5.0
28+
holoscan-cli<=3.5.0
2929
colorama>=0.4.1
3030
tritonclient[all]>=2.53.0
3131
typeguard>=3.0.0

0 commit comments

Comments
 (0)