Skip to content

Commit

Permalink
install GSL from source on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Jul 1, 2024
1 parent 4deff8e commit 90d6b19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions deployment/macos_wheels/install_gsl.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

curl https://ftp.gnu.org/gnu/gsl/gsl-2.7.tar.gz -o gsl-2.7.tar.gz
tar xzf gsl-2.7.tar.gz
cd gsl-2.7
./configure
make -j 6
make install
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ build-frontend = "build"

[tool.cibuildwheel.macos]
build = "cp3{11,12}-*"
before-all = "./deployment/macos_wheels/install_gsl.sh"

[tool.cibuildwheel.linux]
build = "cp*manylinux*"
Expand Down

0 comments on commit 90d6b19

Please sign in to comment.