File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments