-
Notifications
You must be signed in to change notification settings - Fork 79
Home
Sarthak Pati edited this page Nov 1, 2024
·
9 revisions
Welcome to the GaNDLF wiki!
- Full documentation: https://gandlf.org/
- If you are moving from the older CBICA repository, please follow this guide to rebase your current fork.
- The version file should have the latest development version information. As far as possible, GaNDLF follows Semantic Versioning.
- Update the version file to remove
"-dev"
from the__version__
variable, and change to whatever number the version needs to be tagged to. -
Create a new release of the main development branch using the new number referred to in the
__version__
variable.
- Choose a tag, which should be the same as the value of
__version__
in theversion.py
file.- NOTE: Do NOT tag using git, and use this mechanism to ensure the CD scripts run properly for PyPi.
- Give a meaningful title.
- Use the option "Generate release notes" on GitHub.
- Select appropriate options (usually, just
Set as the latest release
is fine). - Publish the release.
- Update the
version.py
file to add"-dev"
in the__version__
variable, and increase the version number as appropriate. This will be used for nightly publishing of development builds. Ensure that the new version is also updated in all sample configurations and in the testing configurations so that unit tests will pass.
- For simplicity, one can use the
gandlf_updateVersion
script.
- All common installations are handled by a composite action in this file.
- For any changes to dependencies, please update the section "Install dependencies and package" in the above file.
- Depending on where new CI/CD tests need to be updated/added, please take a look at the other workflows.