beta release to pypi

This commit is contained in:
William Falcon 2019-03-31 15:26:23 -04:00
parent 5a52290511
commit 52f33ac320
1 changed files with 20 additions and 0 deletions

20
update.sh Normal file
View File

@ -0,0 +1,20 @@
#!/bin/bash
version=$1
git commit -am "release v$version"
git tag $version -m "test_tube v$version"
git push --tags origin master
# push to pypi
rm -rf ./dist/*
python3 setup.py sdist
twine upload dist/*
# to update docs
# cd to root dir
# mkdocs gh-deploy