From 52f33ac320693331c006060c151b97a1a2eaa57f Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sun, 31 Mar 2019 15:26:23 -0400 Subject: [PATCH] beta release to pypi --- update.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 update.sh diff --git a/update.sh b/update.sh new file mode 100644 index 0000000000..4eaf1149d0 --- /dev/null +++ b/update.sh @@ -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 + +