From 1f1bc953f7fb98bff11b85483957c39b74367b4e Mon Sep 17 00:00:00 2001 From: Alex Lancaster Date: Mon, 13 May 2024 22:27:09 -0400 Subject: [PATCH] install catalina version of gsl on x86 mac --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ff0d35039..982907ce4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,9 +68,8 @@ select = "*-macosx_x86_64" inherit.environment="append" environment = { MACOSX_DEPLOYMENT_TARGET="10.15" } # 10.15 is Catalina the minimum version of gsl supported by 'brew' inherit.before-all="append" -before-all = "brew install gsl" # since Big Sur x86_64 version exists, it should install that version -# install the catalina version of `gsl` -# before-all = "brew fetch --force --bottle-tag=catalina gsl; brew reinstall $(brew --cache --bottle-tag=catalina gsl)" +# install the catalina version of `gsl` to match +before-all = "brew fetch --force --bottle-tag=catalina gsl; brew reinstall $(brew --cache --bottle-tag=catalina gsl)" [[tool.cibuildwheel.overrides]] select = "*-macosx_arm64"