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 [email protected].

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
usage:
      ./bin/highs [options] [file]

options:
      --model_file file          File of model to solve.
      --options_file file        File containing HiGHS options.
      --read_solution_file file  File of solution to read.
      --read_basis_file text     File of initial basis to read. 
      --write_model_file text    File for writing out model.
      --solution_file text       File for writing out solution.
      --write_basis_file text    File for writing out final basis.
      --presolve text            Set presolve option to:
                                   "choose" * default 
                                   "on"
                                   "off"
      --solver text              Set solver option to: 
                                   "choose" * default 
                                   "simplex"
                                   "ipm" 
      --parallel text            Set parallel option to: 
                                   "choose" * default 
                                   "on" 
                                   "off" 
      --run_crossover text       Set run_crossover option to: 
                                   "choose" 
                                   "on" * default 
                                   "off" 
      --time_limit float         Run time limit (seconds - double).
      --random_seed int          Seed to initialize random number 
                                 generation.
      --ranging text             Compute cost, bound, RHS and basic 
                                 solution ranging:
                                   "on" 
                                   "off" * default 
  -v, --version                  Print version.
  -h, --help                     Print help. 

For a full list of options, see the options page 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 [email protected].

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/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.11.0

The nuget package contains runtime libraries for

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

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

Fortran

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

Reference

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

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

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

Uploaded Source

Built Distributions

highspy-1.11.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

highspy-1.11.0-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

highspy-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

highspy-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

highspy-1.11.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

highspy-1.11.0-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

highspy-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

highspy-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

highspy-1.11.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

highspy-1.11.0-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

highspy-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

highspy-1.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

highspy-1.11.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

highspy-1.11.0-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

highspy-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

highspy-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

highspy-1.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

highspy-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

highspy-1.11.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

highspy-1.11.0-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

highspy-1.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

highspy-1.11.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

highspy-1.11.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

highspy-1.11.0-cp39-cp39-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

highspy-1.11.0-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

highspy-1.11.0-cp38-cp38-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

highspy-1.11.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

highspy-1.11.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

highspy-1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

highspy-1.11.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

highspy-1.11.0-cp38-cp38-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

highspy-1.11.0-cp38-cp38-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for highspy-1.11.0.tar.gz
Algorithm Hash digest
SHA256 771e58c076122d207ff1b19759c21d3227f0da5b80dfd89a4145681524969cef
MD5 5b9c9c002548fd59d0359e3adf7bfb7a
BLAKE2b-256 b4fcaa1325331c320598ce60cc31060087681cd05123b6fb2a8a571e882b7f05

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ceac08be37f75dc0af95669a0cfb073e5db5f07ead05cdcc81fd4b4394708d53
MD5 d910f9573275ac451cd86c76f7fc8627
BLAKE2b-256 20caba2af91f2418bee0d0e99df71dcd171ca863675de6a5260bbf06c120f084

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e61facebb0127eb3661db79a11c7665e47229ec63d2b425996d04aeede26d46b
MD5 b8b8fe85b84ea4d0891ab75e60a285b3
BLAKE2b-256 900f89c579b2f718dc419fd76067a03ecb3c96e6919b7cffee1b9f5a2dfe4f56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6156a7d643268456427b6fe310626ad9ee9d908ff812cc64ee8bad7b9872ea98
MD5 8c636f46a6c3c9e3a30d08fff503506b
BLAKE2b-256 dcc537b849a69c9cbccf533a9a51e309a49e83d704f06bf45370c2e78ceb15d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f78f27e18275d3c7868dcd0314ea535ed361322e7f0817363872d75a4cc15abc
MD5 67a4eba93c3e5d9293ec8027ae1bf46b
BLAKE2b-256 0e93468e63b16d9bf123174e7f8f7b8bd5a2f96b18d7370a2cc35e6485871749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65232aa496fb27be56cc85b2c7c785fac866107c32ea00cc38ec474d6a9f6494
MD5 cee8abf32406d86860528759804d76a9
BLAKE2b-256 b516e13326a9706c407d32e39ad14aa79a696c1eb49bb13d50fde5d96afb02b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79682aa7855d94106ccbbb750082d156dcbb57dff9d489f167320ae0ce768867
MD5 cf1f4b6d4ad351e5814f0bd3b2e37b8d
BLAKE2b-256 6c58fc3775850dc668006039637a4f23f03a9c0eb533643c9d3a7370f9d63de2

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c2e7cf4d504287cd8910de322a726d58428af43bb985d6bae602bf84a7454b9
MD5 672ff7b4beef36bb93b2dc1954e3fdec
BLAKE2b-256 a9da200d3f13ca9ad3f9fc11a1f3f76cc2734de42dae064510365d42caeb5ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39fb60d84d7a58e58f923ea6f0641e6978eb9049033b84de1a2add723e01cd3f
MD5 949dd377cc49b8ba66f988963bb89f56
BLAKE2b-256 e6363cabdd3ae8610912962bad96f4d4d6702255d6c01d050754e4050a9eaa4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7babebfc01b7682c69c95e0520614ec9400e10cec1b84d3fb7cd48535c606244
MD5 3223dbb6b88312cc2509b03886c69b71
BLAKE2b-256 74e22853095a74e9fc2c2081340647be8edba7122696534ebbaf159ceb53f9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f675cda73860c7c8a22546db3c80db985720baea84866b08a971cfa03cc7a156
MD5 1df91bfad52e293ab260c165de236003
BLAKE2b-256 96843e899c5d95dc9d5400a308e0aaf4a5143f69016a4f46dd528ff7cd65d341

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0aed8c80d33e2fc2eb1def75dbd34c9fa463acb589d19a5ed5dcc0178ae7062
MD5 f26bcdd9ca2eb70594d77bafd80704ec
BLAKE2b-256 b72f7acfea5b8d32b86bdec018f858bc195236b804a22a7cd3349da711498692

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c33f68df8ab9666d379b0d64d04775c0a9db31882d4f87b3ec8cece0003b47d
MD5 edc3599341f8ee2e17fc31161238b420
BLAKE2b-256 47f5cf13640ed65ea934b45e0c3e786497f4696f286faf45e8e62579a0f15462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15b804387089a389e5f01b056a4b3ad74c7d1cf00ab00a0faaf3b4a582bb664c
MD5 22640679adfba95158f28a214330f705
BLAKE2b-256 f3f542f6f2ce99c5b9d7aa864ac3abeaf8a2b66da707821ab42b0a31ec2a0dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a782c242b4b047f86110787b0dafce9d77cc10f079adab1fd51c5331e5760127
MD5 d5ad743b4611ead0b7a0619c52fd0e1f
BLAKE2b-256 6ee1bf174389656de5d302ed53dd5cdeb5f7e9ad84156ad2fc95d5a63ba023f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50dacf300ebe7c4dca92891c0bf61b694f2ca744207cf7d0d24f2a30ffb5608c
MD5 b9827bec5a91f87f234df0080e298a5f
BLAKE2b-256 04cefd2473bed635eb06d116f987767d5c5fe3c62b317fb1a788c31966d7fa0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a23949e4f44b6df0ed8c387a7c733d683a0fa66e3ff15d65719979ce2099ee99
MD5 00f77efd49e0b0c28d8d6ae894b12a2a
BLAKE2b-256 adaae7c4ac05162187c484bb121f50d8e037c13bf894ed5cf4e781e1cff68762

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 543789b75c396a904cb550de34eb333f1a184e123dadc9903b5e6dbca18a007b
MD5 ba5f2db7508a47a874be28019ff77529
BLAKE2b-256 ff0c94f1ccb6606e8445a7a0c68d983e47f64899582c64fcea651f488eaaaea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d4bc0a84cf613bb8565f9b5f610eb0655384162f509b5d86f9c888570275fdc
MD5 d8e2eb05a1a74484e6f1ab50cd016482
BLAKE2b-256 0ab6ea7ea6c4c3f781b007fe928b2aefa40c49287b4689985d04c3b20d383475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20a3adf8820a5f7a9cee6fc76df625e651ecfd8b5898af2a77042e79269ce0bc
MD5 8e10d6c7295a97d9b328f79d0980e79c
BLAKE2b-256 a30c3921a207f47d52abc81a9d00d8f4d579b05b85670e23bc7140e39268490d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28fffd3e733833a7b2569df6761088046e8aca868ab328828711dbe15b102ad4
MD5 7f935205f468efce0640d54c7531c162
BLAKE2b-256 bbadb54ad6740b950faab3b7f1465fbb5c740fc522928a8d9f01cac181f8f9a6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07cbe4ffe9f07a920edf764d006b0e9c4743eca06ec3db9304cba55209b90c70
MD5 b76d4f86bd1a05a7699f72fa5ca662e8
BLAKE2b-256 d98c74240a4de3ec4296e44c5c9c5d58a0d5ea9d1c5d500c9eec35b6d124ac6c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4678de85867eda0350dfbf954aed8e5f02fa6b9c3e2d5eda319e8cd18c775513
MD5 1eaa66c866b87179d0ec51435f47f840
BLAKE2b-256 68a414006ceaed7d0567bbb11b49026782ea3b28720e318f291c402d99953f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae3c113a1e3e0dd63be71ea49a5646d901600dddf7d354ec39577799a060703b
MD5 2b5572e35706c162f6c145bba07f9999
BLAKE2b-256 33510433dc8afd7a2ead217fa7dc5d1da0169c1492425b2116360991efe80af2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a97b0e506bdfae0098f331caa4a058d7718f4c5bafea16bab8541d175510dda
MD5 36a9cd8ef7c7bf4e146beaa19377041d
BLAKE2b-256 5f31c3315c34248ef640db5ce05cefad1282986dd975598cd37709e3442d628b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 493453d5cfb0be31a1d8764fbee356049a7888a19636f1b3e0f3b560d5f0be83
MD5 3de0b2a4b3e5640a449f0c53f652638a
BLAKE2b-256 dfad462f4c20dabc6aa5f0f38138f86828318f3bf11a875627856cb40a7c836c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 095c2a764fde585a50bbd5523a175ddb385c57027d90da43247d75ea6ef2876c
MD5 bbb80458b10908cc5ff2bf6c4eeafe3e
BLAKE2b-256 d5d6249ac205426fca2273db6cf0c37e9223e7326047525dc31059ccb7bed5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36ed5813fc0a6108b4f610315bb5a415b1a80eb8ce392a26af7959c1de82a6c6
MD5 971677eb44096c2aa176522a2170b983
BLAKE2b-256 6422082f8c46eaec1fcb57102597b2463948e39b67b52243ad61054b2acd1787

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 169de5b94fc2520ec950d3c21ba506b9a0d6a6deec6e378491a3d78026d283b5
MD5 0d5cf0592b3ce994b3cbf159638ffa95
BLAKE2b-256 dc85141a4c8949ed8701edaaff9dfc055c02c595f28bac5c63761cc9b11b6edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bb768753bdb98c03c3878823174db9e54a9ce15a28f0034d6a678fa1264865b
MD5 f47643ecdae1f5dc55213a490fd13f46
BLAKE2b-256 1ca13ff5524caf5ad56243c92469efcc64fd830f8937df56c447243499f3d6bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5313b093a47c0b473089f0ad059625731c88552b53624208362b2fca32313545
MD5 a7c6df109f7d68e1cb5b913c0e7e3f60
BLAKE2b-256 fe97a185197c5b501a7799a3e5dc4c85267765235326bf7eadbfe929549dd88b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d341d7bcb51a729e39253fcddc5b1dad1d8f2f29525640116a50cbad90e9f21
MD5 fef39d62d423c275418522d1d8600086
BLAKE2b-256 8c56e2913d9e471925ff931739660a68ef4e417f84424e1fe94e19dbd48a0748

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7edf812e060895b515cf1e701915f5b2a37e81f9adabe3ffbb9dfccb098e1da9
MD5 913ae963408db183d0863a65794af3d3
BLAKE2b-256 bbaf7d0aed1e71a834d576a99375449ec04d8155abb8c69304adb18e61c28b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d06df7da798a76657ed9b7d169f8fc8a97857622f96ca0bf5f6747df6005bee
MD5 a0b73a7052423d6855e7bae68b392ff0
BLAKE2b-256 0ac0771433008f3a97e932e63a584fe3d3c2148835329e7d3142ea7527ad689a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 812cc0b3ac160f4a1d8034e5041420d32fdf2319c245bd24d0a0714b08060c1b
MD5 7a75feac4103f129d0290f60e9a0e3c1
BLAKE2b-256 7f304119acb74fd171c82744fd6418ba608e1c2221afcac63f435133a6a15121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f81e3d49afd06fe3e94bc3e059b81310f04353407138d8b0d0a16f1c6ec86de5
MD5 6f30ba4e48bb31961744c3b5510b6478
BLAKE2b-256 0ff4e68e97f4b79ba5f37cbb66a3d0d1e8becb6ccf9c3dec412867e5fbe3558b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0956890de1c257c750bdf56910bb008115b2c2d3cc7a150d75f55a187c6ecfe3
MD5 bec13e50348147695189d6aa5f31d953
BLAKE2b-256 3d311056db74b94d9e9370ed259d9fa260bf9469afeedf468578921c6f5796fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3659e2439b26a80c4a0c1efafb433bea1b12c6eb1e58db2f9379bbfc625431b3
MD5 daedba9ba0eef7727c34136f47c5c066
BLAKE2b-256 8709b7a9841dd8599fce631081969d86bc3bb27b2782cea88fdbdd7074eac62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2d86838c34dd715d3337cba72ff5ccadedd4cd0dcf2b51770aab45ac0883df3
MD5 f75cc793c6d3b93d99b0569d420df8a9
BLAKE2b-256 7cbf4a6d4b4bb212af680cfa1052b3a9e006d89c5ccdeff77795c9b9764e9121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95012a8457fc6a375e336c259cdcd864e2c47f5177c6fd4eca1a384b32166d28
MD5 f669a4d2ae928b56168713eba0e88126
BLAKE2b-256 bf1ca1a3bfdc681d721bee2d48b1395d1a6068edc9d7cbca21cac743ec2eeac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77b66e3e93aad385ce100cd24dd44390a0e3002b46b8fed57a7c9e469bae6a92
MD5 a87052fdb4f500cbd439cab3ffffe4fc
BLAKE2b-256 8933f28bd0685b7ac9cb9d3001a115d5eb663ee9681e4f1afdd895b3b9578d75

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cd08dc2da24ca33adaf370751aa8c8bb7fcc19109c000325d364e92a23609a28
MD5 12b916989b17c6aba433617072a70812
BLAKE2b-256 6d0e2c22506dec30b52ef8a5aecafd2cf248e20e6bad8dd7a7947f9b76d2a843

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f454086657d66f2048af1e5f47bc6fd7886f4a6257fb607e6bfc6dd7e9a625be
MD5 25c52ef9dd433cbe0b57891b52db9db6
BLAKE2b-256 8c8fa874a1a6c978a715c2b25f31db6fd255e61be46c8f0db73cdc40f76382e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a24b34e49ff233c01e0460a2eea9114687792873c110bff7b1f4a1fee73fd789
MD5 355e00cf733f7727e159cd411ac9cf50
BLAKE2b-256 f66f5e8320f92d3d9c18217f7d3f25d666f1d0049cada5c97b01c8dc494da239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da339ccb44bdccac5d22b2a1a8be15887b5caafa46860066656c1ce73b4cccb7
MD5 a29a04104603af9025d28228f4b61f34
BLAKE2b-256 4a132a49bdce33153ae269748ed0abbdc91c979cb1b9044f030a2eb42d903d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dfff34964224ccacae6492422f7ef67783b32e9593279d499cd1475077568f8
MD5 19b37cdb81a3fa9e8417b008dc13278d
BLAKE2b-256 8efc4540d22fe84ee2db9794b7685c34c73a5d1ec5094d550d19e297cdddda24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 538267f30ef0c8d080f7e81d117a6bfcb50e8cadf75872c9399c1060f0aac8a9
MD5 779ffaedeb981a6bf67b7d33454c8e50
BLAKE2b-256 665ffc83e1f21375f0475c2a0ad9641ada47967d0e1a6547a940b22166d2fa85

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b3955c7ce8683200540a7124566b3d16ea4c999854593cb139fbc73d92ca0ec
MD5 570d6ffe63f4cbbabc1c873031d44a56
BLAKE2b-256 6eea1a8178c35b4479a5ba5026aeafaea74d78a52fa0e9ec1b253e6e501ee698

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c35e40a5e828fb6d64a9e41ca642d76dfe2864d42a29bc2e16779a8fd38d9e2e
MD5 d2d6863d27dec6fab027815600b66bd9
BLAKE2b-256 b6d5e1620d9e6115c22b43bdbd4281f7eee5bee14a453dc9eafe0b6322d2862b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfab90bce58998721f5a4ea7775755a5780ac106def45f4f3e8ef624a1d53b22
MD5 0f8255b326c7de9506b8c7ebe751c247
BLAKE2b-256 0a786b7a4a3d1b5a1f359dfdbe0719d4c547f61458c5eb5dc52911447b02d3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ccef196179c996dfc643bad03ed45a6f5f3454e261856185c19d15e1312beae
MD5 4cb2d68d8829353edfcdd9b41d79ff4f
BLAKE2b-256 0f37fa69f32d8f91f519f2139c4b20aa44a1cf0e283e7fb927653ed7488accb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: highspy-1.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for highspy-1.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 97f5a19669de57dcc9785501bc1580d2c74adf7f063a51abc312447a17db3275
MD5 8a6bd4314d77b3a55a0e930663e4547e
BLAKE2b-256 43c0c714bbeaaed4b09df58141fc16534d76ed0898820d897a7226fb6804700c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.11.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for highspy-1.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a8f82358c522e60f21e823b01f2f42b3e633b053ada5f3b0d685309af3f6b3f2
MD5 ac142f8bbb6fb386914be36d1d1b9d28
BLAKE2b-256 6117a15313d482277e44418287b5b21849353282ba6ad55c391f6f769ac67f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cff681c34a89b5c15d2581eac4775e954dfef866f7210ff128d6f41ef3dc9da
MD5 102f59589b757cd63eaa03e14ac2853c
BLAKE2b-256 e014fea330f9afb655a7f7a4501fb3490e34b6cce715f1ecfff2b5513fe3a8f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24f9b7dbf50f594b46954a1fc98311e97fec441b6fdcefa1276482770f096bbc
MD5 5b21584c690a05e7ff9f8890b24d4d65
BLAKE2b-256 b86ccef973715fd4d02b88f40ab24351513e5bc0a2cf341d5f6fe3186103b6e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe7a1b4603e1a8c825b623602f37405f6a7b15515a90a01e1b05979f96169456
MD5 36e31af55e2b35f0df8521ccf131d2de
BLAKE2b-256 0c638c03d0b4cb5ad2921018f7fedd0917a8e270f3b49c18b0b02d4dbf115860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42a72d950b98cbfaf98153f77b146912df5ff37939fca8560d38d892af37d950
MD5 94a5cac5f1637714bdd1214c3ce50371
BLAKE2b-256 24e4f9932dcf2cd4d64e7f9ebbee41e312fa40fcd9b29e415a0702bb35ea034f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcd9a19f3282c3e66fa59e1cd31fe22c77925df65fc808b65928d994d06ae5d5
MD5 6dccda8ca0bb6870f7db4dac86cd5a17
BLAKE2b-256 ab6a7ceb6f08759f6efd83509def8d3ae75c1798bf27a9d2397cf769f694828a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d919aee9c56f4ee677763d6ee3ba573fb331737811c07c1a35176639f0ed984
MD5 0c02efdbfc25dcb65817449ff646f7e2
BLAKE2b-256 b849147891535ad26a16e549af633d094b1b3d87f1531c6cb225d9b830b8b337

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.11.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.11.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d50934599182eefb184bda85541e1b5f061a905922bf890a6031ebad53c4890
MD5 7460d5a0c42d59568849595d7d1dc761
BLAKE2b-256 0262ff13ac6f30ca59def5ee7b189e9137dd8b603f1a29673108e83c5ab3cc33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed032e327f5d40e1f55cc49109bac975f315c39f4ae953fc558abaf23bf767e9
MD5 02855cf3382bc043477fe70331605dcf
BLAKE2b-256 c5622c05992b752fd6811f7d9b43ca164492ea07675265f928b6b8dabb0cbe22

See more details on using hashes here.

Provenance

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