PySCIPOpt
=========
This project provides an interface from Python to the [SCIP Optimization Suite](https://www.scipopt.org/). Starting from v8.0.3, SCIP uses the [Apache2.0](https://www.apache.org/licenses/LICENSE-2.0) license. If you plan to use an earlier version of SCIP, please review [SCIP's license restrictions](https://scipopt.org/index.php#license).
[](https://gitter.im/PySCIPOpt/Lobby)
[](https://pypi.python.org/pypi/pyscipopt)
[](https://github.com/scipopt/PySCIPOpt/actions/workflows/integration-test.yml)
[](https://app.codecov.io/gh/scipopt/pyscipopt/)
[](https://ci.appveyor.com/project/mattmilten/pyscipopt/branch/master)
Documentation
-------------
Please consult the [online documentation](https://pyscipopt.readthedocs.io/en/latest/) or use the `help()` function directly in Python or `?` in IPython/Jupyter.
The old documentation, which we are in the process of migrating from,
is still more complete w.r.t. the API, and can be found [here](https://scipopt.github.io/PySCIPOpt/docs/html/index.html)
See [CHANGELOG.md](https://github.com/scipopt/PySCIPOpt/blob/master/CHANGELOG.md) for added, removed or fixed functionality.
Installation
------------
The recommended installation method is via [PyPI](https://pypi.org/project/PySCIPOpt/):
```bash
pip install pyscipopt
```
To avoid interfering with system packages, it's best to use a [virtual environment](https://docs.python.org/3/library/venv.html):
```bash
python3 -m venv venv # creates a virtual environment called venv
source venv/bin/activate # activates the environment. On Windows use: venv\Scripts\activate
pip install pyscipopt
```
Remember to activate the environment (`source venv/bin/activate` or equivalent) in each terminal session where you use PySCIPOpt.
Note that some configurations require the use of virtual environments.
For information on specific versions, installation via Conda, and guides for building from source,
please see the [online documentation](https://pyscipopt.readthedocs.io/en/latest/install.html).
Building and solving a model
----------------------------
There are several [examples](https://github.com/scipopt/PySCIPOpt/blob/master/examples/finished) and
[tutorials](https://github.com/scipopt/PySCIPOpt/blob/master/examples/tutorial). These display some functionality of the
interface and can serve as an entry point for writing more complex code. Some of the common usecases are also available in the [recipes](https://github.com/scipopt/PySCIPOpt/blob/master/src/pyscipopt/recipes) sub-package.
You might also want to have a look at this article about PySCIPOpt:
<https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/6045>. The
following steps are always required when using the interface:
1) It is necessary to import python-scip in your code. This is achieved
by including the line
```python
from pyscipopt import Model
```
2) Create a solver instance.
```python
model = Model("Example") # model name is optional
```
3) Access the methods in the `scip.pxi` file using the solver/model
instance `model`, e.g.:
```python
x = model.addVar("x")
y = model.addVar("y", vtype="INTEGER")
model.setObjective(x + y)
model.addCons(2*x - y*y >= 0)
model.optimize()
sol = model.getBestSol()
print("x: {}".format(sol[x]))
print("y: {}".format(sol[y]))
```
Writing new plugins
-------------------
The Python interface can be used to define custom plugins to extend the
functionality of SCIP. You may write a pricer, heuristic or even
constraint handler using pure Python code and SCIP can call their
methods using the callback system. Every available plugin has a base
class that you need to extend, overwriting the predefined but empty
callbacks. Please see `test_pricer.py` and `test_heur.py` for two simple
examples.
Please notice that in most cases one needs to use a `dictionary` to
specify the return values needed by SCIP.
Using PySCIPOpt?
----------------
If your project or company is using PySCIPOpt, consider letting us know at scip@zib.de. We are always interested
in knowing how PySCIPOpt is being used, and, given permission, would also appreciate adding your company's logo
to our website.
If you are creating models with some degree of complexity which don't take too long to solve, also consider
sharing them with us. We might want to add them to [`tests/helpers/utils.py`](tests/helpers/utils.py) to help make our tests more robust, or add them to our examples.
Citing PySCIPOpt
----------------
Please cite [this paper](https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/6045)
```
@incollection{MaherMiltenbergerPedrosoRehfeldtSchwarzSerrano2016,
author = {Stephen Maher and Matthias Miltenberger and Jo{\~{a}}o Pedro Pedroso and Daniel Rehfeldt and Robert Schwarz and Felipe Serrano},
title = {{PySCIPOpt}: Mathematical Programming in Python with the {SCIP} Optimization Suite},
booktitle = {Mathematical Software {\textendash} {ICMS} 2016},
publisher = {Springer International Publishing},
pages = {301--307},
year = {2016},
doi = {10.1007/978-3-319-42432-3_37},
}
```
as well as the corresponding [SCIP Optimization Suite report](https://scip.zib.de/index.php#cite) when you use this tool for a publication or other scientific work.
Raw data
{
"_id": null,
"home_page": "https://github.com/SCIP-Interfaces/PySCIPOpt",
"name": "PySCIPOpt",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Zuse Institute Berlin",
"author_email": "Zuse Institute Berlin <scip@zib.de>",
"download_url": "https://files.pythonhosted.org/packages/13/7c/63321f1f0e85996160d30701a2a224fa3e379b50ab684f88cae3362bdff5/pyscipopt-5.6.0.tar.gz",
"platform": null,
"description": "PySCIPOpt\n=========\n\nThis project provides an interface from Python to the [SCIP Optimization Suite](https://www.scipopt.org/). Starting from v8.0.3, SCIP uses the [Apache2.0](https://www.apache.org/licenses/LICENSE-2.0) license. If you plan to use an earlier version of SCIP, please review [SCIP's license restrictions](https://scipopt.org/index.php#license).\n\n[](https://gitter.im/PySCIPOpt/Lobby)\n[](https://pypi.python.org/pypi/pyscipopt)\n[](https://github.com/scipopt/PySCIPOpt/actions/workflows/integration-test.yml)\n[](https://app.codecov.io/gh/scipopt/pyscipopt/)\n[](https://ci.appveyor.com/project/mattmilten/pyscipopt/branch/master)\n\n\nDocumentation\n-------------\n\nPlease consult the [online documentation](https://pyscipopt.readthedocs.io/en/latest/) or use the `help()` function directly in Python or `?` in IPython/Jupyter.\n\nThe old documentation, which we are in the process of migrating from,\nis still more complete w.r.t. the API, and can be found [here](https://scipopt.github.io/PySCIPOpt/docs/html/index.html)\n\nSee [CHANGELOG.md](https://github.com/scipopt/PySCIPOpt/blob/master/CHANGELOG.md) for added, removed or fixed functionality.\n\nInstallation\n------------\n\nThe recommended installation method is via [PyPI](https://pypi.org/project/PySCIPOpt/):\n\n```bash\npip install pyscipopt\n```\n\nTo avoid interfering with system packages, it's best to use a [virtual environment](https://docs.python.org/3/library/venv.html):\n\n```bash\npython3 -m venv venv # creates a virtual environment called venv\nsource venv/bin/activate # activates the environment. On Windows use: venv\\Scripts\\activate\npip install pyscipopt\n```\nRemember to activate the environment (`source venv/bin/activate` or equivalent) in each terminal session where you use PySCIPOpt.\nNote that some configurations require the use of virtual environments.\n\nFor information on specific versions, installation via Conda, and guides for building from source,\nplease see the [online documentation](https://pyscipopt.readthedocs.io/en/latest/install.html).\n\nBuilding and solving a model\n----------------------------\n\nThere are several [examples](https://github.com/scipopt/PySCIPOpt/blob/master/examples/finished) and\n[tutorials](https://github.com/scipopt/PySCIPOpt/blob/master/examples/tutorial). These display some functionality of the\ninterface and can serve as an entry point for writing more complex code. Some of the common usecases are also available in the [recipes](https://github.com/scipopt/PySCIPOpt/blob/master/src/pyscipopt/recipes) sub-package.\nYou might also want to have a look at this article about PySCIPOpt:\n<https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/6045>. The\nfollowing steps are always required when using the interface:\n\n1) It is necessary to import python-scip in your code. This is achieved\n by including the line\n\n```python\nfrom pyscipopt import Model\n```\n\n2) Create a solver instance.\n\n```python\nmodel = Model(\"Example\") # model name is optional\n```\n\n3) Access the methods in the `scip.pxi` file using the solver/model\n instance `model`, e.g.:\n\n```python\nx = model.addVar(\"x\")\ny = model.addVar(\"y\", vtype=\"INTEGER\")\nmodel.setObjective(x + y)\nmodel.addCons(2*x - y*y >= 0)\nmodel.optimize()\nsol = model.getBestSol()\nprint(\"x: {}\".format(sol[x]))\nprint(\"y: {}\".format(sol[y]))\n```\n\nWriting new plugins\n-------------------\n\nThe Python interface can be used to define custom plugins to extend the\nfunctionality of SCIP. You may write a pricer, heuristic or even\nconstraint handler using pure Python code and SCIP can call their\nmethods using the callback system. Every available plugin has a base\nclass that you need to extend, overwriting the predefined but empty\ncallbacks. Please see `test_pricer.py` and `test_heur.py` for two simple\nexamples.\n\nPlease notice that in most cases one needs to use a `dictionary` to\nspecify the return values needed by SCIP.\n\nUsing PySCIPOpt?\n----------------\n\nIf your project or company is using PySCIPOpt, consider letting us know at scip@zib.de. We are always interested\nin knowing how PySCIPOpt is being used, and, given permission, would also appreciate adding your company's logo \nto our website. \n\nIf you are creating models with some degree of complexity which don't take too long to solve, also consider\nsharing them with us. We might want to add them to [`tests/helpers/utils.py`](tests/helpers/utils.py) to help make our tests more robust, or add them to our examples.\n\nCiting PySCIPOpt\n----------------\n\nPlease cite [this paper](https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/6045)\n```\n@incollection{MaherMiltenbergerPedrosoRehfeldtSchwarzSerrano2016,\n author = {Stephen Maher and Matthias Miltenberger and Jo{\\~{a}}o Pedro Pedroso and Daniel Rehfeldt and Robert Schwarz and Felipe Serrano},\n title = {{PySCIPOpt}: Mathematical Programming in Python with the {SCIP} Optimization Suite},\n booktitle = {Mathematical Software {\\textendash} {ICMS} 2016},\n publisher = {Springer International Publishing},\n pages = {301--307},\n year = {2016},\n doi = {10.1007/978-3-319-42432-3_37},\n}\n```\nas well as the corresponding [SCIP Optimization Suite report](https://scip.zib.de/index.php#cite) when you use this tool for a publication or other scientific work.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python interface and modeling environment for SCIP",
"version": "5.6.0",
"project_urls": {
"Homepage": "https://github.com/SCIP-Interfaces/PySCIPOpt"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c1dd840c6840ab6d05efe0824b6251acfe4c66b382e0a5ba1d7a2e45fd55b1a8",
"md5": "d5c7005081e7ef061cebf436e720103a",
"sha256": "eb90c69776bb1233f9072cc0b14ea320cbffd80221f8f81399ac9fc0ab63073c"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "d5c7005081e7ef061cebf436e720103a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 10410535,
"upload_time": "2025-08-25T16:53:06",
"upload_time_iso_8601": "2025-08-25T16:53:06.974867Z",
"url": "https://files.pythonhosted.org/packages/c1/dd/840c6840ab6d05efe0824b6251acfe4c66b382e0a5ba1d7a2e45fd55b1a8/pyscipopt-5.6.0-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f6683a7b844860185c836caeba3ece60b79ac15cdc4fb0644443cb94bbf9042",
"md5": "b3f90888084c00cc2ebfbf61f30550ba",
"sha256": "854092381943f4be256689debb7bc9951b3e338c97355c67d4fa2ed3008e29f1"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp310-cp310-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "b3f90888084c00cc2ebfbf61f30550ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7102990,
"upload_time": "2025-08-25T16:53:09",
"upload_time_iso_8601": "2025-08-25T16:53:09.295631Z",
"url": "https://files.pythonhosted.org/packages/7f/66/83a7b844860185c836caeba3ece60b79ac15cdc4fb0644443cb94bbf9042/pyscipopt-5.6.0-cp310-cp310-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56b6cd1f150598eb6af65047426a6a1a7f479210d4745836df949f4a1f0cdde8",
"md5": "0141ceb26ea322b410a5f2989257b059",
"sha256": "4082ea28dce19bbb45a1e09e6b4c5db4a9138ee9b75717667794f61c5d6bcb9d"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "0141ceb26ea322b410a5f2989257b059",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 14750154,
"upload_time": "2025-08-25T16:53:11",
"upload_time_iso_8601": "2025-08-25T16:53:11.075544Z",
"url": "https://files.pythonhosted.org/packages/56/b6/cd1f150598eb6af65047426a6a1a7f479210d4745836df949f4a1f0cdde8/pyscipopt-5.6.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f44da6d81bd1aa52d21e5fb0c2e229e7a1b464f4f20a9554663ea55d0592fa9f",
"md5": "f3815184b59d7ecc149384984f69e641",
"sha256": "8a14889753c2a329b5b639073ed1e32883cc559770094232f3bfcccc22c685ee"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "f3815184b59d7ecc149384984f69e641",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 15837905,
"upload_time": "2025-08-25T16:53:13",
"upload_time_iso_8601": "2025-08-25T16:53:13.111149Z",
"url": "https://files.pythonhosted.org/packages/f4/4d/a6d81bd1aa52d21e5fb0c2e229e7a1b464f4f20a9554663ea55d0592fa9f/pyscipopt-5.6.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a44521ccfd3764b7238eaba138105e94fc1a3d45eebb5c627ad04b6b631ffff",
"md5": "6b8896614d851e94794c0daf0475a7af",
"sha256": "e27ca863c00bf35c4a0831dfcf8e7a46f9c91a5bb7f3fb982cc5951f211f543c"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6b8896614d851e94794c0daf0475a7af",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 47240824,
"upload_time": "2025-08-25T16:53:15",
"upload_time_iso_8601": "2025-08-25T16:53:15.750311Z",
"url": "https://files.pythonhosted.org/packages/4a/44/521ccfd3764b7238eaba138105e94fc1a3d45eebb5c627ad04b6b631ffff/pyscipopt-5.6.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6886ccf73e74106be237304a09447057ed909e9e701d90329f18f0ea2aafeb2c",
"md5": "e374c954553a5464b487e0c3babc9dd6",
"sha256": "edff4ba9a42ca7de05fe946287653337ae2d9eeb91b9c1ce7bce7d5a7da44d7c"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp311-cp311-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e374c954553a5464b487e0c3babc9dd6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 10435466,
"upload_time": "2025-08-25T16:53:18",
"upload_time_iso_8601": "2025-08-25T16:53:18.256739Z",
"url": "https://files.pythonhosted.org/packages/68/86/ccf73e74106be237304a09447057ed909e9e701d90329f18f0ea2aafeb2c/pyscipopt-5.6.0-cp311-cp311-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93877b44140dbcf404251c97c77d1ca70f23795ddcffa4b01bc5708c3dff3963",
"md5": "16cf5b5c3e15eb6c3b2249e73b23c1f5",
"sha256": "6fb3c994b79aa5a485403b6947765694acdd4ffbaeedf9d4d806e08157c24ada"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp311-cp311-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "16cf5b5c3e15eb6c3b2249e73b23c1f5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7124541,
"upload_time": "2025-08-25T16:53:20",
"upload_time_iso_8601": "2025-08-25T16:53:20.045066Z",
"url": "https://files.pythonhosted.org/packages/93/87/7b44140dbcf404251c97c77d1ca70f23795ddcffa4b01bc5708c3dff3963/pyscipopt-5.6.0-cp311-cp311-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5acec6b46d6e1724a86f72fdfe82698fc8b2ea04446f1662886982456ed8cf27",
"md5": "ee274f7f4d861aa443e11b1435459576",
"sha256": "0a59d3b2bb54ea42641eeba9b66a116bbeb14f076bfc12b6a2d63c9d27d86781"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ee274f7f4d861aa443e11b1435459576",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 15206813,
"upload_time": "2025-08-25T16:53:21",
"upload_time_iso_8601": "2025-08-25T16:53:21.468768Z",
"url": "https://files.pythonhosted.org/packages/5a/ce/c6b46d6e1724a86f72fdfe82698fc8b2ea04446f1662886982456ed8cf27/pyscipopt-5.6.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e41ffcb99cb4ab4af9f22d4a10d96bbde1120fe4eabf39a57b63ea04dd507b8a",
"md5": "668a09166e97752a50de05c413bbf939",
"sha256": "7d35fc15125fdf7f714e594d56d73e4ca55d5e05e3c9fd27779d6dbbe19aeb1f"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "668a09166e97752a50de05c413bbf939",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 16280694,
"upload_time": "2025-08-25T16:53:23",
"upload_time_iso_8601": "2025-08-25T16:53:23.510450Z",
"url": "https://files.pythonhosted.org/packages/e4/1f/fcb99cb4ab4af9f22d4a10d96bbde1120fe4eabf39a57b63ea04dd507b8a/pyscipopt-5.6.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "506f8b9f6558f5dacd49863439ae00980ff8ab45204e9b816b6b1a6f12c643d8",
"md5": "7442146d3272430d63d3b17b52399b4c",
"sha256": "31456ecd325bcc8d4186bb0e09fd95d8e6c544e690c100f8557f65408c43ec88"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "7442146d3272430d63d3b17b52399b4c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 47241947,
"upload_time": "2025-08-25T16:53:26",
"upload_time_iso_8601": "2025-08-25T16:53:26.219260Z",
"url": "https://files.pythonhosted.org/packages/50/6f/8b9f6558f5dacd49863439ae00980ff8ab45204e9b816b6b1a6f12c643d8/pyscipopt-5.6.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a37c9c0c63dcd3e6e0c15aec23204a8071b9c1e3b13b173c1e3203095c51605",
"md5": "9bdf712521890ff1a49b025be19d12ad",
"sha256": "c403bfdfae07be83a94e323fbc7232a3ebe9be93c298d1590e4547bf1c47b2d1"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp312-cp312-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "9bdf712521890ff1a49b025be19d12ad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 10379315,
"upload_time": "2025-08-25T16:53:30",
"upload_time_iso_8601": "2025-08-25T16:53:30.512916Z",
"url": "https://files.pythonhosted.org/packages/0a/37/c9c0c63dcd3e6e0c15aec23204a8071b9c1e3b13b173c1e3203095c51605/pyscipopt-5.6.0-cp312-cp312-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "895d61bb29ceb74e1dd36a0d02d5b44bdd24cfcfe934f3012b38ed3edf682e27",
"md5": "1485de0051ae5d00888dfea332d42efb",
"sha256": "224c0a2214139a2300ea33a371d3bf08d65f046d8efff60cdf83e4dedb3c04f0"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp312-cp312-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "1485de0051ae5d00888dfea332d42efb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7089068,
"upload_time": "2025-08-25T16:53:32",
"upload_time_iso_8601": "2025-08-25T16:53:32.463910Z",
"url": "https://files.pythonhosted.org/packages/89/5d/61bb29ceb74e1dd36a0d02d5b44bdd24cfcfe934f3012b38ed3edf682e27/pyscipopt-5.6.0-cp312-cp312-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03a43583f2a7cfb843d664b21e0a55f91b2483d025f36918a4167b202cdbecc0",
"md5": "23d5d09a3b039eccc19c1725f3654099",
"sha256": "053ca6cd329f7e3d021526edd5e22b663186e726878f1ef39263b99022bc67fc"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "23d5d09a3b039eccc19c1725f3654099",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 14817238,
"upload_time": "2025-08-25T16:53:33",
"upload_time_iso_8601": "2025-08-25T16:53:33.921901Z",
"url": "https://files.pythonhosted.org/packages/03/a4/3583f2a7cfb843d664b21e0a55f91b2483d025f36918a4167b202cdbecc0/pyscipopt-5.6.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f27e105ffe2d57c9ad2095dcf19d12842e06d3dfdfa4f0984fdc2f6b1b352cc",
"md5": "890e0c9b41f21bf66e3debd78644e4b2",
"sha256": "42487eab75eba6ed9f4a3d6a94b463fb1a671efe5511801361df83feac559cb3"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "890e0c9b41f21bf66e3debd78644e4b2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 16033256,
"upload_time": "2025-08-25T16:53:36",
"upload_time_iso_8601": "2025-08-25T16:53:36.175264Z",
"url": "https://files.pythonhosted.org/packages/0f/27/e105ffe2d57c9ad2095dcf19d12842e06d3dfdfa4f0984fdc2f6b1b352cc/pyscipopt-5.6.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ea61c62c5b6d73285997953527ced9c33798bf4a82dcef3c000fa3dca20afe9",
"md5": "2ecbc8d54e66b9c8265fb388c1c883d8",
"sha256": "9904f304fa71f6a0a78bae5ef81e9161cc5df9c3e27f915782e742a52faa5040"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "2ecbc8d54e66b9c8265fb388c1c883d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 47147114,
"upload_time": "2025-08-25T16:53:38",
"upload_time_iso_8601": "2025-08-25T16:53:38.823662Z",
"url": "https://files.pythonhosted.org/packages/6e/a6/1c62c5b6d73285997953527ced9c33798bf4a82dcef3c000fa3dca20afe9/pyscipopt-5.6.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "53102fb0fc43428827011747ce61a2320f3b52962f6d640d7261ed6184ed689a",
"md5": "f246e7694310732370a2d4ce0e4f7ef2",
"sha256": "ada3f7b1386c6d05d1d1f1a90997064eadf250a0b4e86a6f059062b648935d51"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp313-cp313-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f246e7694310732370a2d4ce0e4f7ef2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 10374848,
"upload_time": "2025-08-25T16:53:41",
"upload_time_iso_8601": "2025-08-25T16:53:41.339916Z",
"url": "https://files.pythonhosted.org/packages/53/10/2fb0fc43428827011747ce61a2320f3b52962f6d640d7261ed6184ed689a/pyscipopt-5.6.0-cp313-cp313-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f895d8b8af1a6ec9d527a4a02f1e29ce8c998c9a61f55fd2c5adddfec45738b8",
"md5": "70d9e2334ec17a8608002a319988c3c8",
"sha256": "8b454ee26349d541fdcfbc49dfec4c0e53aaa34903630babe071929dc27e568b"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "70d9e2334ec17a8608002a319988c3c8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7084555,
"upload_time": "2025-08-25T16:53:43",
"upload_time_iso_8601": "2025-08-25T16:53:43.191149Z",
"url": "https://files.pythonhosted.org/packages/f8/95/d8b8af1a6ec9d527a4a02f1e29ce8c998c9a61f55fd2c5adddfec45738b8/pyscipopt-5.6.0-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55d57817e07c517dff1827d83db7658c1cdbc84346ef329b69a9f855e317c088",
"md5": "fa7ba3eb1dc05dc09a835397971d9d90",
"sha256": "d4a1d755660bbbf3ff67fe97978e652992f7edc2c3d705c7a92d271764afa323"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "fa7ba3eb1dc05dc09a835397971d9d90",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 14730838,
"upload_time": "2025-08-25T16:53:44",
"upload_time_iso_8601": "2025-08-25T16:53:44.587359Z",
"url": "https://files.pythonhosted.org/packages/55/d5/7817e07c517dff1827d83db7658c1cdbc84346ef329b69a9f855e317c088/pyscipopt-5.6.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2b3ec29c834c21ed240403bb1e0e0fa48cbe7702bc4b9e28ab9eb6b1f3b6dbf",
"md5": "03a26e983b913c52d0637ddf58771953",
"sha256": "17fc5fea5398b58cde5443da7f1494129c255cf9270122a6a6fe75f377823333"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "03a26e983b913c52d0637ddf58771953",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 15896839,
"upload_time": "2025-08-25T16:53:46",
"upload_time_iso_8601": "2025-08-25T16:53:46.992844Z",
"url": "https://files.pythonhosted.org/packages/b2/b3/ec29c834c21ed240403bb1e0e0fa48cbe7702bc4b9e28ab9eb6b1f3b6dbf/pyscipopt-5.6.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6f146079befe1d5ea3a20a51969f46fdeedec207e5f7193d654601359f80a88",
"md5": "39771f7f743e8600390e97834f1f81df",
"sha256": "e98156ebd358bb5b74cc4b3c0849899acc23a8c9faec2c455d9d798a0a72556d"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "39771f7f743e8600390e97834f1f81df",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 47083386,
"upload_time": "2025-08-25T16:53:49",
"upload_time_iso_8601": "2025-08-25T16:53:49.705126Z",
"url": "https://files.pythonhosted.org/packages/b6/f1/46079befe1d5ea3a20a51969f46fdeedec207e5f7193d654601359f80a88/pyscipopt-5.6.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d979ce55775e9e00ff726b3f79699938712d536a735edfd03bd50883d69d0cf",
"md5": "9d72b5676bd1e75e311dbbc556d59e43",
"sha256": "fa4a13c8bae96e347f8a775e2fa0537531dd60ff0290eb1e4ed696b9d937013d"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp38-cp38-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "9d72b5676bd1e75e311dbbc556d59e43",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 10437733,
"upload_time": "2025-08-25T16:53:53",
"upload_time_iso_8601": "2025-08-25T16:53:53.691205Z",
"url": "https://files.pythonhosted.org/packages/7d/97/9ce55775e9e00ff726b3f79699938712d536a735edfd03bd50883d69d0cf/pyscipopt-5.6.0-cp38-cp38-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90282c39e77e05ffff995cc2a32346d09f835e3a4d699714db8d1a50c32da78a",
"md5": "86df00bb45cde0f7a93d8877743621b1",
"sha256": "6f01fc4ab9c5f3da8c2ba27902ea536c60b690bb4774ce96d5c16d74ae254c90"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp38-cp38-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "86df00bb45cde0f7a93d8877743621b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 7128584,
"upload_time": "2025-08-25T16:53:55",
"upload_time_iso_8601": "2025-08-25T16:53:55.299162Z",
"url": "https://files.pythonhosted.org/packages/90/28/2c39e77e05ffff995cc2a32346d09f835e3a4d699714db8d1a50c32da78a/pyscipopt-5.6.0-cp38-cp38-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13d0884941b356c3ca41bc6e5d5019dc858f38f41476d0ea51b6d2b9934788b9",
"md5": "c9a39a66fa0c74cca13f8733897efaca",
"sha256": "153a308e039db65a8c171c1a46e898d6ee33cf3f5248b4d7ab43962c940c86de"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c9a39a66fa0c74cca13f8733897efaca",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 14868406,
"upload_time": "2025-08-25T16:53:56",
"upload_time_iso_8601": "2025-08-25T16:53:56.870938Z",
"url": "https://files.pythonhosted.org/packages/13/d0/884941b356c3ca41bc6e5d5019dc858f38f41476d0ea51b6d2b9934788b9/pyscipopt-5.6.0-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b968150899db41783fc8d4729f316afb70885d52181ea2ea2bfc7840f1b44977",
"md5": "1b66eefc06361dbf7004eafbd02e1e3c",
"sha256": "c18cd6367fddace354fc434d9397cf4975454c1b00333093830ca46f5224c1f0"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "1b66eefc06361dbf7004eafbd02e1e3c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 15984480,
"upload_time": "2025-08-25T16:53:58",
"upload_time_iso_8601": "2025-08-25T16:53:58.702245Z",
"url": "https://files.pythonhosted.org/packages/b9/68/150899db41783fc8d4729f316afb70885d52181ea2ea2bfc7840f1b44977/pyscipopt-5.6.0-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4876456fbe3a7e6cb4864135a49b9e05aa6b6ec0b3e8a3c1d60f3572d2818c1",
"md5": "eb5ca4f2b261941c27ce27687a8caf5d",
"sha256": "b63e2b9bbf321aeee69cad4371c7316836f741df9ab9d35eee2654bc91814980"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "eb5ca4f2b261941c27ce27687a8caf5d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 47260845,
"upload_time": "2025-08-25T16:54:01",
"upload_time_iso_8601": "2025-08-25T16:54:01.108253Z",
"url": "https://files.pythonhosted.org/packages/b4/87/6456fbe3a7e6cb4864135a49b9e05aa6b6ec0b3e8a3c1d60f3572d2818c1/pyscipopt-5.6.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad379cf17f380bae7bf8ca94ad083069a8e010183fc06da53d3085eb42900334",
"md5": "e8d1d4b4a2a906e21497f3bf8ad3c993",
"sha256": "a5c1e91d7b0ed9c267b15cc31e59cd1dcb663dd392a852dad85388fdbec12177"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e8d1d4b4a2a906e21497f3bf8ad3c993",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 10411295,
"upload_time": "2025-08-25T16:54:03",
"upload_time_iso_8601": "2025-08-25T16:54:03.911542Z",
"url": "https://files.pythonhosted.org/packages/ad/37/9cf17f380bae7bf8ca94ad083069a8e010183fc06da53d3085eb42900334/pyscipopt-5.6.0-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b3808fb5633c6934b3985652275bac11615eff8a4df2d11f67daddf41775e4c",
"md5": "26db7b47002a9487b2e72daf87bcb5d6",
"sha256": "c65b2e52f9f6075ac1a8282ebc6df3dcf3750fdbe2ed62cc25f3545335928f58"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp39-cp39-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "26db7b47002a9487b2e72daf87bcb5d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7103010,
"upload_time": "2025-08-25T16:54:05",
"upload_time_iso_8601": "2025-08-25T16:54:05.644916Z",
"url": "https://files.pythonhosted.org/packages/4b/38/08fb5633c6934b3985652275bac11615eff8a4df2d11f67daddf41775e4c/pyscipopt-5.6.0-cp39-cp39-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e45a43a5ab6b0865e457aba76ca4a41073ca7348a394877d0903c12905e234a4",
"md5": "d52b0154e1d868fa1f06a92769a11a18",
"sha256": "443f76c982da12650c6cff166b1725744d3757160e26d0e06d8cb48207b7e421"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d52b0154e1d868fa1f06a92769a11a18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 14668021,
"upload_time": "2025-08-25T16:54:07",
"upload_time_iso_8601": "2025-08-25T16:54:07.467408Z",
"url": "https://files.pythonhosted.org/packages/e4/5a/43a5ab6b0865e457aba76ca4a41073ca7348a394877d0903c12905e234a4/pyscipopt-5.6.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9523b938f0d648dde26725b96f4dad3ac91566367016f76ba4fad84ba5348163",
"md5": "aae49f461e7ac4e0504cb018ac33e722",
"sha256": "6ed77a0d3b68f093397e4217a9eaa9d35ac15e8a2cef175c8396c7d3a770166c"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "aae49f461e7ac4e0504cb018ac33e722",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 15747198,
"upload_time": "2025-08-25T16:54:09",
"upload_time_iso_8601": "2025-08-25T16:54:09.437258Z",
"url": "https://files.pythonhosted.org/packages/95/23/b938f0d648dde26725b96f4dad3ac91566367016f76ba4fad84ba5348163/pyscipopt-5.6.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d66430bced8175edb72f9721428ec9606330af19934323300cc99f08a342bae",
"md5": "d2e33ae265c0f488770f4533616d099b",
"sha256": "b5607dfbd7717869c67a1ebbdeced7f68222e481ad4abc20518608a7eb327e5b"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "d2e33ae265c0f488770f4533616d099b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 47241841,
"upload_time": "2025-08-25T16:54:11",
"upload_time_iso_8601": "2025-08-25T16:54:11.793616Z",
"url": "https://files.pythonhosted.org/packages/3d/66/430bced8175edb72f9721428ec9606330af19934323300cc99f08a342bae/pyscipopt-5.6.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "137c63321f1f0e85996160d30701a2a224fa3e379b50ab684f88cae3362bdff5",
"md5": "d19680c9db69a23b9db9ba460f7a75c8",
"sha256": "082faf61d294a9661121cdf080c8faa62fc8b84a6160febfb1627ed76e15b9d5"
},
"downloads": -1,
"filename": "pyscipopt-5.6.0.tar.gz",
"has_sig": false,
"md5_digest": "d19680c9db69a23b9db9ba460f7a75c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1385243,
"upload_time": "2025-08-25T16:54:13",
"upload_time_iso_8601": "2025-08-25T16:54:13.972919Z",
"url": "https://files.pythonhosted.org/packages/13/7c/63321f1f0e85996160d30701a2a224fa3e379b50ab684f88cae3362bdff5/pyscipopt-5.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-25 16:54:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "SCIP-Interfaces",
"github_project": "PySCIPOpt",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"landscape": true,
"lcname": "pyscipopt"
}