Skip to content

Commit 1905b5e

Browse files
Upgrade to SCIP 10.0.2 (#1212)
* release v6.2.0 * Update scipoptsuite-deploy to v0.12.0 (SCIP 10.0.2) * update table
1 parent 3750feb commit 1905b5e

6 files changed

Lines changed: 17 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44
### Added
5+
### Fixed
6+
### Changed
7+
### Removed
8+
9+
## 6.2.0 - 2026.04.23
10+
### Added
511
- `Expr` and `GenExpr` support NumPy unary functions (`np.sin`, `np.cos`, `np.sqrt`, `np.exp`, `np.log`, `np.absolute`, `np.negative`)
612
- `Expr` and `GenExpr` support NumPy binary functions (`np.add`, `np.subtract`, `np.multiply`, `np.divide`, `np.true_divide`, `np.power`, `np.less_equal`, `np.greater_equal`, `np.equal`)
713
- Added `getBase()` and `setBase()` methods to `LP` class for getting/setting basis status

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Requirements
22
============
33

4-
From version 5.0.0 SCIP is automatically shipped when using PyPI for the following systems:
4+
From version 5.0.0, SCIP is automatically shipped when using PyPI for the following systems:
55

66
- CPython 3.8 / 3.9 / 3.10 / 3.11 / 3.12 for Linux (manylinux2014)
77
- CPython 3.8 / 3.9 / 3.10 / 3.11 / 3.12 for MacOS for x86_64 / ARM64
@@ -16,7 +16,7 @@ When installing from source or using PyPI with a python version and operating sy
1616
PySCIPOpt requires a working installation of the [SCIP Optimization
1717
Suite](https://www.scipopt.org/). Please, make sure that your SCIP installation works!
1818

19-
**Note that the latest PySCIPOpt version is usually only compatible with the latest major release of the SCIP Optimization Suite. See the table on the README.md page for details.**
19+
**Note that the latest PySCIPOpt version is usually only compatible with the latest major release of the SCIP Optimization Suite. See the [online documentation](https://pyscipopt.readthedocs.io/en/latest/build.html#building-from-source) for details.**
2020

2121
If installing SCIP from source or using PyPI with a python and operating system that is not mentioned above, and SCIP is not installed in the global path,
2222
you need to specify the install location using the environment variable

docs/build.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ To download SCIP please either use the pre-built SCIP Optimization Suite availab
2121

2222
* - SCIP
2323
- PySCIPOpt
24+
* - 10.0.2
25+
- 6.2
2426
* - 10.0.1
2527
- 6.1
2628
* - 10.0.0

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ AARCH=$(uname -m)
4949
echo "------"
5050
echo $AARCH
5151
if [[ $AARCH == "aarch64" ]]; then
52-
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-linux-arm.zip -O scip.zip
52+
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.12.0/libscip-linux-arm.zip -O scip.zip
5353
else
54-
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-linux.zip -O scip.zip
54+
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.12.0/libscip-linux.zip -O scip.zip
5555
fi
5656
unzip scip.zip
5757
mv scip_install scip
@@ -65,10 +65,10 @@ before-all = '''
6565
#!/bin/bash
6666
brew install wget zlib gcc
6767
if [[ $CIBW_ARCHS == *"arm"* ]]; then
68-
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-macos-arm.zip -O scip.zip
68+
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.12.0/libscip-macos-arm.zip -O scip.zip
6969
export MACOSX_DEPLOYMENT_TARGET=14.0
7070
else
71-
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-macos-intel.zip -O scip.zip
71+
wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.12.0/libscip-macos-intel.zip -O scip.zip
7272
export MACOSX_DEPLOYMENT_TARGET=14.0
7373
fi
7474
unzip scip.zip
@@ -94,7 +94,7 @@ repair-wheel-command = '''
9494
skip="pp* cp36* cp37*"
9595
before-all = [
9696
"choco install 7zip wget",
97-
"wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-windows.zip -O scip.zip",
97+
"wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.12.0/libscip-windows.zip -O scip.zip",
9898
"\"C:\\Program Files\\7-Zip\\7z.exe\" x \"scip.zip\" -o\"scip-test\"",
9999
"mv .\\scip-test\\scip_install .\\test",
100100
"mv .\\test .\\scip"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133

134134
setup(
135135
name="PySCIPOpt",
136-
version="6.1.0",
136+
version="6.2.0",
137137
description="Python interface and modeling environment for SCIP",
138138
long_description=long_description,
139139
long_description_content_type="text/markdown",

src/pyscipopt/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = '6.1.0'
1+
__version__: str = '6.2.0'

0 commit comments

Comments
 (0)