From c726db8005cb3d4bb8eb90400cdd35812ccf90dd Mon Sep 17 00:00:00 2001 From: Tom Vander Aa Date: Fri, 7 Jun 2024 09:44:58 +0200 Subject: [PATCH] cibw: add before-all on macOS --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ca9f9170..b31b2cf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,5 +71,8 @@ test-command = 'pytest {project}/python/test' test-requires = 'parameterized pytest' build-verbosity = 1 -[tool.cibuildwheel.macos.environment] -MACOSX_DEPLOYMENT_TARGET = "14.0" +[tool.cibuildwheel.macos] +environment = { MACOSX_DEPLOYMENT_TARGET = "14.0" } +before-all = [ + "brew install eigen lapack ci/highfive.rb" + ] \ No newline at end of file