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.0

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.0.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.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

highspy-1.15.0-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.0-cp314-cp314-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

highspy-1.15.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

highspy-1.15.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

highspy-1.15.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

highspy-1.15.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

highspy-1.15.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (7.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

highspy-1.15.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

highspy-1.15.0-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.0.tar.gz.

File metadata

  • Download URL: highspy-1.15.0.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.0.tar.gz
Algorithm Hash digest
SHA256 f4920b850ed04a1266a3a3a266aa91eaeebdb3a410f716bad8a0e59041e7b869
MD5 5192dcd0b82c629d6702237533358c07
BLAKE2b-256 28f350fafb8bad3d81921dbd9fccb66cec71a4b8b6cc8a8532f4a46bbe2f6ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe908d58d1dcd85312762fe4f9ea1b189e93c7621b5741e414dbad42da9fbd70
MD5 b2f936dd706b3cd2f85d855d6f4ed13d
BLAKE2b-256 d8e9f36f28811859900a671377dd6a8ae3f18e16c60f2ada12e2bf21bc4b71eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 44bc6553e97d57b7e8ff835b991f73c70c56ba55954f17343052f51e041aa68a
MD5 107d308fb4292f7b71a2822745398596
BLAKE2b-256 300f2de042c106442a88f97407362241fbceab81593354ba1e2a4063b9a122d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b83a2a05c9afdb8c5003455a6e5e97f0b9957d32b14b6e73522ddbdfa5994042
MD5 4f88859eef0031b3d25f3d8675ccd67a
BLAKE2b-256 9f1a7577ff434606410411f53b96b3f94d0ecca4b640693b825fc578120993d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9284ea2c986364d29943ce4de185dd767c17d09c5d47c9fa7a7e668a5f8374a
MD5 be5ad1bb8a13d7a3548282e577aaeece
BLAKE2b-256 30d9e1962a9400240cdb7807d190b68be15c26b0d26c9712db1c838a9d9a1a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8ee5d4d6f1b3995699467152751fbe2a33f3d920eb43d3882391971ae58d4b5
MD5 943e47768449ac35386efe9608b5887b
BLAKE2b-256 dc7109794f595376bfd0a694607eaf4e616eef9c029e8e7c3736a92a0093888d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 711b2d23c5327907e71f73c21711181e9080b10eb73b5633122f6c8367fb3b86
MD5 807d78ffac3816811d98ec2211b9d842
BLAKE2b-256 1e7dc6c20381544ca7562e190ce12933a3a7b5b3479d48b9edf5d6888d176e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28e02fa61144c1f872f2f9f347fd2c33f25c0b70a73aa9440fe52760bb2f4b05
MD5 742da3b1b6dd75518c2ee55bdb5f1393
BLAKE2b-256 50d22475686fed11218ad419496fa91a50f48a9d17bd3a04c286cbb67bfb4c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d7789cbac15e09a308874ae88e2e8d2901a4aeb34c57f644ad89329154464ef
MD5 d4764f8ec05938a2a0c99280f7542a6d
BLAKE2b-256 8365d77f9e17127ef054505e78da70d61d294f270923c064e403fa183e84fa92

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dd38d53ed57ce2812f4cc2f8af674ec88c4e021be2fb97ecc95f09a851d44ff
MD5 a6b670a878a281fc6310d0577a958057
BLAKE2b-256 f45bd548c9543bea1cd90093f6445e0abdf7650269c7b39aac0a3759035065d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a9d77beac4d3aae98338563e5a647329858a34fb95e06f7ea52a7e8944b538c
MD5 2de89ee04c09eaae61fb008bf9362b89
BLAKE2b-256 3fcdf6400a7f1682fb17a7a0b10faed8791bdbf59ddd47e0ee74c802166ef09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02424d013726255cb944cc85293f8fb36702ebd859b0d4889d9862558e073667
MD5 42a5cc87225fec1b20b62fbcd7537a64
BLAKE2b-256 c1dbb2a7d9d9fc993dcbd50a15003be17c954ce400cba6909474872a7f9b9604

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7d015dc57ba5e5d8e37e0f64b9a8deeae66d4954831a23cd94ebe1b37c075990
MD5 afa657ccb91db8525bbe4be2655fec5a
BLAKE2b-256 97d65c7d05b9aa299f43837a7dba1d09fb73ffa81176e97bdff0f4473c60bfbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56d19388470c52e798fffde15e42b930b49d03a56aa51fc2620330354fbef0d8
MD5 467c77cce6c410e7b1dc710a680fad66
BLAKE2b-256 bf717c93a81d6143352d740e27e666d9c0dfe1c957586ba24a14e17d67cb4813

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 234f95862f6f9c8058cec3f743ac33314f5cfceaa4ddcfec5dc80029fd7e132a
MD5 c141ca466cc3390281231439c5feaabf
BLAKE2b-256 59bd480aa747ca3810d6f1f400b432eec11d6d97cb8a74f7e547ece52f7f9521

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e21cc4c02fc60282fc055393fe7d499a934dff821e8db96e5b1e542b9fbcc729
MD5 51a5e1087d094568e68979ae0e06c0d9
BLAKE2b-256 ab650806f0d44ffd6023ba1b085805b7df203ff79a546d53568e80d293cd2a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 51fb287ecf45776dad4011bb957bdf1a78377b3f27600cf42456bb2a822e07f7
MD5 896a56d8498eb936d67f196cc002a034
BLAKE2b-256 e321517cfcd46c8cdaea56effd632cd6f6a64b3490d4f611b383891ebd126d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa2ef051eddb5d6be9d672b0957614d0e9dc4e55fddbca2f9b893e0c32ded814
MD5 0868058fce8b5ec18e479d6bd9327188
BLAKE2b-256 cd6ef2abd5aae306556589aab1f756042fe45fea2274a6c630d0211934c78305

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffcf9652189dd06a2251d026c3bbdb15675194600c00f54d24ac10f8b71dcd0c
MD5 fc83c0795c892e926a2caced56888a38
BLAKE2b-256 e920fa0965e5fc7d7cb01674004ac8137e01de09755879fa7ed94b3c535f6167

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c0c95922f6207a7fbfd20b26be6fd6df0e09c9e64f29a95f9c636e31542cb88
MD5 389aaf3a88048debcb783ba7a14f08cc
BLAKE2b-256 9ee56b4e99feadc59c0b68f8db20418dffcaa9fc73351e5bb9e9d1fef50a8342

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7444ebbf9b38d50da4d5d78bd303ae01a6379bf955e7d38edfa5bc1da1fc3d5a
MD5 d72943856a0ec84cbbf6ee118e111dff
BLAKE2b-256 9d5060fa8f1510324674ca5a3fb3e3c8e4b7b414b9cae63c4d677019dde13e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a49784100b91ac6bdd5272437ec13fc8c66274c605620507fc932ba95ff658b
MD5 53b8a4ced3de4f01979cb93171337901
BLAKE2b-256 46e966cb22b7243969bf289f78a323c45366b89d4023ee60d43cd5f86d9ef60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8cd88c3acc8228142636248d60b9582eccc5e807fac13c7e7968812784ddcec5
MD5 590943a7c1fc7cdd46e58beafb3d4754
BLAKE2b-256 a08e7ef5e3ffde12987ef969d3165fa5fdd70b601ac299db00c2d46b002b67da

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00502850652d543803193acbad6579c0d89f0ecc3b4263883a6eaffe043bccc7
MD5 6cbc7bc8b1e5ea21871a32402637b367
BLAKE2b-256 f1d7386e6f5dc6027ba66515bb8a4255c842ff38801b00e86bbb70ca50e0737b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7443c50248df00d4a2e6e224cac2f008967d2a0c4d51e63e5654dd7f312ba44
MD5 c48b48409b548280de2ac4aa13a1aac3
BLAKE2b-256 80b21774164cc03dbf371c6d6682deee83f5014bdade8d9279b2ce68d1f0a749

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a589ad03b5009eb99eb642d7ffc45e68448b2aef6d59f489542b0f91a6c90043
MD5 c97e7f7943028460a1f266a590ece452
BLAKE2b-256 bcc3b7bb9290ace30aae8b44e99cf7938a55f31706957cda03e0a4f5e438282b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 972a247f78944a6a79b34d2e30e4911e43c6c3ce2ffa0775d2c009d7ba602f31
MD5 acd2ec84e338108e1107a5f0ce09b5bc
BLAKE2b-256 3be52379b70573718aa6e626f1507ee43703934cf14af984ae5392819e14056e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ba5b3770b456d2dbb28e8dda65e437d6e5b98a3988b991b65a81a6850e78f7b
MD5 904143b6450f30e8fc0b4e54d98b450d
BLAKE2b-256 86881ac6cc89c53ea389ebd38582c6ffef5bdc2c7b8bb8dce0a5101f61deee3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bcd82346f7ac12eb7959813bbfcd3c62d61e0de39c3bff84ada66f312c3a1a1
MD5 9e22d4c8832f8643077784fa2be0d053
BLAKE2b-256 c3e8dfd818ea64738427d0bed291985772ea5ff9e131cf8499c599cbf838821d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5c67c60095468adc1f5dfa63f9ad627f261f1bce7a697010bd8bda9711d14f5
MD5 46029cbbea5e401ac4bc77972a61a71e
BLAKE2b-256 06391f70106a8ae47d29c302ff4eab6442948d70b9ed9e1eed3974e9e1b69967

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2708ccae08b477050e7c423cb02342b86e585ec13bc82777f11f22168ac6b595
MD5 b0a5e19d2ff88b7a210d8da645c26d56
BLAKE2b-256 a35981ce7ad50927f17e87e24c8926c9eb95d3ceab2a1a253afbc7b243f4046d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ce69d66089d60c57c2d28d26d52b33a8acf0de03350f026e606d35be1884b283
MD5 95b427a4211487edc9fbced0417e658c
BLAKE2b-256 d66711c749a727ad921499909e6248a4e3aa19867e8826cedc04b5d6628c5ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6dcfe54494d6a1094b1c5ff778bfaab49f75f9466abbe0d2ad46ab01ed746adb
MD5 b089d57b75e5c45d3c5d6b0b9bccbdec
BLAKE2b-256 26c731e24347a5d81d2f05886f7af478939f60775eaeaaaf94035a2d4c451c78

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce40c4b63e187c3341e5db1241866a6b05ac0c3eb41737c4ee7a4bb1c3188646
MD5 ca914975cbb50d08a6213789c36cfd56
BLAKE2b-256 5977b17ace89e1558529945d5ebfbdb4f3fa194a2329078845c7a7cb88cc0322

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb96478931cffa6343c3c4934c825406538c8514786c436d4e8d2955f5fbc5ba
MD5 cfc6745f6f480e929617747b1809970c
BLAKE2b-256 8889447a7ecd684e72d02c5c657909302e45bcc734d1b4e4730dd62dede21669

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7efc6538f2008c1ac0eee51f1280f0f0f56ca4133a1f69a48d1c6e2f4b1434f
MD5 1fa9864c669ba8a40fdf39886a03c399
BLAKE2b-256 4bae829642b6f7183f281a522801a7ba9684077f464b277ccff60f8a326ff49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 82017bc13242866112b27d326e30b96dce93416d93cbbd68e8b5a3e491928382
MD5 fa85c530496cbef35a2c363eeefa9019
BLAKE2b-256 6ae63c78bbfffa21893a37537c982432b5bc0eb466bbf0e10b7f27a3c6eacffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 327e22b0f7ea62bf68eeaa5f44385fb1f57be1575feef0932eddb9664d37f98a
MD5 b4e9bfef9f7f279c6f7798bcf6bcd7fc
BLAKE2b-256 b70f7eec9ab8e30be5aa1a670478ca399b79b161e98e146c4fefd458e4d3d2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d2751fefab1b849abefd7f7afa60c35b5e6f97a908961857a84cc0b05a31e64
MD5 9272457eb4375de78afc8120a42baa34
BLAKE2b-256 5ca9822a1af53bfac5041a512790a9ffa2050086733fae4d26295373dd66c405

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22b688e45d8d2139b910e3e7e46261b83cf66f214ab8a43b0722eb359056b58c
MD5 1aafb9d86fb775cf6b4dff969e7069fc
BLAKE2b-256 55fb2da354ab46a25448476f506b813625dc840c19d67937ebd3080d4223b585

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cea3ba07acbbfed69d0d908559ae30bf3e43dbd93ddf726a7c663f4f40b46fd9
MD5 09a733d21bc15cbc7fc515fb97315f94
BLAKE2b-256 bfab1e309f9d7003c9fbb823c079d9582a8810388e16f5fb9ec801dfdb1bc43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2f26d4ef0d063af6fd7678e1e6d3dc38b1cc546fe8f94cbd747e3219f7be4fe
MD5 4a0e14602e427a291e9ec8a20a527fc0
BLAKE2b-256 dc76b5bface87ed12fb148239623b6a19bf0ed5acd3469a864b065e88e87a716

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1b0410097c2f63e675cc1a70c2fd8784c332303e5bd53a1feab8b00eab2b5a2f
MD5 66ca00ef236eae98a560f480ae049fbb
BLAKE2b-256 892b8aba5b0d5564956949577984e0127397e77543573c0beb8b818849cfcf5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 069a90823aca57b1cbe70024caf7741e56c04b7da3107133aa2dfd687a46ae20
MD5 7df46c97835b06a36a5f97bbc5ae7487
BLAKE2b-256 89bf069558261001122e731f30fad6fc01f931e7c256d36e98cf75b9a06c8b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46e87a8e98fc1d2ed996c60216253fc0098f6e577b0d58012b60756b5822175d
MD5 352a6f90f11adff0a06b3ec6dcf1fb94
BLAKE2b-256 460fe2a68199f00d65e0e648ce70cd36ad08473bdc4bc9678df13f9791f854c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d1a765a3cad9447f7c51d00d88405e6fc1d7577a9e7e1f33d7898c866543b9
MD5 68c9ed660573a661d5db93fc9defc856
BLAKE2b-256 c3f9c91312d96d5afd732ed6893b35ed5474cefc25f69764da18b4a6580acf0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 71e02b886ebd4587912484e2e5b2f716790af5cca79d1370d403500d2469d6e5
MD5 a0274f50ec9bb6f710c583e9c01bd36a
BLAKE2b-256 469905c26cde1f7ecd32fbc22e95fd297f35598b598417a2ed66bfee44c44a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55f3f6adbd8ad731d748727ea8450914ffefbffa552c43e282d3d78f556a81d6
MD5 f2c5f598a551c0d8c5d2444030d37324
BLAKE2b-256 91885bb125183b11195266083ca9fef94f228ac9149248d46649b77b08d76be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bcb5b77b4827e8d3afc62e522a07161a97726af10d9b4e1cf8aaaf036575328
MD5 970831c6be37ec4473f035150f6b2b11
BLAKE2b-256 85a531450dcc27ee5c9d4bd15d36f8b6bb5db6a7c134a2b2848ae7fe27f0c308

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b693ca8451cd59ab67ad6b2d54b4852b0a8c4adfdae78d882fc65d16b740f376
MD5 3c1f1b32210c1379a06834b72898eadf
BLAKE2b-256 0b7cff93ab49c971f76afa93f66ea5c034cffc171658855e0a1ee331275570b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca8d41f653d90e94ff52e403bceca3c317cfdc3376dd30dcddc9fc32dc2661b4
MD5 42cae213101439a97c75ace66ec345e1
BLAKE2b-256 f4e4e87c1fd302b6605577ec7c6acb3806f30e451e58146e08951d32879650ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 287a7d4f95a8fa9a204cd5bee51f752aade00bd6b912fdef92baa8e3d1f6d0e2
MD5 6ed9752762390dd87ec0d20c4c420987
BLAKE2b-256 3922e726cf2c7f21886e2e9204e19389117d6b6795094d1b4b9e3248dd3973a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: highspy-1.15.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5b2ea29ac2a58b48543152a76cc948b668f5ec38955f1bc6e3522ff9ad296afe
MD5 b94162b3fc9b074c57c408533eeae5aa
BLAKE2b-256 d20b4b58043e1956a97c49b1e526213169dd67db94eda9d03cc2631e660ebe34

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91b316b0ccf0d9c56e2fb0f9973c28ec2c77928b718a5331c5bbdaeddf3a1c18
MD5 cf3409358468093334cb2c501af293dd
BLAKE2b-256 4e5e508bdc6b3d0c935e44e8a970b18755f29b59a0fabbead81f86af21ac3120

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f600dff6c43c385f735787e12c2a7ce73b75c7d06c865f43709197fad1b83fe
MD5 57cec610bb972bfc4c0006805a0c0914
BLAKE2b-256 de1d521372c1a7eea7b3997773cba35449247866f700278f30e8771c1a42c1c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22b33b294b6212fba48525f9717f0ed725255d47e6e90f6409e8455dd17016e4
MD5 13817991f950a7af5902507bca1d8df5
BLAKE2b-256 5aa7fae72bb377e6403e8a19ac1cf77f291dc553b5e09cceb62f662622375196

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 511517445809123eca7cc2922d4014258fbf627dd1b2530c998f17c6ed7d8028
MD5 9405370069b858c9321fef44400449cd
BLAKE2b-256 429e42af0c59f5ed841ee27c2f06a00e71896921e49c302a10a02d2c47045f89

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 587509a3e9f4120522c71ec98d96ee2dd686defcb6c4dcf7401a45cb247cff1b
MD5 960861c87c8fe6bb2768e0ccbd80c186
BLAKE2b-256 830ccebdeb954be2cb40f34b9f0a046cdd82ee0b569b91828c6094fdf11a9092

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 833dd54b1cc7f616cf655580db804ea65e53b09935fba8a380665945fda3474a
MD5 5238ac0f9d9108283418d07081301dfe
BLAKE2b-256 4041cc982838d42a614866a85406bb6ed09932ca57edc57f879424789db1bb7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35a841739589c17d9b766f7197afb8d7ef65635551f9ea8ebd5a11a59701ca94
MD5 239a918df53fb8dc27af48f354f9dcdd
BLAKE2b-256 bcb31734066d395454a5aec9155430e1930a863ae5155b46fef27b1bd3a3f6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e81ba6f84c77c3a7d4c8b2a23a901236d658fe673354158d2fd4e97cfec876d
MD5 9289fbf4a49303837ace5f82801c46e4
BLAKE2b-256 780ba61e2959fd7c15ff9476a71dda99ea37e623479c302a7c54fa4d9129e3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.15.0-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