Skip to content

Commit

Permalink
Merge pull request #839 from scipopt/scip-with-nauty
Browse files Browse the repository at this point in the history
Update links to new scip build with sassy+nauty
  • Loading branch information
Opt-Mucca committed Apr 5, 2024
2 parents eff4bd0 + f5baedf commit 6a17c96
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased
### Added
### Fixed
### Changed
### Removed

## 5.0.1 - 2024-04-05
### Added
- Added recipe for nonlinear objective functions
- Added method for adding piecewise linear constraints
- Add SCIP function SCIPgetTreesizeEstimation and wrapper getTreesizeEstimation
Expand Down
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://scipopt.org/download/release/SCIP-9.0.0-Linux-x86_64.zip -O scip.zip",
"wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.1.0/libscip-linux.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://scipopt.org/download/release/SCIP-9.0.0-Darwin-arm.zip -O scip.zip
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.1.0/libscip-macos-arm.zip -O scip.zip
else
wget https://scipopt.org/download/release/SCIP-9.0.0-Darwin-x86_64.zip -O scip.zip
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.1.0/libscip-macos.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://scipopt.org/download/release/SCIP-9.0.0-win64-VS22.zip -O scip.zip",
"wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.1.0/libscip-windows.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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@

setup(
name="PySCIPOpt",
version="5.0.0",
version="5.0.1",
description="Python interface and modeling environment for SCIP",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/pyscipopt/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.0.0'
__version__ = '5.0.1'

0 comments on commit 6a17c96

Please sign in to comment.