From: David Bremner Date: Sun, 8 Nov 2020 14:01:53 +0000 (-0400) Subject: release: call python3 instead of python X-Git-Tag: 0.31.1^0 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=40b75f50be35dd372547bf03b972059e88b6f19b release: call python3 instead of python Debian does not install /usr/bin/python by default any more. --- diff --git a/devel/release-checks.sh b/devel/release-checks.sh index f9dd6ade..23c29eaa 100755 --- a/devel/release-checks.sh +++ b/devel/release-checks.sh @@ -109,7 +109,7 @@ else fi echo -n "Checking that python bindings version is $VERSION... " -py_version=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"` +py_version=`python3 -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"` if [ "$py_version" = "$VERSION" ] then echo Yes.