Skip to main content

A thin set of pybind11 wrappers to HiGHS

Project description

HiGHS - Linear optimization software

Build Status Build Status Build Status Build Status
Conan Center
PyPi PyPi
NuGet version NuGet download

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:

    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

    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:

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.

Build with Nix

There is a nix flake that provides the highs binary:

nix run .

You can even run without installing anything, supposing you have installed nix:

nix run github:ERGO-Code/HiGHS

The nix flake also provides the python package:

nix build .#highspy
tree result/

And a devShell for testing it:

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 binaries are available at https://github.com/ERGO-Code/HiGHS/releases.

Additionally, there is one package containing shared libraries for Windows x64.

The *-mit binary packages contain HiGHS and are MIT-licenced. The *-apache binary packages contain HiGHS with HiPO and are Apache-licenced, due to the licensing of the dependencies of HiPO. For more information, see THIRD_PARTY_NOTICES.md.

If you have any questions or requests for more platforms and binaries, please get in touch with us at hello@highs.dev.

Running HiGHS

HiGHS can read MPS files and (CPLEX) LP files, and the following command solves the model in ml.mps

    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
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"
      --threads int              Set maximum number of threads to use:
                                 0: automatic * default
      --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 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. It can be easily installed via pip by running

$ pip install highspy

Alternatively, highspy can be built from source. Download the HiGHS source code and run

pip install .

from the root directory.

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 also demonstrates how to call highspy.

To use HiPO in Python, the additional highspy-extras is required. It contains the HiPO dependencies and is Apache 2.0 licensed. It can be installed with

$ pip install highspy[extras]

For more details, see https://ergo-code.github.io/HiGHS/ at Interfaces -> Python -> HiPO in Python.

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

dotnet add package Highs.Native --version 1.15.1

The nuget package contains runtime libraries for

  • win-x64
  • win-x86
  • 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

highspy-1.15.1.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

highspy-1.15.1-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

highspy-1.15.1-cp314-cp314-win32.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86

highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

highspy-1.15.1-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

highspy-1.15.1-cp313-cp313-win32.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86

highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

highspy-1.15.1-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

highspy-1.15.1-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

highspy-1.15.1-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

highspy-1.15.1-cp311-cp311-win32.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86

highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

highspy-1.15.1-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

highspy-1.15.1-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86

highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

highspy-1.15.1-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

highspy-1.15.1-cp39-cp39-win32.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86

highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file highspy-1.15.1.tar.gz.

File metadata

  • Download URL: highspy-1.15.1.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1.tar.gz
Algorithm Hash digest
SHA256 20ed2fbf1cb64bf3044ee6632364b7e2653d93e6901e2b19fd3d5df10702e8c5
MD5 0f5f9a4a5421409a71bf2edeef6acd5b
BLAKE2b-256 8702c6b658f79911fee921721da728b9ab8f5e19ff06121fff36f90f77127f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1.tar.gz:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 864258c59aeaea9d3bd7ccdd10c03258e2be764e2cf1e21f829fd1f8d8c15d57
MD5 35e844874abf92e88ecb93807915c17b
BLAKE2b-256 bf97e85d751aaba8231e86915077532fd584711d30aa9eb85c26331e2bd87596

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 780c021441f548711818833d3a986fcb253849734aa00c3bf83d342c38b03629
MD5 ebc7654aeb1573271fe36e585effaacc
BLAKE2b-256 25818f984e500536ca40a8fb1d74ecb7a213e170683adcfd01edee8e21e5735b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb8b8298a74786e1cbc1a9e102b7749e2bbd9c41826ffd4a1d7ba738232646ff
MD5 2bfbe5a765edda7416092ff52b6462b7
BLAKE2b-256 205e8b21c908ee94db28f2de58326c8a25e361b3d504f145f7972f096028a908

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74c1eb71d3c0fa0c190492d9c0c67266d1dd6b4244c93b53e95a687504db309d
MD5 9784379dff9f7d420dd9f53ca74d5ac2
BLAKE2b-256 ea93a35495b3326cdc0c2ff59de69d26f2600f41399d9381b59f4826742c054e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbb22b7ceed298c0b75237186eb4671915b1c41c07f966e527643af10493671e
MD5 9418e5724f19f68366196e855bd627e4
BLAKE2b-256 19b4655f6ce06e17159c001456c97c4be84dcb1448477e3ea52bd5401f5c27c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9d436b5f8d50b01497d494606695746147e15b8e22eec6ae475a60cb8b22c1d7
MD5 6b8dad0c54224f2c6cfe10fd4e519e59
BLAKE2b-256 389dccf4a0d4e7a4fa4141dbabe9f78e94fa9d37b6b5becafe8a61e8369031eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6298b6ef691e83544d395d45fa4e856874c44b32936d85c36564f7697d27bb0b
MD5 ad3f8779a1d1f77e3845716456ae01fc
BLAKE2b-256 89ea6d6136f01ce82c049740b00380a39999a15c689a9a4d43fdb1ea25090c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 193b9751d3705bc948552b138800af0ad8af17a5b801d5940d7db7ff1ffc4f10
MD5 74fa8c577d79f0c9cdfeccc1cc820be9
BLAKE2b-256 a3209c75531c03c7121d576ef0ff8415bfb255fdd060c435f9f26e5b103b0559

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a00e1278ea46a426b1eaa0aea69df9d72ed1d75b18227cad992384ebbdc0c74
MD5 0e20720ed0323f3b378199e4f349199a
BLAKE2b-256 fb5b308821aeefa0e85f90645e15a86bc63c156bf08b00e33a0a906a0c430b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7b11dc80781052a6e7c163b5c2696fe9e06c72927cfdb48f67f7e8c77096f4f
MD5 068401d7862e09e822a64807405556ab
BLAKE2b-256 0c738cd42c3ca7baf4857494a0294ef068f2216f1216173f3f298046820a7a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46fe314b918257361c54170852bc561c78d0f84d94e2ad263859d818127e6e76
MD5 4c7c52daf21fdc60b4be6919b666ab45
BLAKE2b-256 ca632e104bab0117415c68950f249e42f0974f74665d0313dfeddceb1f74c47d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6cc7008b82094b2a2377338398b38f5b6c306397bd23282e55dec46a101a2dac
MD5 97ecd380f8adc8a66693befbb7157436
BLAKE2b-256 540b35e5e63be2e70951c3224ed33c4300f1cd37fcfe4eb6d25e259e13571e0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 565cf6a6e7c84e36c101b118a3c5fd09bc14aeece599bba12625e79b5ab0cecb
MD5 b33619613d9c451e9790ac39d002de0d
BLAKE2b-256 3360b9ae92e8454f42cb5c5ccca63862a75f5d43afead1f725f3b8af19f507f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ea683af80e4fb7c9d712b5df4bae34c63fa9e6afc78d750ba2d9f5e6f3203e0
MD5 77782577118d75c623372a9a3b38aeae
BLAKE2b-256 8dcd737f43e9c56163ebae501ab21fdbc37dd2dde3e02fd18e37d0062b9b9c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e1f8a21a0f48aedb129a5a60d4cad9ee0767de271cd7450de16192440671b38
MD5 f094894bdeaba64dfc355496da034a07
BLAKE2b-256 ea55708b7523ad80106b91fb66471ab8b1c178a8c8adc222c839cc14147542cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b6dcc545235c0765b48fc736122b105e174d907622d20986ac653c5b2a04911f
MD5 3f4c702308e58d5b3efab839b79afb8a
BLAKE2b-256 61038f821d39dc8ee06a35e0fa54c754ab592139640c1e839b587e60068ad822

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 238b2ee88b974b21c7e9ef198139502a7d87451939cae143dce789bbda121182
MD5 ffbd0394cd486722b9a77ef8da6e7e65
BLAKE2b-256 ca6ef00e914f2bd88e2b73a8b3ea1b47171a85cfa23d1a06dc373ca797f43208

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 383cd3f28cce0753dec8e949719b10864e068c53a485624fcab4c6b585496dd7
MD5 1b07aeb0ec5af60933641b335f2fa6be
BLAKE2b-256 2f974b5e345affc107f1f315c55dd0b6f35f13be07092feccbdfe1d9bfe38e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818256db731339605a7b2c31cabfcbf820fe50402ff5e9b7aa8410ead06e8735
MD5 742e6840e9899405ee8c467d4ddadbda
BLAKE2b-256 7f1cc6518fc7c2bd5c90d86bd7a8f3cf16c1ea0ace4335a80d45b8d3f96c0cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4db297486a7a42a18656d1cc0ea9e1596fe45b8f7f75669a0c55b9081531ee0a
MD5 7973a35d6400c5f13ec1866218ada523
BLAKE2b-256 3f1e283ea32eac82dd24fe86c439013d7c7666f4889de89f0957362ea5fa425e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c548165270608a40147a7ea6d985fd62a65fabf0f075b3c0c59ea910b724223
MD5 d852b0e63ec5b267ab11fe512d324c88
BLAKE2b-256 d40105521ca6b38e34e68d707888c378d3bcac34e62715b739e7c0c9b9887993

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 01c6585e83938ecf4139248b074b2ee736816d63716a20dc608b1d2fc9637b66
MD5 af14120283803de9944926af17e33d01
BLAKE2b-256 9a255083d8e3d5cf5ff5edf5bcc03e3f693630ab59142c9d0a0bcbb2d315c50e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd9ee8e139e7260ec1306a48e30f1bd7937d9cfb8cb201d25da10e1099e5129b
MD5 1515709b67479decfbcc46b7428efbd3
BLAKE2b-256 23779a07df7181834cfb61dafa5594e5eedc78369797c6487806bd3221d20667

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 787c92d5ff274256ba8848ab174cfc65d5af696f51bffe87423c85b2ea25c3fe
MD5 f65790abfc284eaee9f64450dfcbb8d6
BLAKE2b-256 9408fb7d30ea0e6c83fb943b16bf31951ba13a5be01a638ec13962a477009b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a6760962b3e813814dc5e88301890d7cce975de5ce97cc3aed589cfdd461811
MD5 3b5c28fc174a0f75084358fc9b80ffe9
BLAKE2b-256 d42a5501a23cac55926e4b0554352b4285734b417dbec385c593f2ae405ea637

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6a6a2f21ee31a9205a928fbbc3f8c054893c1aec34f6a7c56588317e2800e673
MD5 170456ce5f94497ccee3df382c255bb9
BLAKE2b-256 d451e43f06e64e994ccb41a336ff78802c0dae63aed46c17acd52167b5ca3d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9730647160a6481426729f46d9989a0507d05f3cf96f9fb180f4ab9891bea67b
MD5 a6e9237bf87f11872ff38a34e9166963
BLAKE2b-256 826b18bec60d8585df860b8d33d310e99e7893eaabe3c8e9ebfa7e387ba9d2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef048fa722cdeb80062d271b8ba211cd6650ab73419762d80da7642bbd4a8420
MD5 cbf0d2a517f2e7de1b8ef2584b5ff4a2
BLAKE2b-256 ff7f185b8c9579a9e4ef88eda45d1fdaf8d23a3a640f73c403a7b29fc0f0c4be

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9499d631edeb9642fc08dee59ca6c5815be1764c13a336c58ab7ba063011aa24
MD5 71f700ac0f8c01892dd6d560b3c35f9f
BLAKE2b-256 5ee4ae08124f71187628471a177e6db1ed2c1c45e9dceadc45f7111dfd7c2254

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a781dc8432568ea990fcdcc8d6e4365e67aa4848ca1f99275db096645b27cae3
MD5 ce1dace4f1158cf2aed0a028d3390462
BLAKE2b-256 de59b79a7b1711ddfcca36674ddb41759e98eb1797f4a94513e7dd215e32e94d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4715fcfbcff50fdbcc288499116f7e5722a9f9d2647087d54317febb94ec2b32
MD5 4b4e91f3bd8a0558ebddfb668498ec54
BLAKE2b-256 48456714276be39f1f0f7c2795fb466c39640bbcc541e151342f05f61d2f24a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 605d3204e41a465f9ce2f254571a90e8781605451a5e6a548f6b4be8988afb4f
MD5 7fb302825424459723940a96d7bbe633
BLAKE2b-256 3c6959d4303d38d6c48cc6f79c12b11f756b381e8e5eed5c0733d8c82317240f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5de2dddc554442f3572bb4a36116278bee79568fbd726a697251d2606b79a5a1
MD5 63e4dd7cb74f50268cb6575724c7d059
BLAKE2b-256 a71e82159a50b8a17daf2e94453a8e0af3e381943223727fd9db6d4bebc1533a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b5be1c777d0b57b6dc26e1d9754923e642a17c6313bcdf5186473644b214f0b
MD5 d63841b392e023db9e14921ac3c56b74
BLAKE2b-256 111027a7b87dbf56ab88d223fb9f1b6917c9df259c09980460ff56731c2406ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e1c13912501e96893136a1805b56b74cb4868fa04c1c2eacc5c0454304e08e
MD5 596282a3fe119bf2ce2745040c0855fb
BLAKE2b-256 322580c96a11bcf3bdf4ffaa7b1e26629b6da340703b2bbc4e0349d40d7a8aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 138506088c7f6106cbb58d1cd0ef14793dfb47477fd83a7ae0db5b104d1cf969
MD5 ed0029ade694214fa1f0446f83ec538b
BLAKE2b-256 f2505196e807cec6847b2bee8ceefb080b8175ea81aaa673249678398cf3181c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a24329c328942b37a6a318ecf163d07dd387974f071b98b4498725eaea80f06f
MD5 624bd51c7944d03b9ad03fb0d628c4aa
BLAKE2b-256 edbb0588b8137df2a0ae55a9a8ad40eff40561b60d6f76dbffd5ab4f4f6095f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 070c1ce9238b9e8b4c273253647ab0dbafc1839c195a52c7ef1eeb7ef6976f05
MD5 4305e76a75361613db946441c1b19c01
BLAKE2b-256 bbeadef24ab38ff3ea983eb197dcbf01ec9ad82e2aa3380b72f01792486865e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b4c7e7af8d7927ed77836e9b869cbae55d6a74b85bb90d04776440b5e14c32b
MD5 dbb88b9c92cd05d9766fd8e36319b558
BLAKE2b-256 8b5d815b8f0488fda02e765b85e7a1ed2bf26b7d705fb1240ca842c4493d9414

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45eb9f022f9083ef2e56d66f972d5fd40e6634f4497194b1f3f215ca0e8ea958
MD5 750b819819320c3e61797c40db8b57e6
BLAKE2b-256 5d6974e9614a6e49f5e07fbb91a5cebad79bd31903888ca6b4f1c75dcf01df3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62785dd5bb0df337c150ba7b53e555ee21a29fdad6d86f72aabaa1615fdd7874
MD5 19983f8cd7aed11f9b78a4c72efbc57f
BLAKE2b-256 992ef0516225abe09988bece416e6489fd97855b5e72fe091ba95db1f83c00d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cd22d9cf5affcc414782f3a30e564cdfadfe140a0d55e2f58542b1f2172ae5a
MD5 2fb03570b717c75abb79ca085f2f6a74
BLAKE2b-256 a47b1ae634fc0e216e833b9a50139e3019b449ae317d44f84cef2ad5f5457835

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3aedd87892b39e070e011ba30fcdf6cf3724652430d72d33fd05a421b5dce4c6
MD5 c58406b8e9a38cc1b9b7c48ce1721e01
BLAKE2b-256 c5871f202ba41861c2ad1344b9b4e8e098d7c2866a48a4c34102b60b16557912

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41e52e62366fc56086c45840ecbf31c530f46d0fdd722eec87d39cf9df9215fe
MD5 68561d6aebac2c1fdf5fce137420b538
BLAKE2b-256 579dfe55aa773cb8046304128d70dac58f5f9e24dd744d3ee042ee2eebf92a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb0d891973210511b6cc369ed9440fda12c58b0ab60a95972d348504cc6f9cf0
MD5 78501c0348c182b05cdee3b2cf712140
BLAKE2b-256 e9d309afe02e0503b65e230fcda2d8e52da6ea14d34718b46a500cfab126b0c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ff1fcca9cbef41de4c506774a7ac77c8bb5289d2ab268c4ad980262553397ff7
MD5 a46f1ad1d12acd2eea376379e3e91aca
BLAKE2b-256 7dc42f0a1fc322a6b312b6c382e94fcaaa09832f8991208ee934eb91bc39b3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa3a97459f9350335b6448b8e83bf73467ab5a80b32f207a52c8fd9c928116bb
MD5 7cf659a4acbdabbd11bcf03b76b0e375
BLAKE2b-256 75e5da7aff7c98e4b104ac3c42d39bfacfb863bd5bc06beaad6a51321f95831c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b5ea8e1bd0b1768f779231e6b54612f0a889bb9eef897844e649f7180e1b15e
MD5 fc7f1a75438d18dd3a91eb4f33eb4c0d
BLAKE2b-256 b55dd6e80943a4886f1047f1249a432b9bbf8bbf6d3d1cf35fa27c6285a30f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 064f4778ee2a0a22e11220dfc6e6237c332c3062708616391372b86553679d80
MD5 1728a77458db6342a1732f358650b197
BLAKE2b-256 6a08f8cd1fa4b941798f29792c00be7f50ea2e580b1b94615252c8135960e969

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ede82b16a610b07ab16a1ac361d68f924b86f634d0f0d27bd6c94aa9df05732b
MD5 64c4bdb790781ad5a26f48116a8e811f
BLAKE2b-256 7c02972d1b680f3de0ae968b94604ea17bcf6d4af226d0f65b6a3a2820d95412

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b517da9c7ee97773b55ff6a23148152be5a9366d2fe2628243e571233821b752
MD5 9016f0f58ff69b5c3299516add14626f
BLAKE2b-256 7c762f1c433e080a025288777c89f6632bcbd21e23af7d6bc29a6085e5bb604f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-win_amd64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: highspy-1.15.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for highspy-1.15.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 16688ab89afba436d2178d30b49bf4bf1620427d57f7cbfed914a3474e010db9
MD5 d2c64983a2a975a97e46dc1757415035
BLAKE2b-256 86345084fbf6cd1025c95c8dc9e6a8144d4d7d9aab5cafe776f8e24bfd3d9a0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-win32.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b72d0e7b43a623404d2ba49075110883285f3174845eceff209c501f9b21b0db
MD5 6ba7ef064095cdec6a8ad7009121e454
BLAKE2b-256 dff2fc58460d9b1f3c8ac4d22ed7c1c8ce1e8791569bdf723e278555bbfe6d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3797f2046caa212cfc6b095b057cb6d63e847f4ec6acd9c8e1f791a81f01fa15
MD5 07900ed4c2ab8b68b5c00ffb75b9289b
BLAKE2b-256 3001368536054cd1788f5dcd10a8530c5f074d7c0ac431af91674957d8a15750

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78bd23d371f633056a31e88da13d40606837db46d634626a8fcab6a1168a7370
MD5 d64117c66c71a3221e48bf77860a86cc
BLAKE2b-256 31ec680f01dc2413089450c266ff79944d42caa560b40c00749c0dca64fded18

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8a2f1f95baa6151c10c59d838044c138fc485210fad70e6c51cc43332f728f8c
MD5 350fcb1a5fb0d731a70a112105946e08
BLAKE2b-256 404ddeb8e155bbd423ead61ef9b8722581fd43078a92a203ffb27411bd4452fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdb93d7a8dfce49b0661b87cc113d5efd9b63b2c2abf7877b7ff508038f317c0
MD5 ab825755ace38025b1207763c842b40a
BLAKE2b-256 74d41099d5bcccda7eaa4556704623b34b1df140196b4e01cfeff6b6d51464be

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc6997138d0cffe3ffb5c81dc750b9f272e301a1c6e9d284e212a90e4c188dfe
MD5 8596deac2782d6692091a7acf72deee2
BLAKE2b-256 05086c0303133a5e8c19b6aa0b2a450f06d676af4f767b09b94fdaa2e917d5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e11bcf5efdd15447e5490d7b1830043c754e26445ab896b8aae23ae7ff047437
MD5 c215a3ab79fca264ca20072466d5ffda
BLAKE2b-256 721d098d11d368a986341ebb7a4c9c333f163cd06c092232ece51ee4b1e83cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81c869e9c1245e1930d7aa0cb726a3ed27367afe528655235033d461bd75f5b4
MD5 f90bcaebb0f47fff66af63a96eb0b96d
BLAKE2b-256 e60a852c969a133ff82f54d991a898fb83fcd2522404204a568ed1e23154a482

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels-push.yml on ERGO-Code/HiGHS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page