Use Python 3 instead of Python 2 (EOL'd)

This commit is contained in:
Christian Parpart
2020-01-15 14:20:43 +01:00
parent 9d9a7ebe25
commit 44e892634b
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ for new_proof in $(git diff origin/develop --name-only test/formal/)
do
set +e
echo "Proving $new_proof..."
output=$(python "$new_proof")
output=$(python3 "$new_proof")
result=$?
set -e