From 8a70678baa976a01274f55837e339f2c2975dec7 Mon Sep 17 00:00:00 2001 From: Wenqi Li <831580+wyli@users.noreply.github.com> Date: Fri, 13 Oct 2023 13:17:09 +0100 Subject: [PATCH] 7017 update releasing 1.3 (#7125) Fixes #7017 ### Types of changes - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Wenqi Li --- .github/workflows/weekly-preview.yml | 6 +++--- CITATION.cff | 4 ++-- tests/test_bundle_download.py | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) 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