summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/release.sh b/scripts/release.sh
index 5b37b6d..f3ace27 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -3,12 +3,6 @@
# Create the official release
#
-if [ -z "$(command -v pandoc 2> /dev/null)" ]; then
- >&2 echo "$0 requires http://pandoc.org/"
- >&2 echo "Please install it and make sure it is available on your \$PATH."
- exit 2
-fi
-
VERSION=$1
REPO=docker/docker-py
GITHUB_REPO=git@github.com:$REPO
@@ -37,11 +31,10 @@ if [[ $2 == 'upload' ]]; then
fi
-pandoc -f markdown -t rst README.md -o README.rst || exit 1
echo "##> sdist & wheel"
python setup.py sdist bdist_wheel
if [[ $2 == 'upload' ]]; then
echo '##> Uploading sdist to pypi'
twine upload dist/docker-$VERSION*
-fi \ No newline at end of file
+fi