Skip to content

Commit

Permalink
Checks if runs work
Browse files Browse the repository at this point in the history
  • Loading branch information
Opt-Mucca committed Nov 17, 2023
1 parent 1cd63e2 commit ebe85db
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit ebe85db

Please sign in to comment.