Name | highspy JSON |
Version |
1.9.0
JSON |
| download |
home_page | None |
Summary | A thin set of pybind11 wrappers to HiGHS |
upload_time | 2024-12-20 19:15:18 |
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](https://github.com/ERGO-Code/HiGHS/actions/workflows/build.yml/badge.svg) -->
[![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]
\
[![Conan Center](https://img.shields.io/conan/v/highs)](https://conan.io/center/recipes/highs)
\
[![PyPi](https://img.shields.io/pypi/v/highspy.svg)](https://pypi.python.org/pypi/highspy)
[![PyPi](https://img.shields.io/pypi/dm/highspy.svg)](https://pypi.python.org/pypi/highspy)
\
[![NuGet version](https://img.shields.io/nuget/v/Highs.Native.svg)](https://www.nuget.org/packages/Highs.Native)
[![NuGet download](https://img.shields.io/nuget/dt/Highs.Native.svg)](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._
#### 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:
```
$ bin/highs --help
HiGHS options
Usage:
bin/highs [OPTION...] [file]
--model_file arg File of model to solve.
--read_solution_file arg File of solution to read.
--options_file arg File containing HiGHS options.
--presolve arg Presolve: "choose" by default - "on"/"off"
are alternatives.
--solver arg Solver: "choose" by default - "simplex"/"ipm"
are alternatives.
--parallel arg Parallel solve: "choose" by default -
"on"/"off" are alternatives.
--run_crossover arg Run crossover: "on" by default -
"choose"/"off" are alternatives.
--time_limit arg Run time limit (seconds - double).
--solution_file arg File for writing out model solution.
--write_model_file arg File for writing out model.
--random_seed arg Seed to initialize random number generation.
--ranging arg Compute cost, bound, RHS and basic solution
ranging.
--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/src/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/src/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.9.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/src/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/8b/77/3b103db661372703843167d323c548ab479f812d5c633549347f748d5aee/highspy-1.9.0.tar.gz",
"platform": null,
"description": "# HiGHS - Linear optimization software\n\n<!-- ![Build Status](https://github.com/ERGO-Code/HiGHS/actions/workflows/build.yml/badge.svg) -->\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[![Conan Center](https://img.shields.io/conan/v/highs)](https://conan.io/center/recipes/highs)\n\\\n[![PyPi](https://img.shields.io/pypi/v/highspy.svg)](https://pypi.python.org/pypi/highspy)\n[![PyPi](https://img.shields.io/pypi/dm/highspy.svg)](https://pypi.python.org/pypi/highspy)\n\\\n[![NuGet version](https://img.shields.io/nuget/v/Highs.Native.svg)](https://www.nuget.org/packages/Highs.Native)\n[![NuGet download](https://img.shields.io/nuget/dt/Highs.Native.svg)](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._\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```\n$ bin/highs --help\nHiGHS options\nUsage:\n bin/highs [OPTION...] [file]\n\n --model_file arg File of model to solve.\n --read_solution_file arg File of solution to read.\n --options_file arg File containing HiGHS options.\n --presolve arg Presolve: \"choose\" by default - \"on\"/\"off\"\n are alternatives.\n --solver arg Solver: \"choose\" by default - \"simplex\"/\"ipm\"\n are alternatives.\n --parallel arg Parallel solve: \"choose\" by default -\n \"on\"/\"off\" are alternatives.\n --run_crossover arg Run crossover: \"on\" by default -\n \"choose\"/\"off\" are alternatives.\n --time_limit arg Run time limit (seconds - double).\n --solution_file arg File for writing out model solution.\n --write_model_file arg File for writing out model.\n --random_seed arg Seed to initialize random number generation.\n --ranging arg Compute cost, bound, RHS and basic solution\n ranging.\n --version Print version.\n -h, --help Print help.\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/src/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/src/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.9.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/src/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.9.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": "",
"digests": {
"blake2b_256": "08fa6a71ab3b828d0a042b9568a00f9214a7c1e76a936ec679fda0a276773b70",
"md5": "462229e075dc173fae2f3f9a4fe1bd21",
"sha256": "acb2258986344460ed6737608b944e556fd8c0e472bdc9455e7d76548abab8e3"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "462229e075dc173fae2f3f9a4fe1bd21",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2149189,
"upload_time": "2024-12-20T19:12:50",
"upload_time_iso_8601": "2024-12-20T19:12:50.959617Z",
"url": "https://files.pythonhosted.org/packages/08/fa/6a71ab3b828d0a042b9568a00f9214a7c1e76a936ec679fda0a276773b70/highspy-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "899215a45ddadad91276db829061e7d9ab5d6eba28c73efa99e64a11d1538a7e",
"md5": "bcf5e01f0ade1af089ff9ff54096cc96",
"sha256": "b51baeba8d349fff7b904e5e9917af9e7f250dc705e228be00d8294b5d4fa913"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bcf5e01f0ade1af089ff9ff54096cc96",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1841067,
"upload_time": "2024-12-20T19:12:54",
"upload_time_iso_8601": "2024-12-20T19:12:54.496032Z",
"url": "https://files.pythonhosted.org/packages/89/92/15a45ddadad91276db829061e7d9ab5d6eba28c73efa99e64a11d1538a7e/highspy-1.9.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59a80c062e5c7c43cfb1156c019f0d3de4c26c11f177ea2aee6e7d5dcdb4c74f",
"md5": "63e41c18ede3e5f3c0f55e20a67d2eb0",
"sha256": "3e37d4fd6a7a64f85da9123a8d8ea24964f3c79f5e8b98ba938b6d64df03f147"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "63e41c18ede3e5f3c0f55e20a67d2eb0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2063953,
"upload_time": "2024-12-20T19:12:57",
"upload_time_iso_8601": "2024-12-20T19:12:57.534493Z",
"url": "https://files.pythonhosted.org/packages/59/a8/0c062e5c7c43cfb1156c019f0d3de4c26c11f177ea2aee6e7d5dcdb4c74f/highspy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2edc0149da175941c50b2452a46a6ec4b000efa8a4a829526ac81f4bd52b6e35",
"md5": "e28255e5b50f58560b5b0df029c1420e",
"sha256": "8ce4e2b7f96be5ac744d25ba42046b79ab8b3db74843834a05d0fe2aa8748c7b"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e28255e5b50f58560b5b0df029c1420e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2383808,
"upload_time": "2024-12-20T19:12:59",
"upload_time_iso_8601": "2024-12-20T19:12:59.530134Z",
"url": "https://files.pythonhosted.org/packages/2e/dc/0149da175941c50b2452a46a6ec4b000efa8a4a829526ac81f4bd52b6e35/highspy-1.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "896e4e28a70a7100b9dc52e86ae5e237836345f4139b88ce89be46fc1537f6c9",
"md5": "187148ba278c2ab64a272cd24c4c1e3f",
"sha256": "15f450c94fa017691892141cbd2db9abd8587a5b2f04d6dd538b9a67d05567a1"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "187148ba278c2ab64a272cd24c4c1e3f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2247890,
"upload_time": "2024-12-20T19:13:01",
"upload_time_iso_8601": "2024-12-20T19:13:01.534338Z",
"url": "https://files.pythonhosted.org/packages/89/6e/4e28a70a7100b9dc52e86ae5e237836345f4139b88ce89be46fc1537f6c9/highspy-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a863602e15cbf7ca5e50de9d4bc9ecbf3d000985435c8485b571235f478119ff",
"md5": "a877ad1898a4937f113e3fd43b82705a",
"sha256": "6e84042f7fbec722f73f7faa01d3a0a9c05a05776c1deedb3548d0747bb59938"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a877ad1898a4937f113e3fd43b82705a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3047409,
"upload_time": "2024-12-20T19:13:03",
"upload_time_iso_8601": "2024-12-20T19:13:03.849563Z",
"url": "https://files.pythonhosted.org/packages/a8/63/602e15cbf7ca5e50de9d4bc9ecbf3d000985435c8485b571235f478119ff/highspy-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8419affbd2d1e629b2e2d06d692c1d83f328875ac20fa01146910f30b5936fa",
"md5": "197f64435f8876e92d0ffdd332fd352a",
"sha256": "016f6aaa1bd49ff13ae8af9e1c7688c344480b693f1ef11ee4fbe178247f68d2"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "197f64435f8876e92d0ffdd332fd352a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3574314,
"upload_time": "2024-12-20T19:13:07",
"upload_time_iso_8601": "2024-12-20T19:13:07.161691Z",
"url": "https://files.pythonhosted.org/packages/a8/41/9affbd2d1e629b2e2d06d692c1d83f328875ac20fa01146910f30b5936fa/highspy-1.9.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2776e5bdc534f057d57cee4f89837488a7bc8a82764f68ecb851b71a3eadcfe4",
"md5": "80d65d909ffedc53bebd31ff53ad277b",
"sha256": "0e3770bf7d01f9eef489b8c33a74345b2fcf3c78047da695f9607ddee3ec5fc9"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "80d65d909ffedc53bebd31ff53ad277b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3247003,
"upload_time": "2024-12-20T19:13:09",
"upload_time_iso_8601": "2024-12-20T19:13:09.253061Z",
"url": "https://files.pythonhosted.org/packages/27/76/e5bdc534f057d57cee4f89837488a7bc8a82764f68ecb851b71a3eadcfe4/highspy-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a3974329f1da78537c31ae2d1ac026589bca87817821ca32e927661669a5e25a",
"md5": "8ce1492e52f948a3526f337a432910c9",
"sha256": "14bf840d5fce70800c53ed0b2ef701d5363c53d2b65c736130ca8e83869d70d9"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "8ce1492e52f948a3526f337a432910c9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1562726,
"upload_time": "2024-12-20T19:13:11",
"upload_time_iso_8601": "2024-12-20T19:13:11.214386Z",
"url": "https://files.pythonhosted.org/packages/a3/97/4329f1da78537c31ae2d1ac026589bca87817821ca32e927661669a5e25a/highspy-1.9.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "117ee11cebf638de2c9806335aab7047c07d9d64aee2a551c24dba8db4a77b92",
"md5": "556209479bd5f5bc7356e7d177490b76",
"sha256": "aef7264845a4784b7f42e6fe15fe09aa4250d68efc51737c47c94f6d444e3ba0"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "556209479bd5f5bc7356e7d177490b76",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1870243,
"upload_time": "2024-12-20T19:13:13",
"upload_time_iso_8601": "2024-12-20T19:13:13.883212Z",
"url": "https://files.pythonhosted.org/packages/11/7e/e11cebf638de2c9806335aab7047c07d9d64aee2a551c24dba8db4a77b92/highspy-1.9.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48a37a5832c08a567bb3e2b24307a87fc3279fbe3888532d1cc8766f49693d36",
"md5": "9d95826bed1bac906c4890488b90bbbe",
"sha256": "244b72ff31bd0cfb736893aecf1b324f9155bab020414ad89710319fb3cda17a"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9d95826bed1bac906c4890488b90bbbe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2151196,
"upload_time": "2024-12-20T19:13:16",
"upload_time_iso_8601": "2024-12-20T19:13:16.240657Z",
"url": "https://files.pythonhosted.org/packages/48/a3/7a5832c08a567bb3e2b24307a87fc3279fbe3888532d1cc8766f49693d36/highspy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aab517c654e5d9e0d69649af01f6cc5ba133a622b942c0327df3d056288db013",
"md5": "b9d92ed7408bb9d3c973c9fd679112c3",
"sha256": "830da7691d39b0ef3266bdcdc805f15a215f1b91fe01cb2bb39ca9fb25e2fcfc"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b9d92ed7408bb9d3c973c9fd679112c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1841765,
"upload_time": "2024-12-20T19:13:17",
"upload_time_iso_8601": "2024-12-20T19:13:17.976829Z",
"url": "https://files.pythonhosted.org/packages/aa/b5/17c654e5d9e0d69649af01f6cc5ba133a622b942c0327df3d056288db013/highspy-1.9.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb33b878f6faa73888286efa72717a6d9ad49b2aab4f321a7081a455495564da",
"md5": "702d507458b83a9308117f82c167befe",
"sha256": "79a15b420cfe45b53e0a7b8e2096bfb407ae763f338cd2a43ba6acd987266697"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "702d507458b83a9308117f82c167befe",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2065797,
"upload_time": "2024-12-20T19:13:19",
"upload_time_iso_8601": "2024-12-20T19:13:19.856821Z",
"url": "https://files.pythonhosted.org/packages/eb/33/b878f6faa73888286efa72717a6d9ad49b2aab4f321a7081a455495564da/highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fd21aa39bb9d381ecb0122a90e6e48480358e284a2891ff51cdf90b4a885857",
"md5": "aa7802ed37f7008d9a37107ef61772f6",
"sha256": "86977e537c2152e998c7e5d62a0a333507a314dae374daebad1dc2cdc5616d5e"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "aa7802ed37f7008d9a37107ef61772f6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2384941,
"upload_time": "2024-12-20T19:13:22",
"upload_time_iso_8601": "2024-12-20T19:13:22.013957Z",
"url": "https://files.pythonhosted.org/packages/2f/d2/1aa39bb9d381ecb0122a90e6e48480358e284a2891ff51cdf90b4a885857/highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eea2e825e8bed155f9df748ea9319a83c2c89ab860ddf89656986b3964236d34",
"md5": "de5483057348303320e6a3dad7344ea6",
"sha256": "664048c40ad4ee6b8b7aa279a46803a448dff6079940b85cc5fbcc2d9fde1cce"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "de5483057348303320e6a3dad7344ea6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2248144,
"upload_time": "2024-12-20T19:13:25",
"upload_time_iso_8601": "2024-12-20T19:13:25.867036Z",
"url": "https://files.pythonhosted.org/packages/ee/a2/e825e8bed155f9df748ea9319a83c2c89ab860ddf89656986b3964236d34/highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c32a4b7d1498defcb5651f651d7f234a744c9de4658b9ddaf0155e1e211272c",
"md5": "9424a32a8ba4e12496715f1a96521865",
"sha256": "d2fbec2a5c7ff42ed1fb9f54c4c5141fcaa070ed5884b7f966fde45921fb16c3"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9424a32a8ba4e12496715f1a96521865",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3046337,
"upload_time": "2024-12-20T19:13:28",
"upload_time_iso_8601": "2024-12-20T19:13:28.454557Z",
"url": "https://files.pythonhosted.org/packages/5c/32/a4b7d1498defcb5651f651d7f234a744c9de4658b9ddaf0155e1e211272c/highspy-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a4e4548176b287567917c7e60868eb819cd70e619663c749384feab468c3e62",
"md5": "4c605a826b3c7e89f805e700e89c6d97",
"sha256": "2b97e07c5921a14a40cca32fcc8477853cc9a6e909b2f0ef44fb94d2be6d4e8e"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4c605a826b3c7e89f805e700e89c6d97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3573045,
"upload_time": "2024-12-20T19:13:31",
"upload_time_iso_8601": "2024-12-20T19:13:31.818986Z",
"url": "https://files.pythonhosted.org/packages/0a/4e/4548176b287567917c7e60868eb819cd70e619663c749384feab468c3e62/highspy-1.9.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c3b78c8eaa0f2a6a20ddb1f8c488ba6dd787baf31fd79902301b58f5f75f72c",
"md5": "3cae788b8681edfe645a97e6f814c7ca",
"sha256": "43d1612e9091a2fe07bad2e24dea12f0e67bb77014c59281407cd72fd704de5b"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3cae788b8681edfe645a97e6f814c7ca",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3250008,
"upload_time": "2024-12-20T19:13:34",
"upload_time_iso_8601": "2024-12-20T19:13:34.448159Z",
"url": "https://files.pythonhosted.org/packages/5c/3b/78c8eaa0f2a6a20ddb1f8c488ba6dd787baf31fd79902301b58f5f75f72c/highspy-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "42b2c1e07d7c55e2bb6f7a5c2ee0d57e0fd6d848261a263e6e6cf419e38cfe40",
"md5": "b0a3e0bdd5cc3d28e3fea436d31f5a45",
"sha256": "95662940d87c9f3894e8e78a405f8701af7326e28db38b524ea19119821c3b8c"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b0a3e0bdd5cc3d28e3fea436d31f5a45",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1563554,
"upload_time": "2024-12-20T19:13:37",
"upload_time_iso_8601": "2024-12-20T19:13:37.713972Z",
"url": "https://files.pythonhosted.org/packages/42/b2/c1e07d7c55e2bb6f7a5c2ee0d57e0fd6d848261a263e6e6cf419e38cfe40/highspy-1.9.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35e9aa8fce2ac95124bc880761856207e7b02263730a4eb1a9cfb97116a26b44",
"md5": "6e38a933ebca3f7af4760b12e0de7c5b",
"sha256": "18827d2e7e2d1b013b2c5eac0923646942700ff5683a93c23c383370861d424d"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6e38a933ebca3f7af4760b12e0de7c5b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1871049,
"upload_time": "2024-12-20T19:13:41",
"upload_time_iso_8601": "2024-12-20T19:13:41.246322Z",
"url": "https://files.pythonhosted.org/packages/35/e9/aa8fce2ac95124bc880761856207e7b02263730a4eb1a9cfb97116a26b44/highspy-1.9.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae0d088bd34992071335839b2f62bc1fe7831e3bc57a90406b48295aa843ab37",
"md5": "e2054f1ffe354a6ead5c1467a2640e6f",
"sha256": "9509c4cdb70171a21c98fadbcd85e4f53d54b3106258a009486816153eb29847"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "e2054f1ffe354a6ead5c1467a2640e6f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2153200,
"upload_time": "2024-12-20T19:13:43",
"upload_time_iso_8601": "2024-12-20T19:13:43.342650Z",
"url": "https://files.pythonhosted.org/packages/ae/0d/088bd34992071335839b2f62bc1fe7831e3bc57a90406b48295aa843ab37/highspy-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1624507a4b7a45f5554b8593ccceaf377270fe9a0c8ffd8c057cf26986ee3658",
"md5": "5db838b223f50468fe201f7603a1df9f",
"sha256": "73e430ebe85f4b6fbbebd98ae53d47b12cebfd8cbee6fffd17760efc8780ce36"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5db838b223f50468fe201f7603a1df9f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1843422,
"upload_time": "2024-12-20T19:13:44",
"upload_time_iso_8601": "2024-12-20T19:13:44.950088Z",
"url": "https://files.pythonhosted.org/packages/16/24/507a4b7a45f5554b8593ccceaf377270fe9a0c8ffd8c057cf26986ee3658/highspy-1.9.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10f5aea6b779925bfd449a8857c3ec527333b4a5914b6c7ded445da8cad4fd70",
"md5": "14209ee9aebde7c1955436a7b4948e49",
"sha256": "04ed0b41e9e2e1ad4c2ce7580562cd6b45cf872d63f3c5e21e36e3d399eb9b2b"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "14209ee9aebde7c1955436a7b4948e49",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2057475,
"upload_time": "2024-12-20T19:13:46",
"upload_time_iso_8601": "2024-12-20T19:13:46.723794Z",
"url": "https://files.pythonhosted.org/packages/10/f5/aea6b779925bfd449a8857c3ec527333b4a5914b6c7ded445da8cad4fd70/highspy-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9451acd79703d1bdb745b0e6f596a77b7db209291ddfdba4982f61f023e5a37",
"md5": "ea8a8610c9ce7a58ccac49a5b9b9d47c",
"sha256": "37dc773702bcbf155e70b822b652fc9b96b2e190c70d1402de8711a177e75690"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ea8a8610c9ce7a58ccac49a5b9b9d47c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2372525,
"upload_time": "2024-12-20T19:13:50",
"upload_time_iso_8601": "2024-12-20T19:13:50.965905Z",
"url": "https://files.pythonhosted.org/packages/f9/45/1acd79703d1bdb745b0e6f596a77b7db209291ddfdba4982f61f023e5a37/highspy-1.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09753cb42a6d561f288f178b38e0f822a4c4f79c7bc4cace11ce895121941b6c",
"md5": "1ba2426c91894d2e2fdd24855c8017b7",
"sha256": "57d2748e1c08d6d293402e2fb4cb6d44bfd4114dce438ae536a8cf8ddabe0e90"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1ba2426c91894d2e2fdd24855c8017b7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2234977,
"upload_time": "2024-12-20T19:13:52",
"upload_time_iso_8601": "2024-12-20T19:13:52.865769Z",
"url": "https://files.pythonhosted.org/packages/09/75/3cb42a6d561f288f178b38e0f822a4c4f79c7bc4cace11ce895121941b6c/highspy-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44bdec6861d22e5a6891b84c37e711d7801eca5b70234dbac58a67415c19ba8c",
"md5": "60c39a9e9a4709d497de1387bbdbd33f",
"sha256": "e0809e15532688f0d16c4e27dcf4bb0a67b3d7a548373710176ff1c375b55ca5"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "60c39a9e9a4709d497de1387bbdbd33f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3045209,
"upload_time": "2024-12-20T19:13:54",
"upload_time_iso_8601": "2024-12-20T19:13:54.644126Z",
"url": "https://files.pythonhosted.org/packages/44/bd/ec6861d22e5a6891b84c37e711d7801eca5b70234dbac58a67415c19ba8c/highspy-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2a4bcb297d83a658dbf4faecb6a8bdf5999d03e88ac9950ba7f36e6acbb7ebe",
"md5": "f65635c20545c3f4444dcaa746aadb99",
"sha256": "2a3bcc624804c661edeed982dccc667abc7dabd3298633e6e3b2e1dab733953f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f65635c20545c3f4444dcaa746aadb99",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3573139,
"upload_time": "2024-12-20T19:13:56",
"upload_time_iso_8601": "2024-12-20T19:13:56.695514Z",
"url": "https://files.pythonhosted.org/packages/c2/a4/bcb297d83a658dbf4faecb6a8bdf5999d03e88ac9950ba7f36e6acbb7ebe/highspy-1.9.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "efc011c381826af55977fcefc467399e0fbe777b0ab0fab6dbb1458094acc1ba",
"md5": "851714fa746fc73fa7a0455a1a528b2f",
"sha256": "be067a7a775811ddd03929ce8ba71d3d8dbce079e74afda0eb8155ddf85c74f2"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "851714fa746fc73fa7a0455a1a528b2f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3245431,
"upload_time": "2024-12-20T19:14:00",
"upload_time_iso_8601": "2024-12-20T19:14:00.139354Z",
"url": "https://files.pythonhosted.org/packages/ef/c0/11c381826af55977fcefc467399e0fbe777b0ab0fab6dbb1458094acc1ba/highspy-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "510a90a8161e13281af61e12e38aeedf561a21ea921b2d96e7a2d5301f6c506e",
"md5": "b9523e59aff238d21ca945fea6568314",
"sha256": "840ad28b3a937c3129e6efe40d3ed86391a6005d5878f832eadde222cd4c1895"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b9523e59aff238d21ca945fea6568314",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1561810,
"upload_time": "2024-12-20T19:14:02",
"upload_time_iso_8601": "2024-12-20T19:14:02.239899Z",
"url": "https://files.pythonhosted.org/packages/51/0a/90a8161e13281af61e12e38aeedf561a21ea921b2d96e7a2d5301f6c506e/highspy-1.9.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dc8ec26b570a9f953bc7f5bdaaa471c1da334eb6d00d48ad75f5781dbab4c60",
"md5": "78afec6e1113fd000311180e920ba581",
"sha256": "fcf93ef8e8440b8d900c21c33e5fc8e2041e7d54bb680bc617c5a8d71c084454"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "78afec6e1113fd000311180e920ba581",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1871889,
"upload_time": "2024-12-20T19:14:04",
"upload_time_iso_8601": "2024-12-20T19:14:04.001568Z",
"url": "https://files.pythonhosted.org/packages/1d/c8/ec26b570a9f953bc7f5bdaaa471c1da334eb6d00d48ad75f5781dbab4c60/highspy-1.9.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85e49411cb5918f88894bf899f9737a67ac8e197d33c9b2119bbe4af60417cfe",
"md5": "54658b26871cc2d2acf5f11bedbbdb6b",
"sha256": "9eea8125342c2049e6e81c808e1995e78aa0ba09e505d7d0d78b5997f8c9240d"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "54658b26871cc2d2acf5f11bedbbdb6b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2153271,
"upload_time": "2024-12-20T19:14:06",
"upload_time_iso_8601": "2024-12-20T19:14:06.319374Z",
"url": "https://files.pythonhosted.org/packages/85/e4/9411cb5918f88894bf899f9737a67ac8e197d33c9b2119bbe4af60417cfe/highspy-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4da7442d7720a9a01f189f36c626473c150a9fdd11cab9eb99c62cb178989ba0",
"md5": "addae95ca73aa95f8b9d467441b62701",
"sha256": "22580ac1fbce24bae9fbb906d1967d6c6798401a1f134dfc46a5f87c58791e47"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "addae95ca73aa95f8b9d467441b62701",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1843436,
"upload_time": "2024-12-20T19:14:07",
"upload_time_iso_8601": "2024-12-20T19:14:07.999024Z",
"url": "https://files.pythonhosted.org/packages/4d/a7/442d7720a9a01f189f36c626473c150a9fdd11cab9eb99c62cb178989ba0/highspy-1.9.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c55c6eb6ccfb16b591bbbdd22bc6d45c03e68140d5cf34cc2fcdda1ba784d489",
"md5": "354b2dae7f3dcc7b6fa959cc6065d3b0",
"sha256": "22c8217c05f3df3bf9326aba777b2808d4da5757f156e4a20058d360e6a002a6"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "354b2dae7f3dcc7b6fa959cc6065d3b0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2057482,
"upload_time": "2024-12-20T19:14:09",
"upload_time_iso_8601": "2024-12-20T19:14:09.921691Z",
"url": "https://files.pythonhosted.org/packages/c5/5c/6eb6ccfb16b591bbbdd22bc6d45c03e68140d5cf34cc2fcdda1ba784d489/highspy-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2ed7160f0900d5eba0c6e36398f6b8375142323ecabdfb2041e3901973d080c",
"md5": "8b7d744486358841837695c6f78fe0e4",
"sha256": "adbf983e661b651d1c27c9a9e7d63e5c8a311986b05e3944777752060ea41b1f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8b7d744486358841837695c6f78fe0e4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2372449,
"upload_time": "2024-12-20T19:14:12",
"upload_time_iso_8601": "2024-12-20T19:14:12.370869Z",
"url": "https://files.pythonhosted.org/packages/b2/ed/7160f0900d5eba0c6e36398f6b8375142323ecabdfb2041e3901973d080c/highspy-1.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d90383ccebbbd2233e478684884c2f4ef9d680939c2336f3292d40c29d4437b1",
"md5": "bfd338fd9839cc8b9f9c62f874bfa579",
"sha256": "1804f7d5fbf404ebab22033728582b745a793b3c9015285eb2ab8bac97438e61"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bfd338fd9839cc8b9f9c62f874bfa579",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2234790,
"upload_time": "2024-12-20T19:14:14",
"upload_time_iso_8601": "2024-12-20T19:14:14.082117Z",
"url": "https://files.pythonhosted.org/packages/d9/03/83ccebbbd2233e478684884c2f4ef9d680939c2336f3292d40c29d4437b1/highspy-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "931c6fd80e197332cac6b72bbb0e4e75b2630c3a8b62438ec11558d88223289d",
"md5": "1ac61b9bb8231236a890edf250b55a72",
"sha256": "0cbf60020769bc0b1af5da8efa65f9f50397d9d441079133f76ad962524ed20f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1ac61b9bb8231236a890edf250b55a72",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3045276,
"upload_time": "2024-12-20T19:14:16",
"upload_time_iso_8601": "2024-12-20T19:14:16.219417Z",
"url": "https://files.pythonhosted.org/packages/93/1c/6fd80e197332cac6b72bbb0e4e75b2630c3a8b62438ec11558d88223289d/highspy-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91ab6bd4743749b7f569d67b8b3ac896c0cc87658bcfb55b816f27cce0d56161",
"md5": "b987bcc1f5222110074914fbd7be60b9",
"sha256": "45d47d7c5421db8075fbef930f3a3a7e4e86f14f21ed74b6e50facdb65c3ea87"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b987bcc1f5222110074914fbd7be60b9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3573156,
"upload_time": "2024-12-20T19:14:18",
"upload_time_iso_8601": "2024-12-20T19:14:18.453219Z",
"url": "https://files.pythonhosted.org/packages/91/ab/6bd4743749b7f569d67b8b3ac896c0cc87658bcfb55b816f27cce0d56161/highspy-1.9.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0de0de13d9b478c352ea051b10255effa8acea1615cd395a364c77dd9032030",
"md5": "87a2dc3f025cb60089d93e9886b21a7d",
"sha256": "4c0e8004bef64df1537286e5dac5fb2f3ddc152ef205d3e2e8786bcaced08e92"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "87a2dc3f025cb60089d93e9886b21a7d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3245380,
"upload_time": "2024-12-20T19:14:21",
"upload_time_iso_8601": "2024-12-20T19:14:21.753063Z",
"url": "https://files.pythonhosted.org/packages/a0/de/0de13d9b478c352ea051b10255effa8acea1615cd395a364c77dd9032030/highspy-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38de14d2f8e73fc79ab82a6f9fee81e90783d3aa15c3e21762d695090b2c98d8",
"md5": "fcce84186f212a38c2577c40fc770158",
"sha256": "a77eb1e06278ef23ed5778a3c4e9348c57d917d9197c7d2cf30acea151089b59"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "fcce84186f212a38c2577c40fc770158",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1561805,
"upload_time": "2024-12-20T19:14:23",
"upload_time_iso_8601": "2024-12-20T19:14:23.720036Z",
"url": "https://files.pythonhosted.org/packages/38/de/14d2f8e73fc79ab82a6f9fee81e90783d3aa15c3e21762d695090b2c98d8/highspy-1.9.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0e19cd0c9860bc562ca872a029441ac42e586c0e5ed15c0d4c470b17dd3f0b0",
"md5": "8f1b7eb0f38b46ae9c96ce0545e976c3",
"sha256": "9151e47745a3605617b200f173af46bd1aee5ef06083a17e9781d806ee9ed1fd"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f1b7eb0f38b46ae9c96ce0545e976c3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1871841,
"upload_time": "2024-12-20T19:14:26",
"upload_time_iso_8601": "2024-12-20T19:14:26.786667Z",
"url": "https://files.pythonhosted.org/packages/b0/e1/9cd0c9860bc562ca872a029441ac42e586c0e5ed15c0d4c470b17dd3f0b0/highspy-1.9.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49cd95ac699f32406dc468d9daab6e482fd32e6fd80e50d00e44da76eeb5abe4",
"md5": "f066d534bca9f1cce39f7f53924b79c7",
"sha256": "48ab910e7f5e200d0394679fc571efc74347e47de6a4710caa3a24b69ea652fd"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f066d534bca9f1cce39f7f53924b79c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2149319,
"upload_time": "2024-12-20T19:14:28",
"upload_time_iso_8601": "2024-12-20T19:14:28.508794Z",
"url": "https://files.pythonhosted.org/packages/49/cd/95ac699f32406dc468d9daab6e482fd32e6fd80e50d00e44da76eeb5abe4/highspy-1.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73d1105587fcf9e8e1209c380201c57de1655404dff0a09175dfd4e495e1f2ab",
"md5": "98654848313c6b6f3cfad56d6551347b",
"sha256": "dd3da283550b75998a553f9bf639bf7580ec161afef840adf294c24d18a33d62"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "98654848313c6b6f3cfad56d6551347b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1840994,
"upload_time": "2024-12-20T19:14:30",
"upload_time_iso_8601": "2024-12-20T19:14:30.425251Z",
"url": "https://files.pythonhosted.org/packages/73/d1/105587fcf9e8e1209c380201c57de1655404dff0a09175dfd4e495e1f2ab/highspy-1.9.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "effc5831d34fa342b314427fe77defb8d9362a9fa4d9161ecea8f0f267eefa24",
"md5": "faec88cf63779ac4dfa4f2601e23f161",
"sha256": "50e7a24be43126ef715fdd6ba03b1140186452f124c6c6597dafc9063220110a"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "faec88cf63779ac4dfa4f2601e23f161",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2064160,
"upload_time": "2024-12-20T19:14:33",
"upload_time_iso_8601": "2024-12-20T19:14:33.692150Z",
"url": "https://files.pythonhosted.org/packages/ef/fc/5831d34fa342b314427fe77defb8d9362a9fa4d9161ecea8f0f267eefa24/highspy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d5b12d47f8efa534a3acca872e6a0328e2a70fc28b271fc15df0c8ccddd21a2",
"md5": "ef4b3011d5feb2afcb3829d60eabf95c",
"sha256": "bdf5c320cc51912e8d92614de2d2e7df73f541dc82acd341bd4db8220dd54835"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ef4b3011d5feb2afcb3829d60eabf95c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2383524,
"upload_time": "2024-12-20T19:14:35",
"upload_time_iso_8601": "2024-12-20T19:14:35.455633Z",
"url": "https://files.pythonhosted.org/packages/7d/5b/12d47f8efa534a3acca872e6a0328e2a70fc28b271fc15df0c8ccddd21a2/highspy-1.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b18e8df12ebd67dda57efcf78c63e0479036c0c5a7683e95112079f6663c60c",
"md5": "e28c0e705d0f742b3704297173ef0b8e",
"sha256": "f64da580fa16dd9e21410ef5fb3e582dec4a84191396a2c3bdc4d8e4b73b403c"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e28c0e705d0f742b3704297173ef0b8e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2247463,
"upload_time": "2024-12-20T19:14:38",
"upload_time_iso_8601": "2024-12-20T19:14:38.737333Z",
"url": "https://files.pythonhosted.org/packages/2b/18/e8df12ebd67dda57efcf78c63e0479036c0c5a7683e95112079f6663c60c/highspy-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d3f2ef56a6025f7b51c753d6b843aa6b19f97707ea7ad8b00d1220a321c7e26",
"md5": "12d0e705a71f40fc9057cd6b312238db",
"sha256": "ba6f5a769868b17bfb6713fed4ec2a5edb534b96c8b0f5d95e2ff702bb55c540"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "12d0e705a71f40fc9057cd6b312238db",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3044345,
"upload_time": "2024-12-20T19:14:40",
"upload_time_iso_8601": "2024-12-20T19:14:40.765142Z",
"url": "https://files.pythonhosted.org/packages/6d/3f/2ef56a6025f7b51c753d6b843aa6b19f97707ea7ad8b00d1220a321c7e26/highspy-1.9.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29ecca230c18e3c58662a2b50027bc5dfad414ab057cc859adb56af746248562",
"md5": "dc9930bdd7678e4dc4b14f365157dc22",
"sha256": "68bfa11f62a8c57cc56529cfc2bef51f10221b787360e096005912a90dc1cc83"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dc9930bdd7678e4dc4b14f365157dc22",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3573805,
"upload_time": "2024-12-20T19:14:42",
"upload_time_iso_8601": "2024-12-20T19:14:42.818210Z",
"url": "https://files.pythonhosted.org/packages/29/ec/ca230c18e3c58662a2b50027bc5dfad414ab057cc859adb56af746248562/highspy-1.9.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8cde5c3b301590b9263c3cba319b8a983a907227e07d6dcbbf0ee01e1e8b560d",
"md5": "5c7a2a8b001ef3dca8d14f3ed54bb7bc",
"sha256": "c7b9381d2d63a637490389076f26df584b8f8e7835444eb36987818e32fed12b"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5c7a2a8b001ef3dca8d14f3ed54bb7bc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3247647,
"upload_time": "2024-12-20T19:14:44",
"upload_time_iso_8601": "2024-12-20T19:14:44.825126Z",
"url": "https://files.pythonhosted.org/packages/8c/de/5c3b301590b9263c3cba319b8a983a907227e07d6dcbbf0ee01e1e8b560d/highspy-1.9.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b9e97035dca0e6fdbfd547e062ae6bed3ee0f910a9849f1b5a2d7fb51880670",
"md5": "8c1771c6c5416f49af14fd126865fa34",
"sha256": "e86288464dbe7f7fd0d2e20e63c9923b27d021c253f467bf2161955db3de775e"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "8c1771c6c5416f49af14fd126865fa34",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1563109,
"upload_time": "2024-12-20T19:14:46",
"upload_time_iso_8601": "2024-12-20T19:14:46.885227Z",
"url": "https://files.pythonhosted.org/packages/4b/9e/97035dca0e6fdbfd547e062ae6bed3ee0f910a9849f1b5a2d7fb51880670/highspy-1.9.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1d0882a0cd3e9f22302b6d522c5015db144d6c9f126ee5a40ee13b2ed52b14a",
"md5": "59f01edbc46f93715933c2774c26b2a5",
"sha256": "4e965a51c0d950c1b4ecd621b7165df4841980d44e04cb61fc05093c1324f3eb"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "59f01edbc46f93715933c2774c26b2a5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1870024,
"upload_time": "2024-12-20T19:14:49",
"upload_time_iso_8601": "2024-12-20T19:14:49.476859Z",
"url": "https://files.pythonhosted.org/packages/f1/d0/882a0cd3e9f22302b6d522c5015db144d6c9f126ee5a40ee13b2ed52b14a/highspy-1.9.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6db1913cbb3f80bf247893d5820839324cdd0695c17a18502b78e35e544aeb45",
"md5": "b7f570b903589f6f52e43986657b82fe",
"sha256": "4eadec66a5931e98414481aac8c56d3c900674d9434d3619e4c57803ea56c16f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b7f570b903589f6f52e43986657b82fe",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2149563,
"upload_time": "2024-12-20T19:14:52",
"upload_time_iso_8601": "2024-12-20T19:14:52.344912Z",
"url": "https://files.pythonhosted.org/packages/6d/b1/913cbb3f80bf247893d5820839324cdd0695c17a18502b78e35e544aeb45/highspy-1.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bc948623ec6d898776a5eae8cad4d17879f9cd16b71965fb8aba5be6a1fc003",
"md5": "083f4bafd3fab96f2f8738a8ed3ac860",
"sha256": "f89ce39d4883322c5f10081bd9815413a64ddf6ce0b23523df5b483707b1acda"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "083f4bafd3fab96f2f8738a8ed3ac860",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1841036,
"upload_time": "2024-12-20T19:14:54",
"upload_time_iso_8601": "2024-12-20T19:14:54.139428Z",
"url": "https://files.pythonhosted.org/packages/9b/c9/48623ec6d898776a5eae8cad4d17879f9cd16b71965fb8aba5be6a1fc003/highspy-1.9.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f61c5499892420b41ebc1ce4b8aff9eac1a98d2f45c905746ace882c998cae85",
"md5": "d07e125e9732dc5ff188001e2831bab4",
"sha256": "9fbe7b71dd19355a66d0599d92ee35dabc0bbd2833f4a2abfe87bde919fc36b7"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d07e125e9732dc5ff188001e2831bab4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2064313,
"upload_time": "2024-12-20T19:14:56",
"upload_time_iso_8601": "2024-12-20T19:14:56.293151Z",
"url": "https://files.pythonhosted.org/packages/f6/1c/5499892420b41ebc1ce4b8aff9eac1a98d2f45c905746ace882c998cae85/highspy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80e2ebe90bc6995b8501d6127ebc090374474a5a13afecf4c4e255b1fad3bb45",
"md5": "fa74bc43533d1548263bda8e7ba78cd5",
"sha256": "4781ce7bc53aa53f9e220ce7822bd020f0bf8736bac664ecddb7c2775690adc0"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "fa74bc43533d1548263bda8e7ba78cd5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2383711,
"upload_time": "2024-12-20T19:14:58",
"upload_time_iso_8601": "2024-12-20T19:14:58.366042Z",
"url": "https://files.pythonhosted.org/packages/80/e2/ebe90bc6995b8501d6127ebc090374474a5a13afecf4c4e255b1fad3bb45/highspy-1.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a37fc4d72172d38d012f1b46857bf39c5a6a800a5cf498e78c2f731c33f36ce7",
"md5": "0e04c29509942aad4140635db825d9a2",
"sha256": "bcb38ed98d22cec0cd77d6beec173aa14eeda9d481da3b9773abecf74deab2a4"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0e04c29509942aad4140635db825d9a2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2247912,
"upload_time": "2024-12-20T19:15:02",
"upload_time_iso_8601": "2024-12-20T19:15:02.824024Z",
"url": "https://files.pythonhosted.org/packages/a3/7f/c4d72172d38d012f1b46857bf39c5a6a800a5cf498e78c2f731c33f36ce7/highspy-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbfe396f5dcc8b23990d7c5feb0a8c4b1c18c2f91bb5bbfac28aac317c7a65c2",
"md5": "46fe2a5dff51fc00cbbf3e28844e5f1e",
"sha256": "ed0fd4c1d530685fb3ee451f60a7631388fd3488bdf8c582349a56ecc7a338fa"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "46fe2a5dff51fc00cbbf3e28844e5f1e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3045064,
"upload_time": "2024-12-20T19:15:04",
"upload_time_iso_8601": "2024-12-20T19:15:04.636095Z",
"url": "https://files.pythonhosted.org/packages/bb/fe/396f5dcc8b23990d7c5feb0a8c4b1c18c2f91bb5bbfac28aac317c7a65c2/highspy-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5283628ac69ffec64b5ca3e79ea39c11263924da88265f3ec1bdffe6282e1640",
"md5": "c46d6ca2765ec71d1f361e350fcd45a6",
"sha256": "726d88cfec77ceeb2036af4c296a8831593f3cb472b929bec28d4b24170f1c0f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c46d6ca2765ec71d1f361e350fcd45a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3574453,
"upload_time": "2024-12-20T19:15:06",
"upload_time_iso_8601": "2024-12-20T19:15:06.691628Z",
"url": "https://files.pythonhosted.org/packages/52/83/628ac69ffec64b5ca3e79ea39c11263924da88265f3ec1bdffe6282e1640/highspy-1.9.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28ec4f69a76130781dfebc4c07479fd6f54f5daab41c604db483d58701a2a141",
"md5": "7cf3abd4cd8035acfdf67884040811e5",
"sha256": "34f2490d4185c469511f157ae8319479e5e7b70d81951938456ada36f267bb6f"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7cf3abd4cd8035acfdf67884040811e5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3245964,
"upload_time": "2024-12-20T19:15:12",
"upload_time_iso_8601": "2024-12-20T19:15:12.236699Z",
"url": "https://files.pythonhosted.org/packages/28/ec/4f69a76130781dfebc4c07479fd6f54f5daab41c604db483d58701a2a141/highspy-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8542b4ddd7d65bdb5e7cc737428de67a0f73cbe383a9178ac60a2c512363609",
"md5": "684e1334af2b5372099a1ce28ce5a5b3",
"sha256": "15ae4f987f95ebe254349f8c97cb62b8b44e24c191dcc53d250f0d9f10b8bfe3"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "684e1334af2b5372099a1ce28ce5a5b3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1563317,
"upload_time": "2024-12-20T19:15:14",
"upload_time_iso_8601": "2024-12-20T19:15:14.150767Z",
"url": "https://files.pythonhosted.org/packages/e8/54/2b4ddd7d65bdb5e7cc737428de67a0f73cbe383a9178ac60a2c512363609/highspy-1.9.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1090055c688c05c736b3431c60703a9c786196525c2926e777bcf4c72f083672",
"md5": "61a1d3374d51528c27d2d41a238aa3dd",
"sha256": "5d2d8851a69f65cc4ff5a12d305f76e404b9218b5c12496dc833e7446b465837"
},
"downloads": -1,
"filename": "highspy-1.9.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "61a1d3374d51528c27d2d41a238aa3dd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1853507,
"upload_time": "2024-12-20T19:15:16",
"upload_time_iso_8601": "2024-12-20T19:15:16.481961Z",
"url": "https://files.pythonhosted.org/packages/10/90/055c688c05c736b3431c60703a9c786196525c2926e777bcf4c72f083672/highspy-1.9.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b773b103db661372703843167d323c548ab479f812d5c633549347f748d5aee",
"md5": "bc0fd63af0f2457ac3fca76dde0c7f87",
"sha256": "d9765753991c7a4d9bc8815a75fc4df6f5c58b50117e391e2c494cdf0eb1ed13"
},
"downloads": -1,
"filename": "highspy-1.9.0.tar.gz",
"has_sig": false,
"md5_digest": "bc0fd63af0f2457ac3fca76dde0c7f87",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1420463,
"upload_time": "2024-12-20T19:15:18",
"upload_time_iso_8601": "2024-12-20T19:15:18.694150Z",
"url": "https://files.pythonhosted.org/packages/8b/77/3b103db661372703843167d323c548ab479f812d5c633549347f748d5aee/highspy-1.9.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-20 19:15:18",
"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"
}