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

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

highspy-1.8.1-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.8.1-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

highspy-1.8.1-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

highspy-1.8.1-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.8.1-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

highspy-1.8.1-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

highspy-1.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-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.8.1-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

highspy-1.8.1-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

highspy-1.8.1-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.8.1-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-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.8.1-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

highspy-1.8.1-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

highspy-1.8.1-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.8.1-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-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.8.1-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

highspy-1.8.1-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.8.1-cp38-cp38-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

highspy-1.8.1-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.8.1-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.8.1-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.8.1-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

highspy-1.8.1-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.8.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: highspy-1.8.1-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/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 593b511dd0c7b6d04a2c4f52c016de92d0fe6aec370c356e7f32867a2e7c35dd
MD5 b0aefb2ceba2759b5467536af9fa7f79
BLAKE2b-256 643040bbfd99fcfa705471198d67737e9cd51530b0f53bc807ae948e7cf305e9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 55bb3f3b8c2330f220518e0d35786b53f9353a733d66b262ddb1627807d52341
MD5 6a34b7dba75f24d156485256f0a96433
BLAKE2b-256 f0b2dcbb8c4c80630c0aec2ec22caf3b9968b476675f73f7fe863dbf66404d3b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be899c23dabadb5c93d539906e2332912e963c0c91bf402dcf96097cb1e5ddeb
MD5 0c85fd6479fcbcef84803f6b92e08713
BLAKE2b-256 4fe3a33c64192e435c67e3db3bf13de71469c8179a8a1d25b3258490ee1bc3aa

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c40853744a60afb032eb60f158c84f967b0a6484fcd3d50783035264ba084c30
MD5 c4864da316a6797ff5bf6a5b6a6e631d
BLAKE2b-256 5772a391945ba072d28c559592290a70fe714ac877f3b4aaa3f60c25469e08c7

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e02633812954379d0421f8ba59407c89a3b0578e74e2a590212ac1b203b5189
MD5 7d5432022e0d1b09b4412b1ca32637d1
BLAKE2b-256 0a77f75387c0376982e7fdd75e8ee2b1cd109c27997410403b143fb193b2d0bf

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file highspy-1.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ff4585e6c285e2f92bbfd4726560fd97b1d0c239332a59a984ae6fdd0edf54d
MD5 37dfe89f3165b9466eabf9b8a52f3215
BLAKE2b-256 df1cf95e2cc82925d443477be074e2a5f6528b9ba5abf014887f64bfb6ba6133

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83ba9ab0a8ee6cdd2c0dcccb82b061badc7046d13c88e3098e1f593b205e29d2
MD5 f83d306a371cbd97d9509c88b4e874d2
BLAKE2b-256 3382dcd0b89e9a2593b25b34b1e96d661b51b5575433d5275ce86ae37e5bafdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fb06877e35741c05d7a367562b06d0b37bb5d829dc86d7d8d1f71336418a09b
MD5 02cd426ec39dffb4c2923b89ea784339
BLAKE2b-256 832d7f5f722699d14eb3f9e1401fc0b7ec97d6d9e66553a3a634b54e36457fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0084ef4d5125de9857344ee0ac4269e2dffd21db52f83296d0e2b3c5cd2d6245
MD5 e3567fe45e8e38fd1f3c69a7aa4170db
BLAKE2b-256 a1020b0dc316728099407e0df8bd8354b6544df49a5ecb0e24155d6796707140

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e03fa21705ff182daaba0150fe727c31cb78a35103e203eda96e7963f839139c
MD5 3d2b8304235b3f0e72bb422af8bf8a7e
BLAKE2b-256 8a4d76b6bc7450ed8ffb894ea37093b7c7651566d2233284ab375e0f003cd509

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: highspy-1.8.1-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/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22d4b7705afa0e9e9d65b8e46b52bb6ac263d20e9b2212240c9663d0b6c82cee
MD5 c457260493632b522a47afacf1c48321
BLAKE2b-256 8256d3660546bf9734275c56776a064aa58fec0464d18ced25fdb52bc125aa43

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 47e17e9c778ca52835535fc9f498520bcd53f0c6927f2e6840d67b9f7e787c2b
MD5 fa51714af8d9af8a2a8ffdfe24ef57e7
BLAKE2b-256 d3123a9f4ab54b9eef42bcb729e477060cc0213d186b5dd2eff9091c529bff85

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad175f0723489cd10c59bd9267c495e01c1105d569e456e076f25a0c21011e26
MD5 88d991cc315437a21f0a3c6cbf281f17
BLAKE2b-256 8f32414581943fde8355b7fd2b0cc9c750fbb67c1eac3bd025808b8375d967af

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3568a39e8be211d9003f57598a9b898861a3bc33d2dcc78eb26e81ec3f135820
MD5 929367edcd18eddd252ebcbe911ba6ff
BLAKE2b-256 e41d94eab468b0bf22884721c8a2c1ce744874dc231860a26349396fe8a963d1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e163c4985d4930bc04bd1dbe1830cee79b997c9f68172ad8ba5ebd326b716836
MD5 4e231d452ea9beeba7466b170e665bc1
BLAKE2b-256 3c486fe8a98e090e9b189b4f23ff28ca64cbc02c98e512260a6c86a9e8848f1c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file highspy-1.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f97c9ed6f57764cfab988852ee880db4abdac634e3bf9c1148433729e62e3921
MD5 78caa392e6820040c807f4737a5db3e1
BLAKE2b-256 b956123604db74d412b9be23f1b9f9ad92c6fbb116aee74ecfe53030a45a5825

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e6cf15ea7ffd07320b6ae1e84c341d96b3d9dceba19a39c635f95ec77b46d92
MD5 128f29054901a433697ccee710ee094c
BLAKE2b-256 40e98a1179d8679a759e42a1bb11c360580fbb654d3652d89b8a627cc4ef816a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d99994d51a6fbfa36ee37170ba680df10c21c8ca11d5182b9b459833233a9f30
MD5 aec41714cecfb1ded00be6e0b6afc4aa
BLAKE2b-256 90f33c2b0baa90d3679a2d5562fe501a18e243c50a803b919b232b8b19f24c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c9e7977e114b8fcf8ecaa3d6755c54d4878314eda0e90e60f8bbca1b6029170
MD5 9c4a44b9515b1f1557e33a3ec8828892
BLAKE2b-256 54d06440f7571c4810fda968bf13c26429546110460e4c64da1b6033b3c2f911

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b8fc89555b4eea74d7974455e6b05fdb3356e1c4ae23c45c4083866ea01358e
MD5 204130633db73d5579afd4221b0a195b
BLAKE2b-256 d58346fc7af04fd73b0d3fbb81a16c59e0ac74a3276f50341c4005ac42e13883

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: highspy-1.8.1-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/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e8a618f386b6df598463e967a5c174cce073d6a805d5463aae849534d335ccad
MD5 9ad38c8b97573bb26bfd52035e34712b
BLAKE2b-256 a09e44a97a7825bfd7706d9e612333a392f3777be0d3a0ce681ce2b42f99c6c6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 188b41cfde3c4b591a677d6a3bdebab31c005c691a7d7819d35803201b877829
MD5 874b5ef1dccb213963282441a263fee2
BLAKE2b-256 c55f83ddfe10ee288058ccb9b931b4ee413832b32b9a9a5205594116f4a1e519

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 948249af5b2d233ce2bf11d25f376c30482b3b38252c259a1388ca1312f09aaa
MD5 ef46b1c0ca908141fb0cba5876349686
BLAKE2b-256 bba82fca1c24749ba8554dd666b6089a5949b41c7f2f5ec47543a464b0254888

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f84b37394b9d2c824d13e1917a609b3746c5fcc8bbaf8b021531a77b18b0d25e
MD5 58fe79595e6bd2e7f3eaecf31fe24f07
BLAKE2b-256 ad0343a846d90e6d97ad6fb8347873377c1dd5b194f8447b5ac691a96231086b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c8e7f229b7c12f7a157ee96c6a61159559c1aa4c69f46e7d90af4c9e3cf7713
MD5 abba1feabdaaa09db521e278205ada29
BLAKE2b-256 34b494e5b92d0f519a1f1d3d5c9dac17932ec8d5a57977cefe188c5243494c1e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file highspy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d40b926eed056891406d899492c257033536887a393ce43447fa247d227652bc
MD5 91c1fcb9f85c088c45679fb0f97b1c5c
BLAKE2b-256 1e035d39f57dd6cf56f63748737734cc8a1bcfc6852a054da24d329baea0220d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ded960d78ea5c1d8aa6139d5b48e6d41b3797517efd9f0559d735e3ab4d0dc5b
MD5 b5e7c9990c2e5c3679a4a3307c15bf3a
BLAKE2b-256 ee3247adfa2ce8c79ea388cd97110fa2c3fdc15640510efbea90e4ba894318f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4b5c33866ed85f4b3796cd43211a0e24ce2c26c7a11fc8934818d80cc544ccd
MD5 d5d462a0f060057f4e31977c11c3a80b
BLAKE2b-256 e88d60d103043988e4174fdb9d71243f37263967f65e13bbd20fa34fe47f282b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 774a026641cf7ebc87478adff33d0f451d95ce767d15f0ec4e7c4137b02b07ba
MD5 cbcfbf1f951ce5330ff6af52b1455f51
BLAKE2b-256 8dcf7e0e3f648bb320d679eb93b7f31fea13607fbf8f27ea92885d3eba6c0c8b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 121ceac7251c50659fd45fb78595ae16724ce65891ef5ba8d5881e6272f180d1
MD5 c029c8ac554774eb145e7a6fbf2c69a4
BLAKE2b-256 eefb88800b492c87cc7f6fea9cb5b5fccb8cb39e13164e4a0fd2ecf33ca2468e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: highspy-1.8.1-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/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 334f4a45a1ddb64ed29e0e3b9de6c1ecba6979a2d00877b2b0bba55b5212101f
MD5 cc03c102b419ad7d466ce6b8a9dee7be
BLAKE2b-256 dbbc1bbc710f6f4f6015fec404bd5879a5c00887dca25623fe386615b9f5aa4b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6a0a7bf1e23da39bbbb24a5d60730207ad5213203200990d836b0313d80f3f86
MD5 92fb78a3b41ad5542476f5ad88b52cc3
BLAKE2b-256 225f9998c7eca98005bb643fa81e7e951f9e325695713d22486f6a29aaa1c664

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d19a63b8e69f75073c802daadb39ea6cba85eee19853655409f8c78df66fc966
MD5 b89ef4dd2648f8eae24fd918a59a471c
BLAKE2b-256 433f4f505fb44959fcbc0555beb758bf8ddccc542fa45a4957f246e51552e1f1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa71dbe1faa9a5306835c1182fa82523facdf0f174b610da261acb33389ff2e9
MD5 8ee5f794724cdb53891986d1097f4c9b
BLAKE2b-256 19d961049e7c355b6dc589688339d2dac5fe54bb8f270b7797287b3cc68facc7

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1d1b59fd145dc52faea22dbfd065595081636bc52d959c353e29829cfedb0f1
MD5 a3762f544720bccff01f73ec469a7149
BLAKE2b-256 69488fdb6386a76dc40ccdcc9b78a76e0687fc5bb4575a29839c9fb8e1a848e3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file highspy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f54a121df6fc3e5cac6763cba2303bc4d78abb9edd56053f3852b4dab8a0aa99
MD5 8500340e4d66764328880124d0225469
BLAKE2b-256 f1458ae1adaff5e62e3b4819d5739e46416aa30dd8205b35105c292162bf9568

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4dbd9851cc870671f53b4c1f4eaf3190812b33225b120003c53b68d96122d429
MD5 27b7b48bc17768e12e75e0ad36554567
BLAKE2b-256 e2016ce3227636494993fa837909b9556966ec28122a1e4a2173c877922c0c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdbefc18618cf281e099d3be4c2c229ee42337ff0c72a361bc5f105db92eb897
MD5 8604ac23c52d77ece8ca8b82a1fbca23
BLAKE2b-256 f8ec1ddc00b8091c1794377b9b1365174a886b81d3466f2a65f6062776adb889

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e73788dddc15c5d3ee3b5eb3aa57823088f3a5473d1b9a171c9d3c94c3df2b4
MD5 a87831ef5504edc4f15e4e8f2738d8d9
BLAKE2b-256 37d32f1439d061d305be04535480fa7cb0ac5d51c6b358343be08d6a63347096

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f20d3579292c8deb9f10907911edfc442ef54a6d8722046ef29d2c275ae9389
MD5 d2f461a4ae89a8f2bf90585dd109b4f1
BLAKE2b-256 c098209536b16ad97d476cb674a2d209130ead1c8f4489b3b66eddba77b0f3ab

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: highspy-1.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a0f55c34af46bde179211a945b5cade2bac48a72e59a3e89118a412123294753
MD5 dc4b7acd65edf034a6f894532ae65278
BLAKE2b-256 0f587a699cacea7bcc21a35ac971b5fc86dd83cfaa92d74876308cff3eb83f86

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bb7097a62b8ae956df4eb79f5e27dc7aad16207cf73e0f72a518c9edcb933d63
MD5 36e1b608400381af974b01490cebc0bb
BLAKE2b-256 490e445fd2ea90eba158b19c0a69c15ab8a815e1a24ddd7fd8c3ccd2fba08ea4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2673a127f02633ae10c33d26d996a5a172d24de7085861f5b32ef4983531bcbf
MD5 35740da1a6d9dc757044878a38784950
BLAKE2b-256 a994d6a09a36d6bab125eab1ea36cee23dfab198cba37d539f47685965d68758

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bca41cf30c2d99b9c83896a7e7ee4b88792749cc49268ab8ad24faf81e3df0d
MD5 36918ce2db374840ac0b032f31f84f99
BLAKE2b-256 aadb06be7d03314bdb58ef33e7831855a5e2abd1c1ef617aaed10b430f7735f4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b335c7ac26413b2c81fb392f9ca19ad377ac0327b725111c9ef08391ef1cb765
MD5 684ed64618dbfde4b467d2efbc3ff36d
BLAKE2b-256 cb5d7bdb291277f829b915fd0e24c2b8139135b8ce26547307e5c0e22bc29679

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file highspy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01b19cd067ea767431ff1c1cf08071471ac0efa4dbdf38de2a2564a2c0be8f5b
MD5 8e581894b54fabbbd951b83eae912bae
BLAKE2b-256 26869548f41640e40931642b5b3279f1571500f47661398eb9fc9e3d4cfd5323

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2523b750204563a121fa6998c0838a038dbe99cbe246fd9aa2ad3444e67e192b
MD5 2a6c243868fbe9991454f6e4b98943c5
BLAKE2b-256 3619bea2b512a898ba80da9df3f126e049b88de0e4e0a663db2687f82bbae332

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e4b796fcc8604247541422b7a7dd13973d731bd4cedc895224ac9e111a5ddf2
MD5 7a93e3024ba859091c60eaea0af68814
BLAKE2b-256 2366a003154bd56f4bfe338d56709cf1ed08ed750573066e1c9d0d3013eb96e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2837d139ac739e25830b96b6e0a15d7fa8b08ad7ca03f7aedc7cfcbefaf2cbf4
MD5 5d11e787b6b1fae1e16d5c107ba19b9e
BLAKE2b-256 73f360bbab3f8e07fc449a65cd0bacc88f6af02b4ff9bcd325b5bdb4ded89a6b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for highspy-1.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1db987e443db7cd10da2d6a6f6357224b9f669a43668d1f71823269cb0098bc
MD5 ab18f699d1373efbe52884f7d0396848
BLAKE2b-256 fef4cd5af654ef5c72105dbf924ed7fcf992e7f5d8dcc11215f5792edcde53f2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: highspy-1.8.1-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/5.1.1 CPython/3.12.7

File hashes

Hashes for highspy-1.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 faf7d0f470fa1a7b538c778a2402ed3d921392716fdcae30fd5e4f70e4ec6fdc
MD5 3dd57738376c1a64d87b74cf8370b228
BLAKE2b-256 de5a005205c2e856c1783030dfdfb6dd6a15aa31324edb08db746e1e140fda18

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-win_amd64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for highspy-1.8.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92915be23dc46afb10648104c91b87794ce4e22a3b66a846a1f50be3db91c2b3
MD5 7a8cea33132f954352006fac3932b53c
BLAKE2b-256 03443fb95b50ab24b1a2ab2f66d891791112870f3619e31ccc1c518d122c403e

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-win32.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28abc122995c2d0b627c3192d29c7c631d77b81e3f45980cf9e5cda76a653ac2
MD5 44097a2516c0e4a7e8a383a66cb17bd3
BLAKE2b-256 98d0b4866d7138205f6f6a728858a677c68f1daceaf8a51304ddd26fd1767872

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17334262d3b9d06530a9bd471fc47592d1353020127375807b14ffcabb2b1de8
MD5 dd9f9ebcb7174cd51f11583ce5e4c5c2
BLAKE2b-256 818605972d041a0d53b23f3058e91b0a7d789a84e2ededb83c61ee8ed576cec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 945966e7a9f678e1cd416139713a939e7870bbb4b1d0bb3a64d7dfb7a7614673
MD5 2cee0fc205f4c9cc2107b7aeec0fe9a1
BLAKE2b-256 240bd8067376fda4a652d141850b1dc69241aecc5d7a9096db683bc0e599b5d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74d9d38f4dde1dc14dcaad536226b9a03bb15d8619642c298d991b9a850c5274
MD5 900997d87ad82d20462e35f8d179d4c2
BLAKE2b-256 bd32d4887c7083b23b6862450cca586a6d059d2895260e5e6d24d1c6e37959db

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2996947e0740bd7e9678493578f6a385473421bd29f170addd9adadf82b88d68
MD5 46bd862f92cde22f66ebcbd73f0cbdba
BLAKE2b-256 47760919aad398e601ffbb71c23a0b1ef75e16da573c8e353d90f8c3dece7a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2280b79ad1d8ea958a9ea435810b36fd306153ec346c9481716fdaab89de9d4b
MD5 5376ceedc2275c3f4952be76206dbdb4
BLAKE2b-256 b273a756a713fdbc1d6872d205aec09791a7205414874a6f90033794654228c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c36b4a9847df8106998c88a5b0b2ce4b974fa172bc1353e61a7fab9faaaa80
MD5 eba351a745c5e943634df61f09913ce5
BLAKE2b-256 7c5e883e9d88ccfbc99c860d97959f6f38443042ee242b8e29c2576f12f9e00a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file highspy-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b55b7c9d82db8eff035e553b73c573ddb6e1f1b213ab8dab326a578740aa914
MD5 2433664a42b070e1c87b742bffb7f483
BLAKE2b-256 e410b14abbe49d05f9262c9f58c10086caf41d433ca6e6f5b366a622c9feec8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.8.1-cp38-cp38-macosx_10_9_x86_64.whl:

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

Attestations:

Supported by

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