- Note: pandoc must be installed before this works. You can install with brew or apt-get or yum.
This section is only relevant for project maintainers. To create a new release, do the following:
-
Bump the
__version__
inontobio/__init__.py
. -
Run the following commands:
TAG=v`python setup.py --version`
git add ontobio/__init__.py
git commit --message="Upgrade to $TAG"
git push
git tag --annotate $TAG --message="Upgrade to $TAG"
git push --tags