https://github.com/hammerlab/vaxrank
Raw File
Tip revision: 23fe92f5dae04ead2d5d2df0231855eea1921926 authored by Alex Rubinsteyn on 19 August 2020, 19:40:48 UTC
Merge pull request #191 from openvax/use-isovar-for-all-variant-counts
Tip revision: 23fe92f
RELEASING.md
# Releasing Vaxrank

This document explains what do once your [Pull Request](https://www.atlassian.com/git/tutorials/making-a-pull-request/) has been reviewed and all final changes applied. Now you're ready merge your branch into master and release it to the world:

0. Make sure that you have `pandoc` and `pypandoc` installed: this is needed for readme markdown on PyPI. (See [here](http://pandoc.org/installing.html) and [here](https://pypi.python.org/pypi/pypandoc), respectively, for instructions.)
1. Bump the [version](http://semver.org/) on __init__.py, as part of the PR you want to release.
2. Merge your branch into master.
3. Run `python setup.py sdist upload`, which pushes the newest release to PyPI.
back to top