Revert "Add fallback to python3 in amalgamate.py"

This reverts commit ddeda78478510cb077df9ed6edb19e19bdd7cf36.
This commit is contained in:
Felföldy Tibor 2025-01-26 19:43:32 +01:00
parent dee97fe92a
commit 16e1b7001f

View File

@ -5,8 +5,7 @@ import sys
import time import time
from typing import List, Dict from typing import List, Dict
if os.system("python prebuild.py") != 0: assert os.system("python prebuild.py") == 0
assert os.system("python3 prebuild.py") == 0
ROOT = 'include/pocketpy' ROOT = 'include/pocketpy'
PUBLIC_HEADERS = ['config.h', 'export.h', 'linalg.h', 'pocketpy.h'] PUBLIC_HEADERS = ['config.h', 'export.h', 'linalg.h', 'pocketpy.h']