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.

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 executables are available for a variety of platforms at https://github.com/JuliaBinaryWrappers/HiGHSstatic_jll.jl/releases

These binaries are provided by the Julia community and are not officially supported by the HiGHS development team. If you have trouble using these libraries, please open a GitHub issue and tag @odow in your question.

See https://ergo-code.github.io/HiGHS/stable/installation/#Precompiled-Binaries.

Running HiGHS

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

    highs ml.mps

Command line options

When HiGHS is run from the command line, some fundamental option values may be specified directly. Many more may be specified via a file. Formally, the usage is:

$ bin/highs --help
HiGHS options
Usage:
  bin/highs [OPTION...] [file]

      --model_file arg          File of model to solve.
      --read_solution_file arg  File of solution to read.
      --options_file arg        File containing HiGHS options.
      --presolve arg            Presolve: "choose" by default - "on"/"off"
                                are alternatives.
      --solver arg              Solver: "choose" by default - "simplex"/"ipm"
                                are alternatives.
      --parallel arg            Parallel solve: "choose" by default -
                                "on"/"off" are alternatives.
      --run_crossover arg       Run crossover: "on" by default -
                                "choose"/"off" are alternatives.
      --time_limit arg          Run time limit (seconds - double).
      --solution_file arg       File for writing out model solution.
      --write_model_file arg    File for writing out model.
      --random_seed arg         Seed to initialize random number generation.
      --ranging arg             Compute cost, bound, RHS and basic solution
                                ranging.
      --version                 Print version.
  -h, --help                    Print help.

For a full list of options, see the options page of the documentation website.

Interfaces

There are HiGHS interfaces for C, C#, FORTRAN, and Python in HiGHS/src/interfaces, with example driver files in HiGHS/examples/. More on language and modelling interfaces can be found at https://ergo-code.github.io/HiGHS/stable/interfaces/other/.

We are happy to give a reasonable level of support via email sent to highsopt@gmail.com.

Python

The python package highspy is a thin wrapper around HiGHS and is available on PyPi. 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 HiGHS C++ library no longer needs to be separately installed. The python package highspy depends on the numpy package and numpy will be installed as well, if it is not already present.

The installation can be tested using the small example HiGHS/examples/call_highs_from_python_highspy.py.

The Google Colab Example Notebook also demonstrates how to call highspy.

C

The C API is in HiGHS/src/interfaces/highs_c_api.h. It is included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.

CSharp

The nuget package Highs.Native is on https://www.nuget.org, at https://www.nuget.org/packages/Highs.Native/.

It can be added to your C# project with dotnet

dotnet add package Highs.Native --version 1.9.0

The nuget package contains runtime libraries for

  • win-x64
  • win-x32
  • linux-x64
  • linux-arm64
  • macos-x64
  • macos-arm64

Details for building locally can be found in nuget/README.md.

Fortran

The Fortran API is in HiGHS/src/interfaces/highs_fortran_api.f90. It is not included in the default build. For more details, check out the documentation website https://ergo-code.github.io/HiGHS/.

Reference

If you use HiGHS in an academic context, please acknowledge this and cite the following article.

Parallelizing the dual revised simplex method Q. Huangfu and J. A. J. Hall Mathematical Programming Computation, 10 (1), 119-142, 2018. DOI: 10.1007/s12532-017-0130-5

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.9.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

highspy-1.9.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13 Windows x86-64

highspy-1.9.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13 Windows x86

highspy-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

highspy-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

highspy-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

highspy-1.9.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

highspy-1.9.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86

highspy-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

highspy-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

highspy-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

highspy-1.9.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

highspy-1.9.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86

highspy-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

highspy-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

highspy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

highspy-1.9.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

highspy-1.9.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

highspy-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

highspy-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

highspy-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

highspy-1.9.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

highspy-1.9.0-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

highspy-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

highspy-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

highspy-1.9.0-cp39-cp39-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

highspy-1.9.0-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

highspy-1.9.0-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

highspy-1.9.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

highspy-1.9.0-cp38-cp38-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

highspy-1.9.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

highspy-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

highspy-1.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

highspy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

highspy-1.9.0-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

highspy-1.9.0-cp38-cp38-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: highspy-1.9.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0.tar.gz
Algorithm Hash digest
SHA256 d9765753991c7a4d9bc8815a75fc4df6f5c58b50117e391e2c494cdf0eb1ed13
MD5 bc0fd63af0f2457ac3fca76dde0c7f87
BLAKE2b-256 8b773b103db661372703843167d323c548ab479f812d5c633549347f748d5aee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9151e47745a3605617b200f173af46bd1aee5ef06083a17e9781d806ee9ed1fd
MD5 8f1b7eb0f38b46ae9c96ce0545e976c3
BLAKE2b-256 b0e19cd0c9860bc562ca872a029441ac42e586c0e5ed15c0d4c470b17dd3f0b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a77eb1e06278ef23ed5778a3c4e9348c57d917d9197c7d2cf30acea151089b59
MD5 fcce84186f212a38c2577c40fc770158
BLAKE2b-256 38de14d2f8e73fc79ab82a6f9fee81e90783d3aa15c3e21762d695090b2c98d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c0e8004bef64df1537286e5dac5fb2f3ddc152ef205d3e2e8786bcaced08e92
MD5 87a2dc3f025cb60089d93e9886b21a7d
BLAKE2b-256 a0de0de13d9b478c352ea051b10255effa8acea1615cd395a364c77dd9032030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45d47d7c5421db8075fbef930f3a3a7e4e86f14f21ed74b6e50facdb65c3ea87
MD5 b987bcc1f5222110074914fbd7be60b9
BLAKE2b-256 91ab6bd4743749b7f569d67b8b3ac896c0cc87658bcfb55b816f27cce0d56161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cbf60020769bc0b1af5da8efa65f9f50397d9d441079133f76ad962524ed20f
MD5 1ac61b9bb8231236a890edf250b55a72
BLAKE2b-256 931c6fd80e197332cac6b72bbb0e4e75b2630c3a8b62438ec11558d88223289d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.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.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1804f7d5fbf404ebab22033728582b745a793b3c9015285eb2ab8bac97438e61
MD5 bfd338fd9839cc8b9f9c62f874bfa579
BLAKE2b-256 d90383ccebbbd2233e478684884c2f4ef9d680939c2336f3292d40c29d4437b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adbf983e661b651d1c27c9a9e7d63e5c8a311986b05e3944777752060ea41b1f
MD5 8b7d744486358841837695c6f78fe0e4
BLAKE2b-256 b2ed7160f0900d5eba0c6e36398f6b8375142323ecabdfb2041e3901973d080c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_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.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22c8217c05f3df3bf9326aba777b2808d4da5757f156e4a20058d360e6a002a6
MD5 354b2dae7f3dcc7b6fa959cc6065d3b0
BLAKE2b-256 c55c6eb6ccfb16b591bbbdd22bc6d45c03e68140d5cf34cc2fcdda1ba784d489

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22580ac1fbce24bae9fbb906d1967d6c6798401a1f134dfc46a5f87c58791e47
MD5 addae95ca73aa95f8b9d467441b62701
BLAKE2b-256 4da7442d7720a9a01f189f36c626473c150a9fdd11cab9eb99c62cb178989ba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9eea8125342c2049e6e81c808e1995e78aa0ba09e505d7d0d78b5997f8c9240d
MD5 54658b26871cc2d2acf5f11bedbbdb6b
BLAKE2b-256 85e49411cb5918f88894bf899f9737a67ac8e197d33c9b2119bbe4af60417cfe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fcf93ef8e8440b8d900c21c33e5fc8e2041e7d54bb680bc617c5a8d71c084454
MD5 78afec6e1113fd000311180e920ba581
BLAKE2b-256 1dc8ec26b570a9f953bc7f5bdaaa471c1da334eb6d00d48ad75f5781dbab4c60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 840ad28b3a937c3129e6efe40d3ed86391a6005d5878f832eadde222cd4c1895
MD5 b9523e59aff238d21ca945fea6568314
BLAKE2b-256 510a90a8161e13281af61e12e38aeedf561a21ea921b2d96e7a2d5301f6c506e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be067a7a775811ddd03929ce8ba71d3d8dbce079e74afda0eb8155ddf85c74f2
MD5 851714fa746fc73fa7a0455a1a528b2f
BLAKE2b-256 efc011c381826af55977fcefc467399e0fbe777b0ab0fab6dbb1458094acc1ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a3bcc624804c661edeed982dccc667abc7dabd3298633e6e3b2e1dab733953f
MD5 f65635c20545c3f4444dcaa746aadb99
BLAKE2b-256 c2a4bcb297d83a658dbf4faecb6a8bdf5999d03e88ac9950ba7f36e6acbb7ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0809e15532688f0d16c4e27dcf4bb0a67b3d7a548373710176ff1c375b55ca5
MD5 60c39a9e9a4709d497de1387bbdbd33f
BLAKE2b-256 44bdec6861d22e5a6891b84c37e711d7801eca5b70234dbac58a67415c19ba8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.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.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57d2748e1c08d6d293402e2fb4cb6d44bfd4114dce438ae536a8cf8ddabe0e90
MD5 1ba2426c91894d2e2fdd24855c8017b7
BLAKE2b-256 09753cb42a6d561f288f178b38e0f822a4c4f79c7bc4cace11ce895121941b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37dc773702bcbf155e70b822b652fc9b96b2e190c70d1402de8711a177e75690
MD5 ea8a8610c9ce7a58ccac49a5b9b9d47c
BLAKE2b-256 f9451acd79703d1bdb745b0e6f596a77b7db209291ddfdba4982f61f023e5a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_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.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ed0b41e9e2e1ad4c2ce7580562cd6b45cf872d63f3c5e21e36e3d399eb9b2b
MD5 14209ee9aebde7c1955436a7b4948e49
BLAKE2b-256 10f5aea6b779925bfd449a8857c3ec527333b4a5914b6c7ded445da8cad4fd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73e430ebe85f4b6fbbebd98ae53d47b12cebfd8cbee6fffd17760efc8780ce36
MD5 5db838b223f50468fe201f7603a1df9f
BLAKE2b-256 1624507a4b7a45f5554b8593ccceaf377270fe9a0c8ffd8c057cf26986ee3658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9509c4cdb70171a21c98fadbcd85e4f53d54b3106258a009486816153eb29847
MD5 e2054f1ffe354a6ead5c1467a2640e6f
BLAKE2b-256 ae0d088bd34992071335839b2f62bc1fe7831e3bc57a90406b48295aa843ab37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18827d2e7e2d1b013b2c5eac0923646942700ff5683a93c23c383370861d424d
MD5 6e38a933ebca3f7af4760b12e0de7c5b
BLAKE2b-256 35e9aa8fce2ac95124bc880761856207e7b02263730a4eb1a9cfb97116a26b44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 95662940d87c9f3894e8e78a405f8701af7326e28db38b524ea19119821c3b8c
MD5 b0a3e0bdd5cc3d28e3fea436d31f5a45
BLAKE2b-256 42b2c1e07d7c55e2bb6f7a5c2ee0d57e0fd6d848261a263e6e6cf419e38cfe40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43d1612e9091a2fe07bad2e24dea12f0e67bb77014c59281407cd72fd704de5b
MD5 3cae788b8681edfe645a97e6f814c7ca
BLAKE2b-256 5c3b78c8eaa0f2a6a20ddb1f8c488ba6dd787baf31fd79902301b58f5f75f72c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b97e07c5921a14a40cca32fcc8477853cc9a6e909b2f0ef44fb94d2be6d4e8e
MD5 4c605a826b3c7e89f805e700e89c6d97
BLAKE2b-256 0a4e4548176b287567917c7e60868eb819cd70e619663c749384feab468c3e62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2fbec2a5c7ff42ed1fb9f54c4c5141fcaa070ed5884b7f966fde45921fb16c3
MD5 9424a32a8ba4e12496715f1a96521865
BLAKE2b-256 5c32a4b7d1498defcb5651f651d7f234a744c9de4658b9ddaf0155e1e211272c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.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.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664048c40ad4ee6b8b7aa279a46803a448dff6079940b85cc5fbcc2d9fde1cce
MD5 de5483057348303320e6a3dad7344ea6
BLAKE2b-256 eea2e825e8bed155f9df748ea9319a83c2c89ab860ddf89656986b3964236d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86977e537c2152e998c7e5d62a0a333507a314dae374daebad1dc2cdc5616d5e
MD5 aa7802ed37f7008d9a37107ef61772f6
BLAKE2b-256 2fd21aa39bb9d381ecb0122a90e6e48480358e284a2891ff51cdf90b4a885857

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_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.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79a15b420cfe45b53e0a7b8e2096bfb407ae763f338cd2a43ba6acd987266697
MD5 702d507458b83a9308117f82c167befe
BLAKE2b-256 eb33b878f6faa73888286efa72717a6d9ad49b2aab4f321a7081a455495564da

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 830da7691d39b0ef3266bdcdc805f15a215f1b91fe01cb2bb39ca9fb25e2fcfc
MD5 b9d92ed7408bb9d3c973c9fd679112c3
BLAKE2b-256 aab517c654e5d9e0d69649af01f6cc5ba133a622b942c0327df3d056288db013

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 244b72ff31bd0cfb736893aecf1b324f9155bab020414ad89710319fb3cda17a
MD5 9d95826bed1bac906c4890488b90bbbe
BLAKE2b-256 48a37a5832c08a567bb3e2b24307a87fc3279fbe3888532d1cc8766f49693d36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aef7264845a4784b7f42e6fe15fe09aa4250d68efc51737c47c94f6d444e3ba0
MD5 556209479bd5f5bc7356e7d177490b76
BLAKE2b-256 117ee11cebf638de2c9806335aab7047c07d9d64aee2a551c24dba8db4a77b92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 14bf840d5fce70800c53ed0b2ef701d5363c53d2b65c736130ca8e83869d70d9
MD5 8ce1492e52f948a3526f337a432910c9
BLAKE2b-256 a3974329f1da78537c31ae2d1ac026589bca87817821ca32e927661669a5e25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e3770bf7d01f9eef489b8c33a74345b2fcf3c78047da695f9607ddee3ec5fc9
MD5 80d65d909ffedc53bebd31ff53ad277b
BLAKE2b-256 2776e5bdc534f057d57cee4f89837488a7bc8a82764f68ecb851b71a3eadcfe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 016f6aaa1bd49ff13ae8af9e1c7688c344480b693f1ef11ee4fbe178247f68d2
MD5 197f64435f8876e92d0ffdd332fd352a
BLAKE2b-256 a8419affbd2d1e629b2e2d06d692c1d83f328875ac20fa01146910f30b5936fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e84042f7fbec722f73f7faa01d3a0a9c05a05776c1deedb3548d0747bb59938
MD5 a877ad1898a4937f113e3fd43b82705a
BLAKE2b-256 a863602e15cbf7ca5e50de9d4bc9ecbf3d000985435c8485b571235f478119ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.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.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15f450c94fa017691892141cbd2db9abd8587a5b2f04d6dd538b9a67d05567a1
MD5 187148ba278c2ab64a272cd24c4c1e3f
BLAKE2b-256 896e4e28a70a7100b9dc52e86ae5e237836345f4139b88ce89be46fc1537f6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ce4e2b7f96be5ac744d25ba42046b79ab8b3db74843834a05d0fe2aa8748c7b
MD5 e28255e5b50f58560b5b0df029c1420e
BLAKE2b-256 2edc0149da175941c50b2452a46a6ec4b000efa8a4a829526ac81f4bd52b6e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_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.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e37d4fd6a7a64f85da9123a8d8ea24964f3c79f5e8b98ba938b6d64df03f147
MD5 63e41c18ede3e5f3c0f55e20a67d2eb0
BLAKE2b-256 59a80c062e5c7c43cfb1156c019f0d3de4c26c11f177ea2aee6e7d5dcdb4c74f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b51baeba8d349fff7b904e5e9917af9e7f250dc705e228be00d8294b5d4fa913
MD5 bcf5e01f0ade1af089ff9ff54096cc96
BLAKE2b-256 899215a45ddadad91276db829061e7d9ab5d6eba28c73efa99e64a11d1538a7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acb2258986344460ed6737608b944e556fd8c0e472bdc9455e7d76548abab8e3
MD5 462229e075dc173fae2f3f9a4fe1bd21
BLAKE2b-256 08fa6a71ab3b828d0a042b9568a00f9214a7c1e76a936ec679fda0a276773b70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d2d8851a69f65cc4ff5a12d305f76e404b9218b5c12496dc833e7446b465837
MD5 61a1d3374d51528c27d2d41a238aa3dd
BLAKE2b-256 1090055c688c05c736b3431c60703a9c786196525c2926e777bcf4c72f083672

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.9.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15ae4f987f95ebe254349f8c97cb62b8b44e24c191dcc53d250f0d9f10b8bfe3
MD5 684e1334af2b5372099a1ce28ce5a5b3
BLAKE2b-256 e8542b4ddd7d65bdb5e7cc737428de67a0f73cbe383a9178ac60a2c512363609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34f2490d4185c469511f157ae8319479e5e7b70d81951938456ada36f267bb6f
MD5 7cf3abd4cd8035acfdf67884040811e5
BLAKE2b-256 28ec4f69a76130781dfebc4c07479fd6f54f5daab41c604db483d58701a2a141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 726d88cfec77ceeb2036af4c296a8831593f3cb472b929bec28d4b24170f1c0f
MD5 c46d6ca2765ec71d1f361e350fcd45a6
BLAKE2b-256 5283628ac69ffec64b5ca3e79ea39c11263924da88265f3ec1bdffe6282e1640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed0fd4c1d530685fb3ee451f60a7631388fd3488bdf8c582349a56ecc7a338fa
MD5 46fe2a5dff51fc00cbbf3e28844e5f1e
BLAKE2b-256 bbfe396f5dcc8b23990d7c5feb0a8c4b1c18c2f91bb5bbfac28aac317c7a65c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.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.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb38ed98d22cec0cd77d6beec173aa14eeda9d481da3b9773abecf74deab2a4
MD5 0e04c29509942aad4140635db825d9a2
BLAKE2b-256 a37fc4d72172d38d012f1b46857bf39c5a6a800a5cf498e78c2f731c33f36ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4781ce7bc53aa53f9e220ce7822bd020f0bf8736bac664ecddb7c2775690adc0
MD5 fa74bc43533d1548263bda8e7ba78cd5
BLAKE2b-256 80e2ebe90bc6995b8501d6127ebc090374474a5a13afecf4c4e255b1fad3bb45

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_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.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fbe7b71dd19355a66d0599d92ee35dabc0bbd2833f4a2abfe87bde919fc36b7
MD5 d07e125e9732dc5ff188001e2831bab4
BLAKE2b-256 f61c5499892420b41ebc1ce4b8aff9eac1a98d2f45c905746ace882c998cae85

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f89ce39d4883322c5f10081bd9815413a64ddf6ce0b23523df5b483707b1acda
MD5 083f4bafd3fab96f2f8738a8ed3ac860
BLAKE2b-256 9bc948623ec6d898776a5eae8cad4d17879f9cd16b71965fb8aba5be6a1fc003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4eadec66a5931e98414481aac8c56d3c900674d9434d3619e4c57803ea56c16f
MD5 b7f570b903589f6f52e43986657b82fe
BLAKE2b-256 6db1913cbb3f80bf247893d5820839324cdd0695c17a18502b78e35e544aeb45

See more details on using hashes here.

Provenance

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

File details

Details for the file highspy-1.9.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: highspy-1.9.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e965a51c0d950c1b4ecd621b7165df4841980d44e04cb61fc05093c1324f3eb
MD5 59f01edbc46f93715933c2774c26b2a5
BLAKE2b-256 f1d0882a0cd3e9f22302b6d522c5015db144d6c9f126ee5a40ee13b2ed52b14a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: highspy-1.9.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for highspy-1.9.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e86288464dbe7f7fd0d2e20e63c9923b27d021c253f467bf2161955db3de775e
MD5 8c1771c6c5416f49af14fd126865fa34
BLAKE2b-256 4b9e97035dca0e6fdbfd547e062ae6bed3ee0f910a9849f1b5a2d7fb51880670

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7b9381d2d63a637490389076f26df584b8f8e7835444eb36987818e32fed12b
MD5 5c7a2a8b001ef3dca8d14f3ed54bb7bc
BLAKE2b-256 8cde5c3b301590b9263c3cba319b8a983a907227e07d6dcbbf0ee01e1e8b560d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68bfa11f62a8c57cc56529cfc2bef51f10221b787360e096005912a90dc1cc83
MD5 dc9930bdd7678e4dc4b14f365157dc22
BLAKE2b-256 29ecca230c18e3c58662a2b50027bc5dfad414ab057cc859adb56af746248562

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba6f5a769868b17bfb6713fed4ec2a5edb534b96c8b0f5d95e2ff702bb55c540
MD5 12d0e705a71f40fc9057cd6b312238db
BLAKE2b-256 6d3f2ef56a6025f7b51c753d6b843aa6b19f97707ea7ad8b00d1220a321c7e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f64da580fa16dd9e21410ef5fb3e582dec4a84191396a2c3bdc4d8e4b73b403c
MD5 e28c0e705d0f742b3704297173ef0b8e
BLAKE2b-256 2b18e8df12ebd67dda57efcf78c63e0479036c0c5a7683e95112079f6663c60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdf5c320cc51912e8d92614de2d2e7df73f541dc82acd341bd4db8220dd54835
MD5 ef4b3011d5feb2afcb3829d60eabf95c
BLAKE2b-256 7d5b12d47f8efa534a3acca872e6a0328e2a70fc28b271fc15df0c8ccddd21a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_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.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50e7a24be43126ef715fdd6ba03b1140186452f124c6c6597dafc9063220110a
MD5 faec88cf63779ac4dfa4f2601e23f161
BLAKE2b-256 effc5831d34fa342b314427fe77defb8d9362a9fa4d9161ecea8f0f267eefa24

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.9.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd3da283550b75998a553f9bf639bf7580ec161afef840adf294c24d18a33d62
MD5 98654848313c6b6f3cfad56d6551347b
BLAKE2b-256 73d1105587fcf9e8e1209c380201c57de1655404dff0a09175dfd4e495e1f2ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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.9.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.9.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48ab910e7f5e200d0394679fc571efc74347e47de6a4710caa3a24b69ea652fd
MD5 f066d534bca9f1cce39f7f53924b79c7
BLAKE2b-256 49cd95ac699f32406dc468d9daab6e482fd32e6fd80e50d00e44da76eeb5abe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.9.0-cp38-cp38-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page