From 48b6325b023d60f78d5a0bf586f5af1e8adb7a48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=CC=8Avard=20Gulldahl?= Date: Sun, 4 Sep 2016 14:34:52 +0200 Subject: [PATCH] create wheel on release --- release.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 3bb305e..8316096 100755 --- a/release.sh +++ b/release.sh @@ -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; @@ -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";