In order to create conda package:
- Run:
conda build conda-recipe/ -c conda-forge
- Install locally with
conda install --use-local pytorch-3dunet -c conda-forge
(optional) - Upload to conda cloud:
anaconda upload /home/adrian/miniconda3/conda-bld/linux-64/pytorch-3dunet-<version>-py37_0.tar.bz2
- Make sure that
bumpversion
is installed in your conda env - Checkout master branch
- Run
bumpversion patch
(ormajor
orminor
) - Run
git push && git push --tags
(trigger Travis build) - The rest is going to be made by Travis (i.e. conda build + upload)