File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -93,15 +93,14 @@ strict_equality = true
9393ignore_missing_imports = true
9494
9595[tool .cibuildwheel ]
96- # Skip musllinux builds for the moment
97- skip = " *-musllinux_*"
9896test-extras = " test"
9997test-command = " pytest {project}/tests"
10098
10199[tool .cibuildwheel .linux ]
102100before-all = [
103- " yum update -y" ,
104- " yum install -y mpfr-devel" ,
101+ " if command -v yum > /dev/null; then yum update -y; yum install -y mpfr-devel; fi" ,
102+ " if command -v apt-get > /dev/null; then apt-get update -y; apt-get install -y libmpfr-dev; fi" ,
103+ " if command -v apk > /dev/null; then apk update; apk add mpfr-dev gmp-dev; fi" ,
105104 " curl -L https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.bz2 -o boost_1_87_0.tar.bz2" ,
106105 " tar --bzip2 -xf boost_1_87_0.tar.bz2" ,
107106 " mv boost_1_87_0/boost /usr/include/boost" ,
You can’t perform that action at this time.
0 commit comments