diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 96be6075c..d0bf16ce5 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -11,8 +11,8 @@ jobs: include: - os: ubuntu-20.04 arch: x86_64 - # - os: macos-latest - # arch: x86_64 + - os: macos-latest + arch: x86_64 - os: windows-latest arch: AMD64 diff --git a/pyproject.toml b/pyproject.toml index 67b929b07..579bd9cb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,7 @@ skip="pp* cp312*" # currently doesn't work with PyPy or CPython 3.12 [tool.cibuildwheel.linux] +skip="pp* cp312*" before-all = [ "(apt-get update && apt-get install --yes wget) || yum install -y wget zlib libgfortran || brew install wget", "wget https://github.com/mmghannam/scip/releases/download/v8.0.3/libscip-centos.zip -O scip.zip", @@ -17,6 +18,7 @@ environment = { SCIPOPTDIR="$(pwd)/scip", LD_LIBRARY_PATH="$(pwd)/scip/lib:LD_LI [tool.cibuildwheel.macos] +skip="pp* cp312*" before-all = [ "brew install wget zlib gcc", "wget https://github.com/mmghannam/scip/releases/download/v8.0.3/libscip-macos.zip -O scip.zip", @@ -27,7 +29,7 @@ environment = { SCIPOPTDIR="$(pwd)/scip", LD_LIBRARY_PATH="$(pwd)/scip/lib:LD_LI [tool.cibuildwheel.windows] -skip="pp* cp36-* cp37-* cp312-*" +skip="pp* cp312-*" before-all = [ "choco install 7zip wget", "wget https://github.com/mmghannam/scip/releases/download/v8.0.3/libscip-windows.zip -O scip.zip",