From 0ac166d98dbdb5768b02e323253b29c53ad3a547 Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Fri, 5 Apr 2024 15:35:04 +0200 Subject: [PATCH 1/3] Update links to new scip build with sassy+nauty --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 68bf37cf0..dac575de9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" ] @@ -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 @@ -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" From 1a9b5cf88fa8646e015e4cacc532dd1f1fcdf86f Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Fri, 5 Apr 2024 15:36:09 +0200 Subject: [PATCH 2/3] Update version --- setup.py | 2 +- src/pyscipopt/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 32f4ab109..dfdd33fbc 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/src/pyscipopt/_version.py b/src/pyscipopt/_version.py index a0f66580c..3d96b2761 100644 --- a/src/pyscipopt/_version.py +++ b/src/pyscipopt/_version.py @@ -1 +1 @@ -__version__ = '5.0.0' +__version__ = '5.0.1' From f5baedfd6821e6ba2c4cf3a6c5de71c216721fc5 Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Fri, 5 Apr 2024 15:39:16 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba8df01ce..4cbf1142a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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