Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update version string (e.g. for CHANGELOG link) in pyproject.toml (#630)
There is a version-specific CHANGELOG link in the `pyproject.toml`. This PR makes sure the version will be changed appropriately by the update-version.sh script. After this change, running "ci/release/update-version.sh" in branch 23.12 followed by ``` grep -r "23\.12\|23\.12|0\.35" --exclude=CHANGELOG.md --exclude-dir=.git . ``` Results in only the following remaining "23.12" version strings, but these are all expected and should remain. They are part of `FutureWarning` messages about the specific release in which a feature was deprecated or is scheduled to be removed. ``` ./python/cucim/src/cucim/skimage/filters/lpi_filter.py: removed_version="2023.12.00", ./python/cucim/src/cucim/skimage/data/_binary_blobs.py: {"seed": "rng"}, deprecated_version="23.12.00", removed_version="24.12.00" ./python/cucim/src/cucim/skimage/morphology/_skeletonize.py: {"seed": "rng"}, deprecated_version="23.12", removed_version="24.12" ./python/cucim/src/cucim/skimage/util/noise.py: {"seed": "rng"}, deprecated_version="23.12", removed_version="24.12" ``` I will make a separate PR to carry out the scheduled function removal for 2023.12.00 mentioned in the `lpi_filter.py` output. Authors: - Gregory Lee (https://github.com/grlee77) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: #630
- Loading branch information