Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download scip packages from scipopt.org instead of scip.zib.de #805

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ skip="pp*" # currently doesn't work with PyPy
skip="pp* cp36* cp37* *musllinux*"
before-all = [
"(apt-get update && apt-get install --yes wget) || yum install -y wget zlib libgfortran || brew install wget",
"wget https://scip.zib.de/download/release/SCIP-9.0.0-Linux-x86_64.zip -O scip.zip",
"wget https://scipopt.org/download/release/SCIP-9.0.0-Linux-x86_64.zip -O scip.zip",
"unzip scip.zip",
"mv scip_install scip"
]
Expand All @@ -57,9 +57,9 @@ before-all = '''
#!/bin/bash
brew install wget zlib gcc
if [[ $CIBW_ARCHS == *"arm"* ]]; then
wget https://scip.zib.de/download/release/SCIP-9.0.0-Darwin-arm.zip -O scip.zip
wget https://scipopt.org/download/release/SCIP-9.0.0-Darwin-arm.zip -O scip.zip
else
wget https://scip.zib.de/download/release/SCIP-9.0.0-Darwin-x86_64.zip -O scip.zip
wget https://scipopt.org/download/release/SCIP-9.0.0-Darwin-x86_64.zip -O scip.zip
fi
unzip scip.zip
mv scip_install src/scip
Expand All @@ -75,7 +75,7 @@ repair-wheel-command = [
skip="pp* cp36* cp37*"
before-all = [
"choco install 7zip wget",
"wget https://scip.zib.de/download/release/SCIP-9.0.0-win64-VS22.zip -O scip.zip",
"wget https://scipopt.org/download/release/SCIP-9.0.0-win64-VS22.zip -O scip.zip",
"\"C:\\Program Files\\7-Zip\\7z.exe\" x \"scip.zip\" -o\"scip-test\"",
"mv .\\scip-test\\scip_install .\\test",
"mv .\\test .\\scip"
Expand Down
Loading