Skip to content

Commit 2b22163

Browse files
committed
Keeping Python 3.9 as min for the docbuild to succeed for now.
The doc build requirements need to be fully examined and updated in another PR Signed-off-by: M Q <[email protected]>
1 parent 1e10d0c commit 2b22163

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.10
17+
- name: Set up Python 3.9
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: "3.10"
20+
python-version: "3.9"
2121
- name: Setup Dev Environment
2222
run: |
2323
pip install virtualenv

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version: 2
88
build:
99
os: ubuntu-22.04
1010
tools:
11-
python: "3.10"
11+
python: "3.9"
1212
# You can also specify other tool versions:
1313
# nodejs: "20"
1414
# rust: "1.70"

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.10, <3.14
19+
python_requires = >=3.9, <3.14
2020
packages = find:
2121
# for compiling and develop setup only
2222
# no need to specify the versions so that we could

0 commit comments

Comments
 (0)