From 40b75f50be35dd372547bf03b972059e88b6f19b Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 8 Nov 2020 10:01:53 -0400 Subject: [PATCH] release: call python3 instead of python Debian does not install /usr/bin/python by default any more. --- devel/release-checks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.43.0