This is a stable version of the EMA workbench currently under development at Delft University of Technology.
If you are interested in using the most recent version of the workbench and would like to contribute to its further development, contact Jan Kwakkel at Delft University of Technology.
The workbench is available from pip. Version 1.x is compatible with both python 2 and 3, while the 2.x branch requires python 3.8 or newer.
Releases are published automatically when a tag is pushed to GitHub.
# Set next version number
export RELEASE=x.x.x
# Create tags
git commit --allow-empty -m "Release $RELEASE"
git tag -a $RELEASE -m "Version $RELEASE"
# Push
git push upstream --tags # for a fork
# use git push origin --tags if on origin