diff --git a/.github/workflows/weekly-preview.yml b/.github/workflows/weekly-preview.yml index f2ba5e314a..c631982745 100644 --- a/.github/workflows/weekly-preview.yml +++ b/.github/workflows/weekly-preview.yml @@ -13,10 +13,10 @@ jobs: with: ref: dev fetch-depth: 0 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.9' - name: Install setuptools run: | python -m pip install --user --upgrade setuptools wheel @@ -33,7 +33,7 @@ jobs: export YEAR_WEEK=$(date +'%y%U') echo "Year week for tag is ${YEAR_WEEK}" if ! [[ $YEAR_WEEK =~ ^[0-9]{4}$ ]] ; then echo "Wrong 'year week' format. Should be 4 digits."; exit 1 ; fi - git tag "1.3.dev${YEAR_WEEK}" + git tag "1.4.dev${YEAR_WEEK}" git log -1 git tag --list python setup.py sdist bdist_wheel diff --git a/CITATION.cff b/CITATION.cff index d28f403fae..cac47faae4 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,8 +6,8 @@ title: "MONAI: Medical Open Network for AI" abstract: "AI Toolkit for Healthcare Imaging" authors: - name: "MONAI Consortium" -date-released: 2023-06-08 -version: "1.2.0" +date-released: 2023-10-12 +version: "1.3.0" identifiers: - description: "This DOI represents all versions of MONAI, and will always resolve to the latest one." type: doi diff --git a/tests/test_bundle_download.py b/tests/test_bundle_download.py index 89dea8e653..a468d53108 100644 --- a/tests/test_bundle_download.py +++ b/tests/test_bundle_download.py @@ -28,6 +28,7 @@ assert_allclose, command_line_tests, skip_if_downloading_fails, + skip_if_no_cuda, skip_if_quick, ) @@ -156,6 +157,7 @@ def test_monaihosting_source_download_bundle(self, bundle_files, bundle_name, ve self.assertTrue(os.path.exists(file_path)) +@skip_if_no_cuda class TestLoad(unittest.TestCase): @parameterized.expand([TEST_CASE_4]) @skip_if_quick