From f8096f32f148086019729400dc6e435a388606b6 Mon Sep 17 00:00:00 2001 From: Bradley Reynolds Date: Sun, 5 May 2024 06:40:01 +0000 Subject: [PATCH] Try manually installing gfortran for Mac OS https://stackoverflow.com/questions/29586487/still-cant-install-scipy-due-to-missing-fortran-compiler-after-brew-install-gcc --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ca283b5..39e9f8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,3 +15,6 @@ requires = ['meson-python', "numpy"] [tool.cibuildwheel] skip = "*-win32 *-manylinux_i686" + +[tool.cibuildwheel.macos] +before-build = "brew install gfortran"