From 28f68c6fbfe1df623f50daffacb4075289b10f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 21 Jun 2019 14:31:54 +0200 Subject: [PATCH] update_version.sh: Use Python 3 in example command This makes it possible to run the command outside of a Python 3 virtualenv. --- update_version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_version.sh b/update_version.sh index fb2ae8f..a8218f1 100755 --- a/update_version.sh +++ b/update_version.sh @@ -19,4 +19,4 @@ echo git commit -m \'Bumped version to $VERSION\' setup.py blender_cloud/__init_ echo git tag -a version-$VERSION -m \'Tagged version $VERSION\' echo echo "To build a distribution ZIP:" -echo python setup.py bdist +echo python3 setup.py bdist