Skip to content

Commit 5b336d1

Browse files
committed
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]>
1 parent 1cbb8be commit 5b336d1

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
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

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 = ['py39', 'py310', 'py311', 'py312', 'py313']
11+
target-version = ['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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ project_urls =
1616
Source Code=https://github.com/Project-MONAI/monai-deploy-app-sdk
1717

1818
[options]
19-
python_requires = >=3.9, <3.14
19+
python_requires = >=3.10, <3.14
2020
# for compiling and develop setup only
2121
# no need to specify the versions so that we could
2222
# compile for multiple targeted versions.

0 commit comments

Comments
 (0)