Skip to content

Commit

Permalink
7017 update releasing 1.3 (#7125)
Browse files Browse the repository at this point in the history
Fixes #7017


### Types of changes
<!--- Put an `x` in all the boxes that apply, and remove the not
applicable items -->
- [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 <[email protected]>
  • Loading branch information
wyli authored Oct 13, 2023
1 parent 865972f commit 8a70678
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/weekly-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions tests/test_bundle_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
assert_allclose,
command_line_tests,
skip_if_downloading_fails,
skip_if_no_cuda,
skip_if_quick,
)

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8a70678

Please sign in to comment.