Skip to content

Commit

Permalink
create wheel on release
Browse files Browse the repository at this point in the history
  • Loading branch information
havardgulldahl committed Sep 4, 2016
1 parent a5c4cd7 commit 48b6325
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ echo "RUNNING TESTS FOR RELEASE v$VERSION"
echo "=======================";
PYTHONPATH=src py.test tests/ || err "Tests failed";
tests/fusetest.sh || err "FUSE tests failed";
tests/clitest.sh || err "CLI tests failed";


confirm "Continue with release of v$VERSION?" || exit 0;
Expand All @@ -36,7 +37,7 @@ echo "RELEASE JOTTALIB AND JOTTACLOUDCLIENT VERSION $VERSION:"
echo "=======================";
printf "Uploading cheese to pypi";
printf "... jottalib ";
python setup.py sdist upload || err "jottalib setup.py upload failed";
python setup.py sdist bdist_wheel upload || err "jottalib setup.py upload failed";
echo "=======================";
echo "Creating git tag $VERSION and pushing it to git server";
git tag -a "v$VERSION" -m "Version $VERSION release" || err "couldnt tag git tree";
Expand Down

0 comments on commit 48b6325

Please sign in to comment.