| Name | highspy JSON |
| Version |
1.12.0
JSON |
| download |
| home_page | None |
| Summary | A thin set of pybind11 wrappers to HiGHS |
| upload_time | 2025-10-25 18:09:46 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.8 |
| license | None |
| keywords |
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# HiGHS - Linear optimization software
<!--  -->
[![Build Status][fast_build_svg]][fast_build_link]
[![Build Status][linux_build_svg]][linux_build_link]
[![Build Status][macos_build_svg]][macos_build_link]
[![Build Status][windows_build_svg]][windows_build_link]
\
[](https://conan.io/center/recipes/highs)
\
[](https://pypi.python.org/pypi/highspy)
[](https://pypi.python.org/pypi/highspy)
\
[](https://www.nuget.org/packages/Highs.Native)
[](https://www.nuget.org/packages/Highs.Native)
[fast_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-fast.yml/badge.svg
[fast_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-fast.yml
[linux_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-linux.yml/badge.svg
[linux_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-linux.yml
[macos_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-macos.yml/badge.svg
[macos_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-macos.yml
[windows_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-windows.yml/badge.svg
[windows_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-windows.yml
- [About HiGHS](#about-highs)
- [Documentation](#documentation)
- [Installation](#installation)
- [Build from source using CMake](#build-from-source-using-cmake)
- [Build with Meson*](#build-with-meson)
- [Build with Nix*](#build-with-nix)
- [Precompiled binaries](#precompiled-binaries)
- [Running HiGHS](#running-highs)
- [Interfaces](#interfaces)
- [Python](#python)
- [C](#c)
- [CSharp](#csharp)
- [Fortran](#fortran)
- [Reference](#reference)
## About HiGHS
HiGHS is a high performance serial and parallel solver for large scale sparse
linear optimization problems of the form
$$ \min \quad \dfrac{1}{2}x^TQx + c^Tx \qquad \textrm{s.t.}~ \quad L \leq Ax \leq U; \quad l \leq x \leq u $$
where $Q$ must be positive semi-definite and, if $Q$ is zero, there may be a requirement that some of the variables take integer values. Thus HiGHS can solve linear programming (LP) problems, convex quadratic programming (QP) problems, and mixed integer programming (MIP) problems. It is mainly written in C++, but also has some C. It has been developed and tested on various Linux, MacOS and Windows installations. No third-party dependencies are required.
HiGHS has primal and dual revised simplex solvers, originally written by Qi Huangfu and further developed by Julian Hall. It also has an interior point solver for LP written by Lukas Schork, an active set solver for QP written by Michael Feldmeier, and a MIP solver written by Leona Gottwald. Other features have been added by Julian Hall and Ivet Galabova, who manages the software engineering of HiGHS and interfaces to C, C#, FORTRAN, Julia and Python.
Find out more about HiGHS at https://www.highs.dev.
Although HiGHS is freely available under the MIT license, we would be pleased to learn about users' experience and give advice via email sent to highsopt@gmail.com.
## Documentation
Documentation is available at https://ergo-code.github.io/HiGHS/.
## Installation
### Build from source using CMake
HiGHS uses CMake as build system, and requires at least version 3.15. To generate build files in a new subdirectory called 'build', run:
```shell
cmake -S . -B build
cmake --build build
```
This installs the executable `bin/highs` and the library `lib/highs`.
To test whether the compilation was successful, change into the build directory and run
```shell
ctest
```
More details on building with CMake can be found in `HiGHS/cmake/README.md`.
#### Build with Meson
As an alternative, HiGHS can be installed using the `meson` build interface:
``` sh
meson setup bbdir -Dwith_tests=True
meson test -C bbdir
```
_The meson build files are provided by the community and are not officially supported by the HiGHS development team._ **If you use this method and encounter issues, please consider contributing fixes or updates by checking the [HiGHS Contribution Guide](https://github.com/ERGO-Code/HiGHS/blob/master/CONTRIBUTING.md).**
#### Build with Nix
There is a nix flake that provides the `highs` binary:
```shell
nix run .
```
You can even run [without installing
anything](https://determinate.systems/posts/nix-run/), supposing you have
installed [nix](https://nixos.org/download.html):
```shell
nix run github:ERGO-Code/HiGHS
```
The nix flake also provides the python package:
```shell
nix build .#highspy
tree result/
```
And a devShell for testing it:
```shell
nix develop .#highspy
python
>>> import highspy
>>> highspy.Highs()
```
_The nix build files are provided by the community and are not officially supported by the HiGHS development team._
### Precompiled binaries
Precompiled static executables are available for a variety of platforms at
https://github.com/JuliaBinaryWrappers/HiGHSstatic_jll.jl/releases
_These binaries are provided by the Julia community and are not officially supported by the HiGHS development team. If you have trouble using these libraries, please open a GitHub issue and tag `@odow` in your question._
See https://ergo-code.github.io/HiGHS/stable/installation/#Precompiled-Binaries.
## Running HiGHS
HiGHS can read MPS files and (CPLEX) LP files, and the following command
solves the model in `ml.mps`
```shell
highs ml.mps
```
#### Command line options
When HiGHS is run from the command line, some fundamental option values may be
specified directly. Many more may be specified via a file. Formally, the usage
is:
```shell
$ bin/highs --help
usage:
./bin/highs [options] [file]
options:
--model_file file File of model to solve.
--options_file file File containing HiGHS options.
--read_solution_file file File of solution to read.
--read_basis_file text File of initial basis to read.
--write_model_file text File for writing out model.
--solution_file text File for writing out solution.
--write_basis_file text File for writing out final basis.
--presolve text Set presolve option to:
"choose" * default
"on"
"off"
--solver text Set solver option to:
"choose" * default
"simplex"
"ipm"
--parallel text Set parallel option to:
"choose" * default
"on"
"off"
--run_crossover text Set run_crossover option to:
"choose"
"on" * default
"off"
--time_limit float Run time limit (seconds - double).
--random_seed int Seed to initialize random number
generation.
--ranging text Compute cost, bound, RHS and basic
solution ranging:
"on"
"off" * default
-v, --version Print version.
-h, --help Print help.
```
For a full list of options, see the [options page](https://ergo-code.github.io/HiGHS/stable/options/definitions/) of the documentation website.
## Interfaces
There are HiGHS interfaces for C, C#, FORTRAN, and Python in `HiGHS/highs/interfaces`, with example driver files in `HiGHS/examples/`. More on language and modelling interfaces can be found at https://ergo-code.github.io/HiGHS/stable/interfaces/other/.
We are happy to give a reasonable level of support via email sent to highsopt@gmail.com.
### Python
The python package `highspy` is a thin wrapper around HiGHS and is available on [PyPi](https://pypi.org/project/highspy/). It can be easily installed via `pip` by running
```shell
$ pip install highspy
```
Alternatively, `highspy` can be built from source. Download the HiGHS source code and run
```shell
pip install .
```
from the root directory.
The HiGHS C++ library no longer needs to be separately installed. The python package `highspy` depends on the `numpy` package and `numpy` will be installed as well, if it is not already present.
The installation can be tested using the small example `HiGHS/examples/call_highs_from_python_highspy.py`.
The [Google Colab Example Notebook](https://colab.research.google.com/drive/1JmHF53OYfU-0Sp9bzLw-D2TQyRABSjHb?usp=sharing) also demonstrates how to call `highspy`.
### C
The C API is in `HiGHS/highs/interfaces/highs_c_api.h`. It is included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.
### CSharp
The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget.org/packages/Highs.Native/.
It can be added to your C# project with `dotnet`
```shell
dotnet add package Highs.Native --version 1.12.0
```
The nuget package contains runtime libraries for
* `win-x64`
* `win-x32`
* `linux-x64`
* `linux-arm64`
* `macos-x64`
* `macos-arm64`
Details for building locally can be found in `nuget/README.md`.
### Fortran
The Fortran API is in `HiGHS/highs/interfaces/highs_fortran_api.f90`. It is *not* included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.
## Reference
If you use HiGHS in an academic context, please acknowledge this and cite the following article.
Parallelizing the dual revised simplex method
Q. Huangfu and J. A. J. Hall
Mathematical Programming Computation, 10 (1), 119-142, 2018.
DOI: [10.1007/s12532-017-0130-5](https://link.springer.com/article/10.1007/s12532-017-0130-5)
Raw data
{
"_id": null,
"home_page": null,
"name": "highspy",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "HiGHS developers <highsopt@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/32/cc/dc47527beec1f44274186713a59fca13e6e1c71088ed6d18980dc8b90ee9/highspy-1.12.0.tar.gz",
"platform": null,
"description": "# HiGHS - Linear optimization software\n\n<!--  -->\n\n[![Build Status][fast_build_svg]][fast_build_link]\n[![Build Status][linux_build_svg]][linux_build_link]\n[![Build Status][macos_build_svg]][macos_build_link]\n[![Build Status][windows_build_svg]][windows_build_link]\n\\\n[](https://conan.io/center/recipes/highs)\n\\\n[](https://pypi.python.org/pypi/highspy)\n[](https://pypi.python.org/pypi/highspy)\n\\\n[](https://www.nuget.org/packages/Highs.Native)\n[](https://www.nuget.org/packages/Highs.Native)\n\n[fast_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-fast.yml/badge.svg\n[fast_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-fast.yml\n[linux_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-linux.yml/badge.svg\n[linux_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-linux.yml\n[macos_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-macos.yml/badge.svg\n[macos_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-macos.yml\n[windows_build_svg]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-windows.yml/badge.svg\n[windows_build_link]: https://github.com/ERGO-Code/HiGHS/actions/workflows/build-windows.yml\n\n- [About HiGHS](#about-highs)\n- [Documentation](#documentation)\n- [Installation](#installation)\n - [Build from source using CMake](#build-from-source-using-cmake)\n - [Build with Meson*](#build-with-meson)\n - [Build with Nix*](#build-with-nix)\n - [Precompiled binaries](#precompiled-binaries)\n- [Running HiGHS](#running-highs)\n- [Interfaces](#interfaces)\n - [Python](#python)\n - [C](#c)\n - [CSharp](#csharp)\n - [Fortran](#fortran)\n- [Reference](#reference)\n\n## About HiGHS\n\nHiGHS is a high performance serial and parallel solver for large scale sparse\nlinear optimization problems of the form\n\n$$ \\min \\quad \\dfrac{1}{2}x^TQx + c^Tx \\qquad \\textrm{s.t.}~ \\quad L \\leq Ax \\leq U; \\quad l \\leq x \\leq u $$\n\nwhere $Q$ must be positive semi-definite and, if $Q$ is zero, there may be a requirement that some of the variables take integer values. Thus HiGHS can solve linear programming (LP) problems, convex quadratic programming (QP) problems, and mixed integer programming (MIP) problems. It is mainly written in C++, but also has some C. It has been developed and tested on various Linux, MacOS and Windows installations. No third-party dependencies are required.\n\nHiGHS has primal and dual revised simplex solvers, originally written by Qi Huangfu and further developed by Julian Hall. It also has an interior point solver for LP written by Lukas Schork, an active set solver for QP written by Michael Feldmeier, and a MIP solver written by Leona Gottwald. Other features have been added by Julian Hall and Ivet Galabova, who manages the software engineering of HiGHS and interfaces to C, C#, FORTRAN, Julia and Python.\n\nFind out more about HiGHS at https://www.highs.dev.\n\nAlthough HiGHS is freely available under the MIT license, we would be pleased to learn about users' experience and give advice via email sent to highsopt@gmail.com.\n\n## Documentation\n\nDocumentation is available at https://ergo-code.github.io/HiGHS/.\n\n## Installation\n\n### Build from source using CMake\n\nHiGHS uses CMake as build system, and requires at least version 3.15. To generate build files in a new subdirectory called 'build', run:\n\n```shell\n cmake -S . -B build\n cmake --build build\n```\nThis installs the executable `bin/highs` and the library `lib/highs`.\n\nTo test whether the compilation was successful, change into the build directory and run\n\n```shell\n ctest\n```\nMore details on building with CMake can be found in `HiGHS/cmake/README.md`.\n\n#### Build with Meson\n\nAs an alternative, HiGHS can be installed using the `meson` build interface:\n``` sh\nmeson setup bbdir -Dwith_tests=True\nmeson test -C bbdir\n```\n_The meson build files are provided by the community and are not officially supported by the HiGHS development team._ **If you use this method and encounter issues, please consider contributing fixes or updates by checking the [HiGHS Contribution Guide](https://github.com/ERGO-Code/HiGHS/blob/master/CONTRIBUTING.md).**\n\n#### Build with Nix\n\nThere is a nix flake that provides the `highs` binary:\n\n```shell\nnix run .\n```\n\nYou can even run [without installing\nanything](https://determinate.systems/posts/nix-run/), supposing you have\ninstalled [nix](https://nixos.org/download.html):\n\n```shell\nnix run github:ERGO-Code/HiGHS\n```\n\nThe nix flake also provides the python package:\n\n```shell\nnix build .#highspy\ntree result/\n```\n\nAnd a devShell for testing it:\n\n```shell\nnix develop .#highspy\npython\n>>> import highspy\n>>> highspy.Highs()\n```\n\n_The nix build files are provided by the community and are not officially supported by the HiGHS development team._\n\n### Precompiled binaries\n\nPrecompiled static executables are available for a variety of platforms at\nhttps://github.com/JuliaBinaryWrappers/HiGHSstatic_jll.jl/releases\n\n_These binaries are provided by the Julia community and are not officially supported by the HiGHS development team. If you have trouble using these libraries, please open a GitHub issue and tag `@odow` in your question._\n\nSee https://ergo-code.github.io/HiGHS/stable/installation/#Precompiled-Binaries.\n\n## Running HiGHS\n\nHiGHS can read MPS files and (CPLEX) LP files, and the following command\nsolves the model in `ml.mps`\n\n```shell\n highs ml.mps\n```\n#### Command line options\n\nWhen HiGHS is run from the command line, some fundamental option values may be\nspecified directly. Many more may be specified via a file. Formally, the usage\nis:\n\n```shell\n$ bin/highs --help\nusage:\n ./bin/highs [options] [file]\n\noptions:\n --model_file file File of model to solve.\n --options_file file File containing HiGHS options.\n --read_solution_file file File of solution to read.\n --read_basis_file text File of initial basis to read.\n --write_model_file text File for writing out model.\n --solution_file text File for writing out solution.\n --write_basis_file text File for writing out final basis.\n --presolve text Set presolve option to:\n \"choose\" * default\n \"on\"\n \"off\"\n --solver text Set solver option to:\n \"choose\" * default\n \"simplex\"\n \"ipm\"\n --parallel text Set parallel option to:\n \"choose\" * default\n \"on\"\n \"off\"\n --run_crossover text Set run_crossover option to:\n \"choose\"\n \"on\" * default\n \"off\"\n --time_limit float Run time limit (seconds - double).\n --random_seed int Seed to initialize random number\n generation.\n --ranging text Compute cost, bound, RHS and basic\n solution ranging:\n \"on\"\n \"off\" * default\n -v, --version Print version.\n -h, --help Print help.\n\n```\nFor a full list of options, see the [options page](https://ergo-code.github.io/HiGHS/stable/options/definitions/) of the documentation website.\n\n## Interfaces\n\nThere are HiGHS interfaces for C, C#, FORTRAN, and Python in `HiGHS/highs/interfaces`, with example driver files in `HiGHS/examples/`. More on language and modelling interfaces can be found at https://ergo-code.github.io/HiGHS/stable/interfaces/other/.\n\nWe are happy to give a reasonable level of support via email sent to highsopt@gmail.com.\n\n### Python\n\nThe python package `highspy` is a thin wrapper around HiGHS and is available on [PyPi](https://pypi.org/project/highspy/). It can be easily installed via `pip` by running\n\n```shell\n$ pip install highspy\n```\n\nAlternatively, `highspy` can be built from source. Download the HiGHS source code and run\n\n```shell\npip install .\n```\nfrom the root directory.\n\nThe HiGHS C++ library no longer needs to be separately installed. The python package `highspy` depends on the `numpy` package and `numpy` will be installed as well, if it is not already present.\n\nThe installation can be tested using the small example `HiGHS/examples/call_highs_from_python_highspy.py`.\n\nThe [Google Colab Example Notebook](https://colab.research.google.com/drive/1JmHF53OYfU-0Sp9bzLw-D2TQyRABSjHb?usp=sharing) also demonstrates how to call `highspy`.\n\n### C\nThe C API is in `HiGHS/highs/interfaces/highs_c_api.h`. It is included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.\n\n### CSharp\n\nThe nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget.org/packages/Highs.Native/.\n\nIt can be added to your C# project with `dotnet`\n\n```shell\ndotnet add package Highs.Native --version 1.12.0\n```\n\nThe nuget package contains runtime libraries for\n\n* `win-x64`\n* `win-x32`\n* `linux-x64`\n* `linux-arm64`\n* `macos-x64`\n* `macos-arm64`\n\nDetails for building locally can be found in `nuget/README.md`.\n\n### Fortran\n\nThe Fortran API is in `HiGHS/highs/interfaces/highs_fortran_api.f90`. It is *not* included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.\n\n\n## Reference\n\nIf you use HiGHS in an academic context, please acknowledge this and cite the following article.\n\nParallelizing the dual revised simplex method\nQ. Huangfu and J. A. J. Hall\nMathematical Programming Computation, 10 (1), 119-142, 2018.\nDOI: [10.1007/s12532-017-0130-5](https://link.springer.com/article/10.1007/s12532-017-0130-5)\n",
"bugtrack_url": null,
"license": null,
"summary": "A thin set of pybind11 wrappers to HiGHS",
"version": "1.12.0",
"project_urls": {
"Bug Tracker": "https://github.com/ERGO-Code/HiGHS/issues",
"Source Code": "https://github.com/ERGO-Code/HiGHS"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9758d8d7b00cd1a4ddf6540e9a2b6aea2c34439ddd08979d8c274df8f57bba0c",
"md5": "f59b3c59a0042b151915de5b3096de63",
"sha256": "058df1df21e6cde9aa077d5df980912a61b6a0039568872863fdb4f5ee5b2461"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f59b3c59a0042b151915de5b3096de63",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2209122,
"upload_time": "2025-10-25T18:08:13",
"upload_time_iso_8601": "2025-10-25T18:08:13.783898Z",
"url": "https://files.pythonhosted.org/packages/97/58/d8d7b00cd1a4ddf6540e9a2b6aea2c34439ddd08979d8c274df8f57bba0c/highspy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cef8b33e5a4312629af6c47fe63ad5a66e1e3ef20782b2febf35924580749bff",
"md5": "72f34fbde729773ff7979fd82a5989d1",
"sha256": "a938ff413973b958db9ba03d238c38eff43cd7bf306fb5899b30dba9f276ecff"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "72f34fbde729773ff7979fd82a5989d1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2023637,
"upload_time": "2025-10-25T18:08:15",
"upload_time_iso_8601": "2025-10-25T18:08:15.551479Z",
"url": "https://files.pythonhosted.org/packages/ce/f8/b33e5a4312629af6c47fe63ad5a66e1e3ef20782b2febf35924580749bff/highspy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fffd80772e4e9578e9a3eb9cd3351e6c393ff7c361ba24abd30532fa2ae75671",
"md5": "dda6d97b96ea34dc53b1909dc838a72a",
"sha256": "54bfa28a4e66f11a86667d7e4244b31332a742a56d467eeb2515c0f92a5ca9c8"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "dda6d97b96ea34dc53b1909dc838a72a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2565695,
"upload_time": "2025-10-25T18:08:17",
"upload_time_iso_8601": "2025-10-25T18:08:17.069786Z",
"url": "https://files.pythonhosted.org/packages/ff/fd/80772e4e9578e9a3eb9cd3351e6c393ff7c361ba24abd30532fa2ae75671/highspy-1.12.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfc52140e155bef3e3653cb2bcaaee964e9b549039a322106bfecc0afd1b369f",
"md5": "dfbf6830a9deef7112888cdde6846d4a",
"sha256": "76911b672892a87db323cfffe28b15f8023390af20dce7a4b41a4452fabcfda3"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "dfbf6830a9deef7112888cdde6846d4a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2291667,
"upload_time": "2025-10-25T18:08:18",
"upload_time_iso_8601": "2025-10-25T18:08:18.447862Z",
"url": "https://files.pythonhosted.org/packages/df/c5/2140e155bef3e3653cb2bcaaee964e9b549039a322106bfecc0afd1b369f/highspy-1.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c98dce41b25b7b48bb7b8aa1e40e10b9c9dd85e2d7946fd489178667c5e4e2ed",
"md5": "034dcbe61310e6d88dc566a0663a8bbc",
"sha256": "569ff5c2b23e1ecf6e47c180944aa40b6975001665d1ff3f90dbe3f9ce8c49c0"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "034dcbe61310e6d88dc566a0663a8bbc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2496416,
"upload_time": "2025-10-25T18:08:20",
"upload_time_iso_8601": "2025-10-25T18:08:20.231071Z",
"url": "https://files.pythonhosted.org/packages/c9/8d/ce41b25b7b48bb7b8aa1e40e10b9c9dd85e2d7946fd489178667c5e4e2ed/highspy-1.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b86020adf8a2cb81642592bd51285eaf32ebc5b79a80470c0fda3ca06e92fcf",
"md5": "7bf62d8f0f1708bc54343ffc2951f3ca",
"sha256": "7ab01b89ae1f4dd19706902b02ea853571832608d4f936127d7fc0f1a7e528fe"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7bf62d8f0f1708bc54343ffc2951f3ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3350977,
"upload_time": "2025-10-25T18:08:21",
"upload_time_iso_8601": "2025-10-25T18:08:21.923671Z",
"url": "https://files.pythonhosted.org/packages/2b/86/020adf8a2cb81642592bd51285eaf32ebc5b79a80470c0fda3ca06e92fcf/highspy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2b424f9222be9cce69a37899e9d35e2a838f05df0691b17e28a65aa20b06f60",
"md5": "5db567cb070abbfc2be44bb569ad9769",
"sha256": "5dae7a5146aee7fe6fd2ca2d49c895ee1a2f90fc772d40613a8213b81e7724da"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5db567cb070abbfc2be44bb569ad9769",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3913977,
"upload_time": "2025-10-25T18:08:23",
"upload_time_iso_8601": "2025-10-25T18:08:23.821541Z",
"url": "https://files.pythonhosted.org/packages/e2/b4/24f9222be9cce69a37899e9d35e2a838f05df0691b17e28a65aa20b06f60/highspy-1.12.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6cfc1f0105cdf9ec26bf71e89007d80564348002cb249156007492f03eb535cd",
"md5": "dd50e79f173fd2b7c6cae861a46f29bf",
"sha256": "d042e6777d2985140f02d0d364c3d549dbcf77a955318343cfefe4da0c3d4dac"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dd50e79f173fd2b7c6cae861a46f29bf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3576915,
"upload_time": "2025-10-25T18:08:25",
"upload_time_iso_8601": "2025-10-25T18:08:25.695439Z",
"url": "https://files.pythonhosted.org/packages/6c/fc/1f0105cdf9ec26bf71e89007d80564348002cb249156007492f03eb535cd/highspy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dfa8be555792842967ddf868050c1addb5e5d5a47215911ea5575e92e592ee85",
"md5": "786f51cc2f3b873fde5c75042ebfcbdf",
"sha256": "d1395231fdfc78e714e4f7610aecb4aca258679504300a8e006e8a2beabc3bbb"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "786f51cc2f3b873fde5c75042ebfcbdf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1842254,
"upload_time": "2025-10-25T18:08:27",
"upload_time_iso_8601": "2025-10-25T18:08:27.276659Z",
"url": "https://files.pythonhosted.org/packages/df/a8/be555792842967ddf868050c1addb5e5d5a47215911ea5575e92e592ee85/highspy-1.12.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f954cedc31e2a1f02642e1d99bfe852b2589f91b0240211e6e3bc821c011342c",
"md5": "0d13a2fe5e113b6cbe7cc02495ed933e",
"sha256": "c35f4a64e3d776caa45e77e1fea18006a7ae400f436fbac7b22442f8003824ec"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "0d13a2fe5e113b6cbe7cc02495ed933e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2184145,
"upload_time": "2025-10-25T18:08:28",
"upload_time_iso_8601": "2025-10-25T18:08:28.847727Z",
"url": "https://files.pythonhosted.org/packages/f9/54/cedc31e2a1f02642e1d99bfe852b2589f91b0240211e6e3bc821c011342c/highspy-1.12.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06fac5e095a868473165de056d8d6821ec842117d4b62304389a948336e27a76",
"md5": "163af9db5c2f0437e97134901cc9366f",
"sha256": "8e9a31864c2921fe625d61df8bfe042ea693748cacf6d81b0ec78e46b3f40c95"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "163af9db5c2f0437e97134901cc9366f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2210217,
"upload_time": "2025-10-25T18:08:30",
"upload_time_iso_8601": "2025-10-25T18:08:30.286866Z",
"url": "https://files.pythonhosted.org/packages/06/fa/c5e095a868473165de056d8d6821ec842117d4b62304389a948336e27a76/highspy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfa17d101b5c6a2e3a26571eb55f1e5305f772fabfa6be4c9cc546d5c55d0f58",
"md5": "8df19a5c89843192f8656020fac41a27",
"sha256": "d2ce9eddf5de0c5301bb0997ad3772df0074f100444f334c3d84d984d5fa1d45"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8df19a5c89843192f8656020fac41a27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2025200,
"upload_time": "2025-10-25T18:08:32",
"upload_time_iso_8601": "2025-10-25T18:08:32.378671Z",
"url": "https://files.pythonhosted.org/packages/bf/a1/7d101b5c6a2e3a26571eb55f1e5305f772fabfa6be4c9cc546d5c55d0f58/highspy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5d0a7cb2945ec254cd068c8365cad2043bb8331fafe86f689cfcc014a09ec69",
"md5": "b46df62cd6cda5f19c46170fb234aecc",
"sha256": "6011bd9696fe41942d3d854a2eb661289dbb28d2964ff6e3d29282fea2c703ce"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "b46df62cd6cda5f19c46170fb234aecc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2565541,
"upload_time": "2025-10-25T18:08:34",
"upload_time_iso_8601": "2025-10-25T18:08:34.086849Z",
"url": "https://files.pythonhosted.org/packages/e5/d0/a7cb2945ec254cd068c8365cad2043bb8331fafe86f689cfcc014a09ec69/highspy-1.12.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1330478c4cbaf290b622add80846bfd5cb7e30cf5d19ecc5346b5e21933bc45c",
"md5": "ed156d202970ae931672d18dcc9e9543",
"sha256": "dcfe92716545e71ec2c9b23360df7c6bcf0a108d0035d708efbe5d8a9c2e9750"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ed156d202970ae931672d18dcc9e9543",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2292945,
"upload_time": "2025-10-25T18:08:35",
"upload_time_iso_8601": "2025-10-25T18:08:35.893642Z",
"url": "https://files.pythonhosted.org/packages/13/30/478c4cbaf290b622add80846bfd5cb7e30cf5d19ecc5346b5e21933bc45c/highspy-1.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f5f2b73cb21ba513fa98621aa88a086453eae9011c672114004f8688ac21a7e4",
"md5": "6fbf6ecfaaabc4f5dfa5fdcd1c089a49",
"sha256": "0e60360f2ef725571712ed408594165e50f503d2986552cd94dc0ab6a1b264e7"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6fbf6ecfaaabc4f5dfa5fdcd1c089a49",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2498840,
"upload_time": "2025-10-25T18:08:37",
"upload_time_iso_8601": "2025-10-25T18:08:37.246193Z",
"url": "https://files.pythonhosted.org/packages/f5/f2/b73cb21ba513fa98621aa88a086453eae9011c672114004f8688ac21a7e4/highspy-1.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "434415b1850d2b50252dfd761b9dfce2c8e8bd7bf6458ee943b87b06c6c6c858",
"md5": "76f64fa24627600c02395dd1ec145350",
"sha256": "38813111ce7f80cd350a396bb43947db4b9d90dddd6af50fa381ac07a7985392"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "76f64fa24627600c02395dd1ec145350",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3352376,
"upload_time": "2025-10-25T18:08:38",
"upload_time_iso_8601": "2025-10-25T18:08:38.589295Z",
"url": "https://files.pythonhosted.org/packages/43/44/15b1850d2b50252dfd761b9dfce2c8e8bd7bf6458ee943b87b06c6c6c858/highspy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90c2e496e36f086f4d0a28b8abca2cb4367e122719fd86a2fd0368622c765780",
"md5": "7810c79cba4ea53ec0d1306205a0a6b0",
"sha256": "4e56be011cd493a873b8e478407d2e723fa963edaa46b03df5f0b9b694f35c1d"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7810c79cba4ea53ec0d1306205a0a6b0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3914077,
"upload_time": "2025-10-25T18:08:40",
"upload_time_iso_8601": "2025-10-25T18:08:40.380345Z",
"url": "https://files.pythonhosted.org/packages/90/c2/e496e36f086f4d0a28b8abca2cb4367e122719fd86a2fd0368622c765780/highspy-1.12.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ce76fa9942ede0373cc087bbd317739fbe0078fc1dcc58e786c291aff9c66df",
"md5": "6390ac747b39d26b3fc361374d70a147",
"sha256": "fbaf2cdc501539c06393df84b13bdedf987c4aa02588e50f57d23ba3739d2c6f"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6390ac747b39d26b3fc361374d70a147",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3577646,
"upload_time": "2025-10-25T18:08:41",
"upload_time_iso_8601": "2025-10-25T18:08:41.789435Z",
"url": "https://files.pythonhosted.org/packages/7c/e7/6fa9942ede0373cc087bbd317739fbe0078fc1dcc58e786c291aff9c66df/highspy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b55206321962d19943d72f90a5cbc3b01eab0ce99171039b64e6b66093e5d9cd",
"md5": "a96cc599b6a36ce6a116f4c5afafcea7",
"sha256": "aff2a46b477593911aa16aefae8518e3fea31bf474a93ba6367f0c7c515e942b"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "a96cc599b6a36ce6a116f4c5afafcea7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1842778,
"upload_time": "2025-10-25T18:08:43",
"upload_time_iso_8601": "2025-10-25T18:08:43.565162Z",
"url": "https://files.pythonhosted.org/packages/b5/52/06321962d19943d72f90a5cbc3b01eab0ce99171039b64e6b66093e5d9cd/highspy-1.12.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c6bdd62b1dba01ac6c4118be7cb5df1bd44a757b3800411b588a43f83539399",
"md5": "4d22f59562603997def84b021cc76e33",
"sha256": "13be9cd5d17904d6a5ae02da84cd0bb115ce390e43f3c15d433d169d415a8c77"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4d22f59562603997def84b021cc76e33",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2185224,
"upload_time": "2025-10-25T18:08:45",
"upload_time_iso_8601": "2025-10-25T18:08:45.148143Z",
"url": "https://files.pythonhosted.org/packages/4c/6b/dd62b1dba01ac6c4118be7cb5df1bd44a757b3800411b588a43f83539399/highspy-1.12.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c69eacc8742d1a4ac68109a8ce3c808e81cab1c499926815e23dd39106595a3",
"md5": "ab46bd715aa6b85cc5d83975acc3580d",
"sha256": "8c8b098a57b4035d5bdbffa2a80a96232c99e4d085aa822e283e98c50a1438b8"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "ab46bd715aa6b85cc5d83975acc3580d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2212070,
"upload_time": "2025-10-25T18:08:46",
"upload_time_iso_8601": "2025-10-25T18:08:46.974318Z",
"url": "https://files.pythonhosted.org/packages/6c/69/eacc8742d1a4ac68109a8ce3c808e81cab1c499926815e23dd39106595a3/highspy-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d75025e2adb149b56354aaa31165b44304c85763f66a560e8a1492e09ce6a9a5",
"md5": "bb6aacd84084d770e8fcf634e62dce93",
"sha256": "3db2958b934d46c0e112e8f9fdba96bb1fb84cfc6f70ddd4492ea62da890fe56"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb6aacd84084d770e8fcf634e62dce93",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2029063,
"upload_time": "2025-10-25T18:08:48",
"upload_time_iso_8601": "2025-10-25T18:08:48.597604Z",
"url": "https://files.pythonhosted.org/packages/d7/50/25e2adb149b56354aaa31165b44304c85763f66a560e8a1492e09ce6a9a5/highspy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "360f9d5b3f27a4bc8ebf4c2a18cd1ef39db77fabd8b007629143416c4d6cd4fd",
"md5": "30b787816b8d606c5f84e7ae9ea4d1bc",
"sha256": "ecc5bdee740118e18ce928feaf9e309eb4a4a076f27a6780b8b363f1446801b5"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "30b787816b8d606c5f84e7ae9ea4d1bc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2562998,
"upload_time": "2025-10-25T18:08:49",
"upload_time_iso_8601": "2025-10-25T18:08:49.968914Z",
"url": "https://files.pythonhosted.org/packages/36/0f/9d5b3f27a4bc8ebf4c2a18cd1ef39db77fabd8b007629143416c4d6cd4fd/highspy-1.12.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3db8901d9702873f6e103a3b9d1a6e8e403b486d4e672e4e925d6bc1a92f8114",
"md5": "db26d42ed7ea6615941f37d22e6d7d86",
"sha256": "f6045d1d49627e1dc2f649cda4190c57c823f0cf71bec9d466363f00abbc65a7"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "db26d42ed7ea6615941f37d22e6d7d86",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2296309,
"upload_time": "2025-10-25T18:08:51",
"upload_time_iso_8601": "2025-10-25T18:08:51.651721Z",
"url": "https://files.pythonhosted.org/packages/3d/b8/901d9702873f6e103a3b9d1a6e8e403b486d4e672e4e925d6bc1a92f8114/highspy-1.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26c734fbaacecdc363d847ef9f73ff169447db9728a100ca41c4ad1a4d3fb21a",
"md5": "265d6b127db721e54b64c2fa94f6de56",
"sha256": "f3a72ecea18c0b2cd041e87599d2e0bf6f96cea7133aba838f0128608089e92f"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "265d6b127db721e54b64c2fa94f6de56",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2500486,
"upload_time": "2025-10-25T18:08:52",
"upload_time_iso_8601": "2025-10-25T18:08:52.981168Z",
"url": "https://files.pythonhosted.org/packages/26/c7/34fbaacecdc363d847ef9f73ff169447db9728a100ca41c4ad1a4d3fb21a/highspy-1.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef6946910999e0fa30f85b15b3a3d5a7a16ed5af8763323e351f0ddd7fbcfed3",
"md5": "35653e4698fced1c057313f53161ba70",
"sha256": "1df858cfc71fafef789fe87793e331a17768065f9e9505df1ff10239e4fa6a8d"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "35653e4698fced1c057313f53161ba70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3355868,
"upload_time": "2025-10-25T18:08:54",
"upload_time_iso_8601": "2025-10-25T18:08:54.308048Z",
"url": "https://files.pythonhosted.org/packages/ef/69/46910999e0fa30f85b15b3a3d5a7a16ed5af8763323e351f0ddd7fbcfed3/highspy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0d39c1c13e09cd2dd1aed77a897272d974dab36be25bcc27a0af1f704153781",
"md5": "25bca9c9208848c8b4317c42b328c859",
"sha256": "455b8688d93124b714e93f0787fb17040fcb5b1b90c59684bd44f66b3b947dbc"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "25bca9c9208848c8b4317c42b328c859",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3918497,
"upload_time": "2025-10-25T18:08:56",
"upload_time_iso_8601": "2025-10-25T18:08:56.096232Z",
"url": "https://files.pythonhosted.org/packages/e0/d3/9c1c13e09cd2dd1aed77a897272d974dab36be25bcc27a0af1f704153781/highspy-1.12.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50f96dd6f8694c8f631057199bdbcadbc2078023029021feb9f0dbdbb9b0aed5",
"md5": "63e2473cb9f13e88e328f2e83e3c4434",
"sha256": "948db9f948c79a52f5faafeb71cd8990a84b462245bb2c493d3e16938f038782"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "63e2473cb9f13e88e328f2e83e3c4434",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3581509,
"upload_time": "2025-10-25T18:08:57",
"upload_time_iso_8601": "2025-10-25T18:08:57.862605Z",
"url": "https://files.pythonhosted.org/packages/50/f9/6dd6f8694c8f631057199bdbcadbc2078023029021feb9f0dbdbb9b0aed5/highspy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d28724074f2bdb92b194d2c625a1071241a9bf23f475db850331b4256bda047f",
"md5": "bb9180b8a8c7d334ca0bdc187bbc23e1",
"sha256": "869bdcedd7c309647efef2d4968dc05609815b537f8ccd8144ec2b81c0801a8b"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "bb9180b8a8c7d334ca0bdc187bbc23e1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1843171,
"upload_time": "2025-10-25T18:08:59",
"upload_time_iso_8601": "2025-10-25T18:08:59.195347Z",
"url": "https://files.pythonhosted.org/packages/d2/87/24074f2bdb92b194d2c625a1071241a9bf23f475db850331b4256bda047f/highspy-1.12.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c48ae627c5b16e2ae0f56537b25e6176e1e7db8ea26ea85fab047518979be2f",
"md5": "ffcd1a62616bd06ec5f75936af1e0207",
"sha256": "90c3f9d575a93f0e08490f101b72b8597c7d1ad801d429f31b6ae962a1492a56"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "ffcd1a62616bd06ec5f75936af1e0207",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2183875,
"upload_time": "2025-10-25T18:09:00",
"upload_time_iso_8601": "2025-10-25T18:09:00.525055Z",
"url": "https://files.pythonhosted.org/packages/6c/48/ae627c5b16e2ae0f56537b25e6176e1e7db8ea26ea85fab047518979be2f/highspy-1.12.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c78081269c182ee4dc36e3add646088d027cc87a6cabe640901848b1dc9b1355",
"md5": "0d2b55ea9b1374a56cbb023c43c3570d",
"sha256": "79a346e811e330fb757a96e3a234b71b5d58ace44e1eba9611b13c2b6efaf0e9"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0d2b55ea9b1374a56cbb023c43c3570d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2212158,
"upload_time": "2025-10-25T18:09:01",
"upload_time_iso_8601": "2025-10-25T18:09:01.834248Z",
"url": "https://files.pythonhosted.org/packages/c7/80/81269c182ee4dc36e3add646088d027cc87a6cabe640901848b1dc9b1355/highspy-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00bdac5d300201f1ad8581c5b468ed1608ecd47e1e9d88a74cdaebf0cf74ae65",
"md5": "d3527bca129287f17fac7d67b7679d1a",
"sha256": "57512dc19e18e2daa572acc0ea9561a5c4050d592d21f6db3f8367dd38e50362"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d3527bca129287f17fac7d67b7679d1a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2029098,
"upload_time": "2025-10-25T18:09:03",
"upload_time_iso_8601": "2025-10-25T18:09:03.132892Z",
"url": "https://files.pythonhosted.org/packages/00/bd/ac5d300201f1ad8581c5b468ed1608ecd47e1e9d88a74cdaebf0cf74ae65/highspy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "becc3ed5a545ce807fb9c4a1e28e83ee474c560bc1a83335c791127a113f634b",
"md5": "5637a305772529c92e2aadfe8b29ebbc",
"sha256": "a856e6e33d6d20d177fdc1a6eb34b3b58385a6c757a05695c4b214a5c377e044"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "5637a305772529c92e2aadfe8b29ebbc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2562864,
"upload_time": "2025-10-25T18:09:04",
"upload_time_iso_8601": "2025-10-25T18:09:04.478387Z",
"url": "https://files.pythonhosted.org/packages/be/cc/3ed5a545ce807fb9c4a1e28e83ee474c560bc1a83335c791127a113f634b/highspy-1.12.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cd9f2f409200654a64759e8970533315364ebae1dc1c90e3aa71127804abf5a",
"md5": "e0d9e76277384df2e28339a24ff9dc7a",
"sha256": "550ddee715934937da6cfe58f7adceca86b0847e5f8ebd7429cc275218179b95"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e0d9e76277384df2e28339a24ff9dc7a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2296446,
"upload_time": "2025-10-25T18:09:05",
"upload_time_iso_8601": "2025-10-25T18:09:05.869304Z",
"url": "https://files.pythonhosted.org/packages/3c/d9/f2f409200654a64759e8970533315364ebae1dc1c90e3aa71127804abf5a/highspy-1.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6dcde9441001cb3e523ac620982af75d7900b702f97f08656797cec2a8db6222",
"md5": "416488718e7e53b92a4c176c5849c60e",
"sha256": "8a5c58dbd6170073f4ba1bd31e0c7b276404d1456080cb190ed51b4c817629d6"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "416488718e7e53b92a4c176c5849c60e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2500363,
"upload_time": "2025-10-25T18:09:07",
"upload_time_iso_8601": "2025-10-25T18:09:07.214354Z",
"url": "https://files.pythonhosted.org/packages/6d/cd/e9441001cb3e523ac620982af75d7900b702f97f08656797cec2a8db6222/highspy-1.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "255892b5849a2150db172a1b17ddf165b5aeda8871eabb59efd9f2c1df025b33",
"md5": "c59d8dcb72737ace4a09ad4b8be28cc4",
"sha256": "a112865dbaace2c9b7e2234bd4415dd6f2b31cb53b53d007d3e53fc3ebfdd387"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c59d8dcb72737ace4a09ad4b8be28cc4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3356311,
"upload_time": "2025-10-25T18:09:08",
"upload_time_iso_8601": "2025-10-25T18:09:08.509139Z",
"url": "https://files.pythonhosted.org/packages/25/58/92b5849a2150db172a1b17ddf165b5aeda8871eabb59efd9f2c1df025b33/highspy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9dc804b6bcbb0c9cc09efd6370ba3e6afc7aaf3b6a2f61f415ace8d223328506",
"md5": "c045471f928f47327dae37fc0d3b2e92",
"sha256": "32f970c5d35fb6f92ef40a21b27faa9f348783a1de119facd0ee8dbfa52ef478"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c045471f928f47327dae37fc0d3b2e92",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3917867,
"upload_time": "2025-10-25T18:09:09",
"upload_time_iso_8601": "2025-10-25T18:09:09.848206Z",
"url": "https://files.pythonhosted.org/packages/9d/c8/04b6bcbb0c9cc09efd6370ba3e6afc7aaf3b6a2f61f415ace8d223328506/highspy-1.12.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "51c52c1b386a219eea79af16ee29435d940baccf159ca26647715d330868aba0",
"md5": "d7175c4f66c409b88dc66302d7197ca3",
"sha256": "aa040786e1a321e2703834dd5bedf23d6998d6b42984c4b14e157036da655fd0"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d7175c4f66c409b88dc66302d7197ca3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3581079,
"upload_time": "2025-10-25T18:09:11",
"upload_time_iso_8601": "2025-10-25T18:09:11.329776Z",
"url": "https://files.pythonhosted.org/packages/51/c5/2c1b386a219eea79af16ee29435d940baccf159ca26647715d330868aba0/highspy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6473d27048c6a640326f314e2b5c8b3d80ef8459633413a08a90336b56b1e2f",
"md5": "41868b3486dccb0a934c59c6bb131ec6",
"sha256": "adb1735c625e164d1cc114a74f0628cea944b5f4a346ba0726386edbaa838479"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "41868b3486dccb0a934c59c6bb131ec6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1843105,
"upload_time": "2025-10-25T18:09:12",
"upload_time_iso_8601": "2025-10-25T18:09:12.774149Z",
"url": "https://files.pythonhosted.org/packages/b6/47/3d27048c6a640326f314e2b5c8b3d80ef8459633413a08a90336b56b1e2f/highspy-1.12.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0203b36ca44864baced84355aa37c1b66e95d46009a74887fead515ccff88b1",
"md5": "21add51c405c3ecc9f655bcd76036c16",
"sha256": "dd826ca82035d125ad3f59ed62878ca2676db1c66870e2b55e025adfa9f9e785"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "21add51c405c3ecc9f655bcd76036c16",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2183790,
"upload_time": "2025-10-25T18:09:14",
"upload_time_iso_8601": "2025-10-25T18:09:14.559750Z",
"url": "https://files.pythonhosted.org/packages/f0/20/3b36ca44864baced84355aa37c1b66e95d46009a74887fead515ccff88b1/highspy-1.12.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5518519ad8a3ee7d8eaa5659816a6a2b37205dd177eaa843134c7b7979cd388a",
"md5": "2daab3974cc6c2154b05a179901446b2",
"sha256": "f2da34ef9dba7ff6ff39da865e682bc78aa061e59e4783874449aadfa56547d6"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "2daab3974cc6c2154b05a179901446b2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2208960,
"upload_time": "2025-10-25T18:09:15",
"upload_time_iso_8601": "2025-10-25T18:09:15.857631Z",
"url": "https://files.pythonhosted.org/packages/55/18/519ad8a3ee7d8eaa5659816a6a2b37205dd177eaa843134c7b7979cd388a/highspy-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1dd397570ec96d692ff590d059155c17e84ad70aeca90244b00e3c31cc6dc41",
"md5": "36550fd114e668b2481edbbdc62f7558",
"sha256": "5d8df2ef3761b715d28e7660fcf5f5c27f2bf4d21692b8fbab9623397dc9130c"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "36550fd114e668b2481edbbdc62f7558",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2023314,
"upload_time": "2025-10-25T18:09:17",
"upload_time_iso_8601": "2025-10-25T18:09:17.247658Z",
"url": "https://files.pythonhosted.org/packages/d1/dd/397570ec96d692ff590d059155c17e84ad70aeca90244b00e3c31cc6dc41/highspy-1.12.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "814a06783180a635a4c545619bb981de9fcf45bbd2994d1c6e3b3a6684d8497b",
"md5": "05c5fc9b2b7900861b1b8d16cf502b63",
"sha256": "7b873d9103435dd668189c44ef362be6350d459a07346948fa186a87509d245b"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "05c5fc9b2b7900861b1b8d16cf502b63",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2559009,
"upload_time": "2025-10-25T18:09:18",
"upload_time_iso_8601": "2025-10-25T18:09:18.654242Z",
"url": "https://files.pythonhosted.org/packages/81/4a/06783180a635a4c545619bb981de9fcf45bbd2994d1c6e3b3a6684d8497b/highspy-1.12.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14d8cc3f17914b5bf7908cb6d130c3d7fe48091c4806b88a4011a458d23a3f1e",
"md5": "5c8ebc295c10df55a2c4df8eefac5132",
"sha256": "059eb26782a4823e0b5448e0fa7416846024ab87f90ed321562ac0751219c42e"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "5c8ebc295c10df55a2c4df8eefac5132",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2291428,
"upload_time": "2025-10-25T18:09:19",
"upload_time_iso_8601": "2025-10-25T18:09:19.977599Z",
"url": "https://files.pythonhosted.org/packages/14/d8/cc3f17914b5bf7908cb6d130c3d7fe48091c4806b88a4011a458d23a3f1e/highspy-1.12.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c34e746fc4b3a697d5fa24a81daa53a65f0e9002f3d5cfbe30be685a20fb6d46",
"md5": "72ab45c55cfe8a1a6f44ae78847ee2cb",
"sha256": "a9ac4a8eb96bbaaf445ea9424b5ce4e78ed517498096094ff357cfdc600296f3"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "72ab45c55cfe8a1a6f44ae78847ee2cb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2496008,
"upload_time": "2025-10-25T18:09:21",
"upload_time_iso_8601": "2025-10-25T18:09:21.409901Z",
"url": "https://files.pythonhosted.org/packages/c3/4e/746fc4b3a697d5fa24a81daa53a65f0e9002f3d5cfbe30be685a20fb6d46/highspy-1.12.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df93fc13d85712b6b6a67164b8ace3e9411549baa60bb64aaae6c4a8723688ce",
"md5": "7921a09987919d676cfccd36f2999474",
"sha256": "ffe3abe6e98871ff227205c59223943d023dbb5982f6501062e73c6b3f1e72bf"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7921a09987919d676cfccd36f2999474",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3351027,
"upload_time": "2025-10-25T18:09:22",
"upload_time_iso_8601": "2025-10-25T18:09:22.937679Z",
"url": "https://files.pythonhosted.org/packages/df/93/fc13d85712b6b6a67164b8ace3e9411549baa60bb64aaae6c4a8723688ce/highspy-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aab66045f8626adb62a1b9f7ecbee678b9be4bc48a317e84030faa2aca5cb9b0",
"md5": "b4a099cffc08c791f53eb4be2cb3ae1e",
"sha256": "c8b08938e8d1c697aa696619e6e153cf491eeca2004e1bc6d8d89eff0cd459ef"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b4a099cffc08c791f53eb4be2cb3ae1e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3912814,
"upload_time": "2025-10-25T18:09:25",
"upload_time_iso_8601": "2025-10-25T18:09:25.208865Z",
"url": "https://files.pythonhosted.org/packages/aa/b6/6045f8626adb62a1b9f7ecbee678b9be4bc48a317e84030faa2aca5cb9b0/highspy-1.12.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7746e9845b3ebada94787eaf9a60c88f020bf0ff95a890c885961a48e5cc58e8",
"md5": "957077ba4ca74bb1a5576ecdc44fa70a",
"sha256": "4f5e888d9ebd1105e933c564d08a657a249141181785256af69c0b6ca1841b83"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "957077ba4ca74bb1a5576ecdc44fa70a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3576624,
"upload_time": "2025-10-25T18:09:26",
"upload_time_iso_8601": "2025-10-25T18:09:26.717565Z",
"url": "https://files.pythonhosted.org/packages/77/46/e9845b3ebada94787eaf9a60c88f020bf0ff95a890c885961a48e5cc58e8/highspy-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ecddb0d2474d97ec49e24df4abe1bfe9c6be9ad01a8b3e0ba4702261ae60d3f",
"md5": "7a96e1c4120c3c43907593fe84d1cdf1",
"sha256": "5be538ee90c2ace60e038486e467d989a7238afc683c1e68b2ba626e315c10fc"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "7a96e1c4120c3c43907593fe84d1cdf1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1842220,
"upload_time": "2025-10-25T18:09:28",
"upload_time_iso_8601": "2025-10-25T18:09:28.311942Z",
"url": "https://files.pythonhosted.org/packages/7e/cd/db0d2474d97ec49e24df4abe1bfe9c6be9ad01a8b3e0ba4702261ae60d3f/highspy-1.12.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfdba036b07df490b6a868f6cfbdf30d0f1d9e7b802485be00ff90b3bc9996e4",
"md5": "4e6ca971aaca7a32d969e49fa84a4556",
"sha256": "b7c45c288fc5293e3cd06b882e8f4288c1eaebed29e79fdcecf847a7400002b6"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "4e6ca971aaca7a32d969e49fa84a4556",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2183458,
"upload_time": "2025-10-25T18:09:29",
"upload_time_iso_8601": "2025-10-25T18:09:29.661185Z",
"url": "https://files.pythonhosted.org/packages/bf/db/a036b07df490b6a868f6cfbdf30d0f1d9e7b802485be00ff90b3bc9996e4/highspy-1.12.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62ec6fc254b3af7cd2553215499f89211e321d6a0c8730bf344e6c21d63e83e8",
"md5": "0c940db7aaab732dc6022dd4656db3ed",
"sha256": "d3d6a785d38a8b51fe17e927fb5066952c56700377dbaaf4b702f9fc83a1a5b5"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0c940db7aaab732dc6022dd4656db3ed",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2209116,
"upload_time": "2025-10-25T18:09:31",
"upload_time_iso_8601": "2025-10-25T18:09:31.367458Z",
"url": "https://files.pythonhosted.org/packages/62/ec/6fc254b3af7cd2553215499f89211e321d6a0c8730bf344e6c21d63e83e8/highspy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "853c9fda9545bce4f1ff7330ed0f2eda06270372c307527a23cf305a69b29a8a",
"md5": "dde28dc3a08c30d25e5fa04ca832e884",
"sha256": "51d186d90db98f3bf43d6279428e897201d91af90a406027ce3b933480075124"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dde28dc3a08c30d25e5fa04ca832e884",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2023729,
"upload_time": "2025-10-25T18:09:32",
"upload_time_iso_8601": "2025-10-25T18:09:32.945500Z",
"url": "https://files.pythonhosted.org/packages/85/3c/9fda9545bce4f1ff7330ed0f2eda06270372c307527a23cf305a69b29a8a/highspy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d024f506e4d44bb2cfb04c613815b83841ebb40c761e93dee2cb27dde84e55a",
"md5": "a25e94afc7c042ae3c5e10c7c6e648d6",
"sha256": "4d5bd7d2017e137d0899ddaf997caa1b0d21ec88dfaa762ad45763822d1e9147"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
"has_sig": false,
"md5_digest": "a25e94afc7c042ae3c5e10c7c6e648d6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2564897,
"upload_time": "2025-10-25T18:09:34",
"upload_time_iso_8601": "2025-10-25T18:09:34.260837Z",
"url": "https://files.pythonhosted.org/packages/6d/02/4f506e4d44bb2cfb04c613815b83841ebb40c761e93dee2cb27dde84e55a/highspy-1.12.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e6a0cfccd82b0c9cc0b608e0f14d74807f12f69a391669adfa6371fc28c0c99",
"md5": "155330b81b6e6629b9ef055947f3674e",
"sha256": "8d6e08b0998e5770f9e7623d2887ee3e54cd48ec4cd4e954fca63f864e82539c"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "155330b81b6e6629b9ef055947f3674e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2292094,
"upload_time": "2025-10-25T18:09:36",
"upload_time_iso_8601": "2025-10-25T18:09:36.077877Z",
"url": "https://files.pythonhosted.org/packages/7e/6a/0cfccd82b0c9cc0b608e0f14d74807f12f69a391669adfa6371fc28c0c99/highspy-1.12.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9095fe16a73caa1cdaa8d09c5b968e5c19c7934cce2bc5a3e171964e4e356fd7",
"md5": "63f298b4873da729883d6f3052267de7",
"sha256": "a0ad5550268479616b9c6a4dd149ed84d4f60d85bb760467b71a97d48f96dc54"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "63f298b4873da729883d6f3052267de7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2496272,
"upload_time": "2025-10-25T18:09:37",
"upload_time_iso_8601": "2025-10-25T18:09:37.597954Z",
"url": "https://files.pythonhosted.org/packages/90/95/fe16a73caa1cdaa8d09c5b968e5c19c7934cce2bc5a3e171964e4e356fd7/highspy-1.12.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6eee9a65ff00053ea73e52012adffce0908c74e7627112336fd4bce8f8ecd06d",
"md5": "4e740aea052b69ad1db1c06f62abbd5e",
"sha256": "d4580c4393763b6c66d149e027c109d1758db3f7b71c4daed6efb5431dbac495"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4e740aea052b69ad1db1c06f62abbd5e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3351188,
"upload_time": "2025-10-25T18:09:39",
"upload_time_iso_8601": "2025-10-25T18:09:39.098807Z",
"url": "https://files.pythonhosted.org/packages/6e/ee/9a65ff00053ea73e52012adffce0908c74e7627112336fd4bce8f8ecd06d/highspy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98bca9e21c62c9ae56593740e1261931148bd1a5c25285a97f21084b1f214e3b",
"md5": "aaa812a6c982b7b83489a71c2c81691c",
"sha256": "e4b3edf0a229d767c0fb888839dd4c57393dabc4048ae05b91dc61b5c379238a"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "aaa812a6c982b7b83489a71c2c81691c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3913675,
"upload_time": "2025-10-25T18:09:40",
"upload_time_iso_8601": "2025-10-25T18:09:40.484290Z",
"url": "https://files.pythonhosted.org/packages/98/bc/a9e21c62c9ae56593740e1261931148bd1a5c25285a97f21084b1f214e3b/highspy-1.12.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b754d9d07ceb0300c3932743765c3e072a209032821f71e831a2c76a9e59d32d",
"md5": "2e4a26d107d29f6ac4011b879f0cf4d7",
"sha256": "54cf7ca62d86666c3d31fca497881908beda84c4a71565f3dee6084ab2ad79ae"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2e4a26d107d29f6ac4011b879f0cf4d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3576896,
"upload_time": "2025-10-25T18:09:41",
"upload_time_iso_8601": "2025-10-25T18:09:41.915333Z",
"url": "https://files.pythonhosted.org/packages/b7/54/d9d07ceb0300c3932743765c3e072a209032821f71e831a2c76a9e59d32d/highspy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5329176cae886a3cf434fc73be73e33fa9a9dee4298ccf7ebc77ea9fc0dbe05a",
"md5": "73cf2f421e0b5f7f8376e38a7add1cf8",
"sha256": "72978df416ce404db9557daa18c5de9afb8bedcd36ff3769d8a89e222381afc1"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "73cf2f421e0b5f7f8376e38a7add1cf8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1842299,
"upload_time": "2025-10-25T18:09:43",
"upload_time_iso_8601": "2025-10-25T18:09:43.310498Z",
"url": "https://files.pythonhosted.org/packages/53/29/176cae886a3cf434fc73be73e33fa9a9dee4298ccf7ebc77ea9fc0dbe05a/highspy-1.12.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "08a11ab63e25302289782fb1a95eb5b6bccfe0691960f7b70dfba9a7032786ac",
"md5": "7a7200763a580a7e2cf5ada3a732cf06",
"sha256": "5670548a33a40b865d916ebf9e182cd6549900bf759bd93132b60519c0d3d12b"
},
"downloads": -1,
"filename": "highspy-1.12.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7a7200763a580a7e2cf5ada3a732cf06",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2184865,
"upload_time": "2025-10-25T18:09:44",
"upload_time_iso_8601": "2025-10-25T18:09:44.632313Z",
"url": "https://files.pythonhosted.org/packages/08/a1/1ab63e25302289782fb1a95eb5b6bccfe0691960f7b70dfba9a7032786ac/highspy-1.12.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32ccdc47527beec1f44274186713a59fca13e6e1c71088ed6d18980dc8b90ee9",
"md5": "d4b0c8d29c749559dc6b46474d8a6606",
"sha256": "91a2da2c090597e34cd2cb57a751816ca6857c8cca8b09ae4d33960fb89ad42c"
},
"downloads": -1,
"filename": "highspy-1.12.0.tar.gz",
"has_sig": false,
"md5_digest": "d4b0c8d29c749559dc6b46474d8a6606",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1399992,
"upload_time": "2025-10-25T18:09:46",
"upload_time_iso_8601": "2025-10-25T18:09:46.242198Z",
"url": "https://files.pythonhosted.org/packages/32/cc/dc47527beec1f44274186713a59fca13e6e1c71088ed6d18980dc8b90ee9/highspy-1.12.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-25 18:09:46",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ERGO-Code",
"github_project": "HiGHS",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "highspy"
}