1313 runs-on : ubuntu-latest
1414 strategy :
1515 matrix :
16- python-version : ['3.9 ', '3.10 ', '3.11 ']
16+ python-version : ['3.10 ', '3.11 ', '3.12 ']
1717 steps :
1818 - uses : actions/checkout@v5
1919 with :
@@ -64,22 +64,22 @@ jobs:
6464 env :
6565 QUICKTEST : True
6666
67- - if : matrix.python-version == '3.9 ' && startsWith(github.ref, 'refs/tags/')
67+ - if : matrix.python-version == '3.10 ' && startsWith(github.ref, 'refs/tags/')
6868 name : Upload artifacts
6969 uses : actions/upload-artifact@v5
7070 with :
7171 name : dist
7272 path : dist/
7373
74- - if : matrix.python-version == '3.9 ' && startsWith(github.ref, 'refs/tags/')
74+ - if : matrix.python-version == '3.10 ' && startsWith(github.ref, 'refs/tags/')
7575 name : Check artifacts
7676 run : |
7777 ls -al dist/
7878 rm dist/monai*.tar.gz
7979 ls -al dist/
8080
8181 # remove publishing to Test PyPI as it is moved to blossom
82- # - if: matrix.python-version == '3.9 ' && startsWith(github.ref, 'refs/tags/')
82+ # - if: matrix.python-version == '3.10 ' && startsWith(github.ref, 'refs/tags/')
8383 # name: Publish to Test PyPI
8484 # uses: pypa/gh-action-pypi-publish@release/v1
8585 # with:
@@ -97,10 +97,10 @@ jobs:
9797 # full history so that we can git describe
9898 with :
9999 fetch-depth : 0
100- - name : Set up Python 3.9
100+ - name : Set up Python 3.10
101101 uses : actions/setup-python@v6
102102 with :
103- python-version : ' 3.9 '
103+ python-version : ' 3.10 '
104104 - shell : bash
105105 run : |
106106 find /opt/hostedtoolcache/* -maxdepth 0 ! -name 'Python' -exec rm -rf {} \;
0 commit comments