diff --git a/CHANGELOG.md b/CHANGELOG.md index c41f56a78..5e63edb73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased ### Added +### Fixed +### Changed +### Removed + +## 6.1.0 - 2026.01.31 +### Added +- Support for SCIP 10.0.1 - Added automated script for generating type stubs - Include parameter names in type stubs - Added pre-commit hook for automatic stub regeneration (see `.pre-commit-config.yaml`) diff --git a/docs/build.rst b/docs/build.rst index f849b1895..7ce7f766f 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -21,6 +21,8 @@ To download SCIP please either use the pre-built SCIP Optimization Suite availab * - SCIP - PySCIPOpt + * - 10.0.1 + - 6.1 * - 10.0.0 - 6.0 * - 9.2 diff --git a/pyproject.toml b/pyproject.toml index d990f8d50..52732b737 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,17 +11,15 @@ authors = [ dependencies = ['numpy >=1.16.0'] requires-python = ">=3.8" readme = "README.md" -license = {text = "MIT License"} classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Education", "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", "Programming Language :: Cython", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Mathematics", ] -dynamic = ["version"] +dynamic = ["version", "license"] [project.urls] Homepage = "https://github.com/SCIP-Interfaces/PySCIPOpt" @@ -51,9 +49,9 @@ AARCH=$(uname -m) echo "------" echo $AARCH if [[ $AARCH == "aarch64" ]]; then - wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.10.0/libscip-linux-arm.zip -O scip.zip + wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-linux-arm.zip -O scip.zip else - wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.10.0/libscip-linux.zip -O scip.zip + wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-linux.zip -O scip.zip fi unzip scip.zip mv scip_install scip @@ -67,10 +65,10 @@ before-all = ''' #!/bin/bash brew install wget zlib gcc if [[ $CIBW_ARCHS == *"arm"* ]]; then - wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.10.0/libscip-macos-arm.zip -O scip.zip + wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-macos-arm.zip -O scip.zip export MACOSX_DEPLOYMENT_TARGET=14.0 else - wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.10.0/libscip-macos-intel.zip -O scip.zip + wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.0/libscip-macos-intel.zip -O scip.zip export MACOSX_DEPLOYMENT_TARGET=14.0 fi unzip scip.zip @@ -96,7 +94,7 @@ repair-wheel-command = ''' skip="pp* cp36* cp37*" before-all = [ "choco install 7zip wget", - "wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.10.0/libscip-windows.zip -O scip.zip", + "wget https://github.com/scipopt/scipoptsuite-deploy/releases/download/v0.11.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" diff --git a/setup.py b/setup.py index 9494cd5d5..9a076a28c 100644 --- a/setup.py +++ b/setup.py @@ -133,7 +133,7 @@ setup( name="PySCIPOpt", - version="6.0.0", + version="6.1.0", 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 74233fb54..935ff4228 100644 --- a/src/pyscipopt/_version.py +++ b/src/pyscipopt/_version.py @@ -1 +1 @@ -__version__: str = '6.0.0' +__version__: str = '6.1.0'