From 5e32f3deb85afaa4854b599b6519829d0bdd567c Mon Sep 17 00:00:00 2001 From: laggykiller <61652821+laggykiller@users.noreply.github.com> Date: Mon, 2 Oct 2023 03:23:12 +0800 Subject: [PATCH] Fix macOS build --- compile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/compile.py b/compile.py index 49f5c8d..5731d34 100755 --- a/compile.py +++ b/compile.py @@ -75,6 +75,7 @@ def create_universal_wheels(in_dir1, in_dir2, out_dir): if platform.system() == 'Darwin': subprocess.run(f'{python_bin} -m pip install --upgrade pip delocate'.split(' ')) subprocess.run(f'{python_bin} -m venv venv'.split(' ')) + python_bin = 'python' osx_run_in_venv('python -m pip install wheel nuitka') if not arch: