diff --git a/setup.py b/setup.py index 14aa857..c5a7d5c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import ctypes.util +import platform import subprocess import tempfile @@ -12,6 +13,8 @@ def _libpostal_installed() -> bool: def _install_libpostal() -> None: """Installs libpostal.""" + print(f"Architecture = {platform.machine()}") + with tempfile.TemporaryDirectory() as tempdir: subprocess.run(["./install_libpostal.sh", tempdir], check=True) diff --git a/wheelhouse/libpypostal-1.1.0-cp38-cp38-macosx_11_0_arm64.whl b/wheelhouse/libpypostal-1.1.0-cp38-cp38-macosx_11_0_arm64.whl deleted file mode 100644 index 29b780d..0000000 Binary files a/wheelhouse/libpypostal-1.1.0-cp38-cp38-macosx_11_0_arm64.whl and /dev/null differ