Skip to content

Commit 15f874d

Browse files
committed
Change testing version to support newer libraries
Signed-off-by: Eric Kerfoot <[email protected]>
1 parent 4cee099 commit 15f874d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test-modified.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python 3.9
20+
- name: Set up Python 3.10
2121
uses: actions/setup-python@v3
2222
with:
23-
python-version: 3.9
23+
python-version: 3.10
2424
- name: Install MONAI
2525
id: monai-install
2626
run: |
2727
which python
28-
python -m pip install --upgrade pip wheel
29-
python -m pip install -U torch torchvision torchaudio
28+
python -m pip install -U pip wheel
29+
python -m pip install torch torchvision torchaudio
3030
3131
python -m pip install -r https://raw.githubusercontent.com/Project-MONAI/MONAI/dev/requirements-dev.txt
3232
python -m pip install -r requirements.txt
@@ -39,9 +39,9 @@ jobs:
3939
python -c "import monai; monai.config.print_debug_info()"
4040
git fetch origin main
4141
git diff --name-only origin/main | while read line
42-
do
42+
do
4343
if [[ $line == *.ipynb ]]
44-
then
44+
then
4545
./runner.sh -p " -and -wholename './${line}'"
4646
fi
4747
done

0 commit comments

Comments
 (0)