Skip to main content

A thin set of pybind11 wrappers to HiGHS

Project description

HiGHS - Linear optimization software

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

About HiGHS

HiGHS is a high performance serial and parallel solver for large scale sparse linear optimization problems of the form

$$ \min \quad \dfrac{1}{2}x^TQx + c^Tx \qquad \textrm{s.t.}~ \quad L \leq Ax \leq U; \quad l \leq x \leq u $$

where $Q$ must be positive semi-definite and, if $Q$ is zero, there may be a requirement that some of the variables take integer values. Thus HiGHS can solve linear programming (LP) problems, convex quadratic programming (QP) problems, and mixed integer programming (MIP) problems. It is mainly written in C++, but also has some C. It has been developed and tested on various Linux, MacOS and Windows installations. No third-party dependencies are required.

HiGHS has primal and dual revised simplex solvers, originally written by Qi Huangfu and further developed by Julian Hall. It also has an interior point solver for LP written by Lukas Schork, an active set solver for QP written by Michael Feldmeier, and a MIP solver written by Leona Gottwald. Other features have been added by Julian Hall and Ivet Galabova, who manages the software engineering of HiGHS and interfaces to C, C#, FORTRAN, Julia and Python.

Find out more about HiGHS at https://www.highs.dev.

Although HiGHS is freely available under the MIT license, we would be pleased to learn about users' experience and give advice via email sent to highsopt@gmail.com.

Documentation

Documentation is available at https://ergo-code.github.io/HiGHS/.

Installation

Build from source using CMake

HiGHS uses CMake as build system, and requires at least version 3.15. To generate build files in a new subdirectory called 'build', run:

    cmake -S . -B build
    cmake --build build

This installs the executable bin/highs and the library lib/highs.

To test whether the compilation was successful, change into the build directory and run

    ctest

More details on building with CMake can be found in HiGHS/cmake/README.md.

Build with Meson

As an alternative, HiGHS can be installed using the meson build interface:

meson setup bbdir -Dwith_tests=True
meson test -C bbdir

The meson build files are provided by the community and are not officially supported by the HiGHS development team. If you use this method and encounter issues, please consider contributing fixes or updates by checking the HiGHS Contribution Guide.

Build with Nix

There is a nix flake that provides the highs binary:

nix run .

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

nix run github:ERGO-Code/HiGHS

The nix flake also provides the python package:

nix build .#highspy
tree result/

And a devShell for testing it:

nix develop .#highspy
python
>>> import highspy
>>> highspy.Highs()

The nix build files are provided by the community and are not officially supported by the HiGHS development team.

Precompiled binaries

Precompiled static binaries are available at https://github.com/ERGO-Code/HiGHS/releases.

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

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

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

Running HiGHS

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

    highs ml.mps

Command line options

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

$ bin/highs --help
usage:
      ./bin/highs [options] [file]

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

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

Interfaces

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

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

Python

The python package highspy is a thin wrapper around HiGHS and is available on PyPi. It can be easily installed via pip by running

$ pip install highspy

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

pip install .

from the root directory.

The 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.14.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.14.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

highspy-1.14.0-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

highspy-1.14.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

highspy-1.14.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp314-cp314-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

highspy-1.14.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

highspy-1.14.0-cp314-cp314-macosx_10_15_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

highspy-1.14.0-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

highspy-1.14.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

highspy-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp313-cp313-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

highspy-1.14.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

highspy-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

highspy-1.14.0-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

highspy-1.14.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

highspy-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp312-cp312-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

highspy-1.14.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

highspy-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

highspy-1.14.0-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

highspy-1.14.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

highspy-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp311-cp311-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

highspy-1.14.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

highspy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

highspy-1.14.0-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

highspy-1.14.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

highspy-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp310-cp310-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

highspy-1.14.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

highspy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

highspy-1.14.0-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

highspy-1.14.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

highspy-1.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp39-cp39-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

highspy-1.14.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

highspy-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

highspy-1.14.0-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

highspy-1.14.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86

highspy-1.14.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

highspy-1.14.0-cp38-cp38-musllinux_1_2_i686.whl (4.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

highspy-1.14.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

highspy-1.14.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl (2.8 MB view details)

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

highspy-1.14.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

highspy-1.14.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

highspy-1.14.0-cp38-cp38-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

highspy-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for highspy-1.14.0.tar.gz
Algorithm Hash digest
SHA256 b09cb5e3179a25fc615b8b0941130b0f71e19372c119f3dd620d63b54cd3ca4c
MD5 19d031ffdc2d5733d6304b5db7b73c0e
BLAKE2b-256 7a66e74b1a805f65c52666e3b54cfc1ba783e745c2c8a7abaae9e7ef2d9e7270

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 90b7074d4bc34a4390636aaf9e4232ae15d4536098f1f1f39f04329c08751148
MD5 47b18411b548f1149576b786765c7ca6
BLAKE2b-256 a44dc7f2b5c23c4b7103095a9959add5119c5653c17c6bc7817fd003bd3ba8c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a85730676ffc88eadca1721252bec168f6ffc0423f6141f6ad41f79bb441327
MD5 a18d75dd13bd4f932dd807ea2b95e760
BLAKE2b-256 e70d001726678facdd7ca435d430bf039732cc50d77fdbd6231fd3bac428893b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88db4d1ebefb119991ff16adb624c682ebc20fc586c86156843cb4be7c965d8a
MD5 de632dcbcaab23e9acd25d381951f586
BLAKE2b-256 b134a611fe3271be165fb13a7b85970820579515d652bd59f69aed001ed2ff98

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a54d687522347348639a62df270f45546a3cbd84a6cd230dc41732e9559c766f
MD5 e423c312ce05ddcb4bfa210715447f88
BLAKE2b-256 ed17564c24dcc05d6f11876485654956dfb6b2f4ba17f21ecafe84b059a17ab4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03538f68dff2038582d8aa7f5d05690ce459435f498ea0022869fe962d70d8ae
MD5 4d2ad6fa29fe49e15831264306fe2055
BLAKE2b-256 534b75f862b96420dd77a5f88d6401212534833b99aa0ef971d4eddfd227f913

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 68b944014ce307e24921c3bf904253d8849799ded819bda39a4b09359074ea0a
MD5 677e76bb77997c70848226a6d4c4d78a
BLAKE2b-256 23732a6673db80a5388f364d0f7218af08aebbfc05c866d1b4cc2ec79bc4d822

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8f31f2635517c7d370be612a1e9102481483c749b9db786760dd489fad22519
MD5 0153570767f75c5794b9f75f25a2bc07
BLAKE2b-256 2d383b37047686105955e2d54ec753c3b9e9d135bdd8e5ee1df310a87be25472

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39339a7a000998ab26eb87add814222fcdc304d38cfba2f6e098189b53ef0a79
MD5 4bded8b6251e6d8e5db6276370d2ac2c
BLAKE2b-256 01eb47f960ccb56986c2c9ef4ce9f293bae95de7c22a662f6c45b844c316d7ff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc8ad7a6fc0a44c99b9aa3a3d0c3a917b50dfa8c61e332cb2ee1f7ea4c234e4f
MD5 3b78950b31ec6ea52b8bb7bd63dbaa38
BLAKE2b-256 fcf87d9be61c80a6daa782bf51b4324bf8425896bf120809ca804ad08f69d12e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc9dfde9ad829f3463627dab84152ceb4c30c08b89b19226bf8f69d47a7fed5d
MD5 071677af6a30ef410ddae4a4ca5c1f70
BLAKE2b-256 27d42658ccfef1c31e25a29e337c9ede3107394fad0a9535820a096cd50ad055

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3d15faaab62b408320373540bfd5a7b9a48e9a01072b847f2270b8d5d881647c
MD5 ea81f49260c6f5e143b271d9a1d14ba8
BLAKE2b-256 227e89f07a03ff9f5460043ba4815583fd3fda22aa6d088be3fb730346ccae63

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8eb72be8766717ec856cf5fa3fcadd8ddd59bee0f4d71d4f45ae0a2b861795f
MD5 0e47bb9c4fe82ae26dc927663dbe16ca
BLAKE2b-256 de5a72d9840b26b0b26916bd7624d606f31a0ce83f14709fcfaf52df31e29898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a92b50e7508b90c6d65b315b7dd3b37c6d0db331e698052f7054da523e446eb4
MD5 43d4948b796890a0a354c4a8bf2dec3d
BLAKE2b-256 8c274dbcba90d2c8b2ddcd3157d62f5531c2bfa75a3e360b8f05ac52996b489b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03c9b39a9ca8fe973eb89093ac386a8606ac37beb0e637b1a9255e31bfe87ef3
MD5 8ad92717a2e4706b3832bfffa04353dd
BLAKE2b-256 641025cd0fe6b0dfbae39bee2b7a6dfb91e29b1c78a338e537eb5fc8475ea03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02a987e0020bf28757df9efbdfd6abde6d501b64294f8201301958095dae7979
MD5 17c52514b75d973966c05dc60c80d5de
BLAKE2b-256 af91aa3d6758212f4bb14c4c424053932a030ead226f8138da396a0bb6216d66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bdc317bc2572a591cf9f0f2415d4b0879f9f0a47bdff3cda44f85a943941e64b
MD5 ee46d3395e66c2f773441397c3cb1656
BLAKE2b-256 ad0ca4137e3fd564fe2615093771463d66fa74cc4a2a94e6b68c15a0f8572218

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba290153919da6368e9144189060a496077a738522555e89403504d379e8d63f
MD5 c388c746e984a1c553db790b6ee47c4a
BLAKE2b-256 7c40501586f760677501f3b2f19f0b7236515d06c08db29ccaae838a6f20c05d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 863a9363b624d0ef0a5a5bfcbe437bcd3891676c8b7c4d801462320b1387ef37
MD5 2f2f732c641152dd5d98792da3d60f8d
BLAKE2b-256 878c8ae1a6f3f645deeaaf5522ebd47c61f7d856e8883dd5e7f51318e00ca287

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 479be627bbdf7646dccf5621059b9416e6480c3ffa16998e6cc4de89c40a3716
MD5 bdb1f2605871ac9990ee427a23371ddf
BLAKE2b-256 1d497e1a308163954faa3e91cbc0f73282a24d99b9cb6e7314c6f4266fee88d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 777ce930bc29a984826bc4e65ca7fec0407284a30877bc0d179dacc6bb7ee972
MD5 b710b991c1efa639257f19058a9e93e6
BLAKE2b-256 2d2e43b5d51852a8b06a079cc324ee877a91d2e87128ecd99905b45840b0fd3e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c0568d0fb514dc82776c3be1041988fe428c9df2be0ce98c1bff6382c0d2a5ba
MD5 526eecbe23215a5b84e8a34febc77e82
BLAKE2b-256 69ea0b47c49b6df4474c603b6a232278d5d6e6afddcb9da5044e06dfec579222

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7290540f0352192e43bdc790a59a82cee1f8029bd8d6b9ca20b54b651256bab4
MD5 23a12fdd3179234c5c8fb938f4e0f1c9
BLAKE2b-256 6d60f328af00a9f05838e766aa7808dc733bb74a4fa79adcf5fdd665cfb8d7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c10554bd0a37d4be126f24cbb7f5aca5a4252dd6e572b51b2433ad6d94ce7a9d
MD5 d4de8d773614e1b8dab1bd20653a5a34
BLAKE2b-256 303acff37994f2fd313467749bc9939e5baab4aef0210c79547471d6bbda5e81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e991b5ac8af64d686f2a56fb59391b4bb81a50d647fe1e31a1b0ff34d9d2bb51
MD5 3a050466afe3c2148c2ebae114b62619
BLAKE2b-256 6c4164c4b290a5237e14fbc7e4812d110aecf457273bbade8b27ca9b9ea86c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ba00a35b6c4b96eb2d20d75238c6046ecf82ac85a603706e5f588d28c3b3abf
MD5 7681e29408c3d4e16b5a8bc643637c60
BLAKE2b-256 cca4b1db0018292e46d75d7aa7889f220d0fa0f2243a628e57790de80f1fc22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 44d80756dde11941336933d777ae85b913c303fe40c3b7eb55fae0fe62bbea08
MD5 cb1b5290dd813b96ebe471eda31b9398
BLAKE2b-256 f21fa701fee9ca318e6d175d719f8916d090dd7c8100c28bc591adac9fc2db35

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb7c564ee426355671edf6ad17b2ece5aaa74f21b326ed5e7a8ba5bdc880f207
MD5 20f10df43e2aea2a6161cdde47b7528b
BLAKE2b-256 cdc5efa6d74704aa0bc5ffce9975553f6d13f4527e6fad8f79e7cacadfedd3d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74ee022cc8cc0e3a576f9b2309287974ea80db68adf8c9f1c5698dc725ec0497
MD5 64661f3062a718097b667a5828da799e
BLAKE2b-256 7869a60f9dc033712f564089700441fb08c7f89db32bccab7926ef95db6b2306

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f61406a287b19680ece9a8c0bc3926e31d26ad2b4df8ba49f22666ce762fb7d
MD5 f22b151749ae9614a9b43f660bade8f5
BLAKE2b-256 b67451cfca0c382886e302c4e6b9a50f9b160d214a88b4bc5937f5f8e2452dd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a8d0339887d65f5ef20c59be529af33115197d47f775ee21fca911a87d30f92
MD5 90c3f3c412f65dc6f7433d66d87d0893
BLAKE2b-256 c63d83ee11de10ff6499efdb6edbb4586b472a4e9f982c0f6c5d3faa670bf1c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e726092e35237dccdd8093f8c91be195a5826e48aab349d6e7856e32c0e87b41
MD5 bca2c73d1c178ed164ade33d3f703463
BLAKE2b-256 f8bd4eaa775022d55519101a51a2b1ad5c46cfa8c725a400033943a79138001f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ba82456280ef72cde8e45ecf6bdb2a244c56d80f7e44bb2e5ef7a9abf21f4d9
MD5 b8a0a9f3e9e0052cfa6cf375386aebce
BLAKE2b-256 081c0f61f66855a39e22f1f8e7d1ab3632b2a27cc1f42ee628fd9c317a5b4616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e12591c1d495ebb5f6d8dc50e99ed48f338dfb59741929cd68c2c2b40d97a58f
MD5 d624304e1b845eedd3926e60cd0a4a81
BLAKE2b-256 5d8567bead3e385de8f433572809b3cab6d7694c1a606edac2fbf94309b746d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b50202f02c7db95163b0ad92160167541dad263b19327164dcf0f827cf9f69b3
MD5 f1c872e0964bf0af15cf6d3ce2e65932
BLAKE2b-256 fd31b3477f7ca17526167e5eff9d194ba8ea3eca0f04e98a248b26cc6612aa8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 895b3450ece50c1cdcd348aa5c6efd6ee823598f3a21c23677d57a06e3c6f28a
MD5 259d4a69b1f3ee2bd9cb6130220d3cf5
BLAKE2b-256 25f01e89d849701388886d39ffda26f64bdc835d63f26aa4b5d865067d56fae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 60265c69fb9d199526b8190f3bd42bc241896a335c299570d1dfc9d6e97f8895
MD5 fbd86ce12cf204795da727f7365ffaa1
BLAKE2b-256 71c25ec46d5381815b849f25f4327af187d70325aa693bccdad960228c98ebb1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 526c54ff6e0384abcc495cda08fb2f98156544031afb9ac8bb02f20968d743ba
MD5 8e302037563cde25a49c4552f1d571d5
BLAKE2b-256 94d6d73cfcce4d3863d9839174a42fd976d84bb7781c132bf0bccdc74e83d9a7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4dd237b94494b14693edbebd05a0068fa02ae36b2629e6353be42bc2b491c1f0
MD5 8afac5bdc74e7e8f819994248985dad3
BLAKE2b-256 cd649dbafa1f3f9ec9293c4038d64b4a49a7a577e1ffcc5c48cf861849d2cff0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3699fc8072a70664d5bbaf1c9239f8e2e8700c5090f57486f2ce4567f9b2b6aa
MD5 0a638c7e666ffc02093585c8c5b2cf29
BLAKE2b-256 3f6cd4baa83e8745d729764bf960b51828e9c99c90b4f5cd99e65b59fbf2b6f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69558127aabad8b5718a58009dc3d36618c3aa5aa5e733206c32ce396189a132
MD5 28ea78f9273489f6fa2787194ff62439
BLAKE2b-256 734ec813156aa513eb3344b333c1424373cebf1f5843868b2ba5c49c64beecde

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41c2bcca7ab720db5cfb7f89fa949a3336b476aac9c68cf0e501a3ca5beb18fc
MD5 758246a09f1cfa37a0d17806b02b7d08
BLAKE2b-256 b9c9f2dfa17423afcf2b17ad28452dbff75870614594121a10f8424cd948547e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c0e27e6d2309f2a1a6ba03c54399580c9af89f736911d00a4a58569475da9d2c
MD5 63be0cba63267b3254c24d1c73695af6
BLAKE2b-256 1893d2a2bcaf524921e1dbb96e0eb3cc818eb3c1ad8d110361dc95bfb820a892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d417857853e440b91733418acb55b260f3c96a0d7c454c1c7a0ac5fd236c77e4
MD5 d79aa364e20e0427504ba296bace182c
BLAKE2b-256 1dd1403e78390f2e707318effe15b410e16f6fe25266e4e8c9c35c0c271b6520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d4d8c405615bae110306531da4c0b04715aca39b34c853c1598edac5c0ca1fa
MD5 5aa9f8d51ec9fdf8b5b83daf19ab1f98
BLAKE2b-256 14ddeb62bbf2dfed24d766f23541e79706bde93154a22d91e69e787ff68eb238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b66d48939177301b9ebee4b6e13ef97b49a0a389cc0a7360dcbb1cdd57cb31f4
MD5 d00023247307dc9b762260007b35a380
BLAKE2b-256 16e043f49fce9bdac40d53510701c092f33a4c8f4606d7e3aebfe455329a8b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 39e78e5a08d29382fae67b8dd144dc9947b022ad295a0fc679f93c096603efb0
MD5 07db86b85acf711f1ea60eb307a9d65c
BLAKE2b-256 8d89d37f21b9e632e9008a0f49a56ff1b10114341aa8465aa6a0d6a85e3e4909

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee3dd40da51f1f7f07d629044228ffd2f25d7aa561a3f08b64e2696bdf927355
MD5 255aa212049609619b3b2e7508cf6a36
BLAKE2b-256 a8d0a13c8d9bc7d45759c0d68837a5939a93dff9d33fad0ad40b3fe8a9767dd6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4f929802b418e0746aa6d7a0c1ab05abae300f483a8593a07c6cea653b062de
MD5 4b549c6430f8c342a7318b92b9acfba9
BLAKE2b-256 b0bdd48267a781e2ee2ab978207dfe2533f3f35cf59f23a3d7b1582c9dae1b33

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea9edf1b15dc93a8c129a0d08bad17597ef709d16026e76c2c2da1e5ec486ded
MD5 08cdb6c3afe2b95de5ede5dd8fac0afa
BLAKE2b-256 e8823c8a0545c024c8cf6f3c7ad133f41eddd934b301404df5d577b923031349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3647f57e0edebbd0a51cf45d3f07f1c62a1f76f9cbb0e72324938ec52fd048da
MD5 7ef4f797b60566f538e9fe5f8eea6e14
BLAKE2b-256 a214bc6ee11233ad23426274007d89c0a623ccf960639a891dfff9431300cb5b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c407c17df8fb30f3cb8a0498eb37a3291ebd214caaa880b518f1ac9fdb83a282
MD5 38b81bb857b1f8426f1b0cbea1bf2867
BLAKE2b-256 832525f35adf321ab96006ae9dc96ad17dca072f8b4060da75806121b245631a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5d9d37faf91dff91f6d7e7f7bdbf94ff7fb2ecd930121148250e2df64256d42e
MD5 3eebae891590c47d5adba43841ed7c1d
BLAKE2b-256 b834e98264062d39bb7c8a6ad393ed48a8ea50266d0a0989d73dd43586201e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7049c0e2b184fe1b1a57474c23b7cef206cd38a762776fc7032aeaf4b0adc333
MD5 bf21a16b50a098df10fd79a023de5734
BLAKE2b-256 d73b5db0faffad085adadc4d3592f6b31c971600f5354b05041358b3a11a1eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6db47da05edd5e2536f447961eb0dd05d7f613fdac3c5ffc8e7865dc737dbe70
MD5 b647f591dd7fc55b8041884a7a141f19
BLAKE2b-256 a53fe24492e2a17200532da38eb4d5408358a1f740a43d05e46584d0d333b66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa3629377374e7e5b1cc34c93f42d7d8b1bcf905ad99d67e84136f885c90e250
MD5 12fa551d27fd61f7b6a5a9dd17eace71
BLAKE2b-256 3432086c1daf3121095e0eafb3a3394ace9f840905696d21eccedea4bbae89f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 30eebc97a7e9187f053da2af6e64de76468e2d761030c22148d892c2d758ddcb
MD5 8abbf76049c09b3a02a73ffc76242af5
BLAKE2b-256 84f09286e5d2e5f134ccc1b31a9cb7f09f273ac84625cfb47b68f95b5e899f73

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c8982d775d9779ef0e391d857ef86ba191dc54970f996e65c3ffff32abd86eb
MD5 fa0a06bf4a4669051b7bdb3f9a293ce8
BLAKE2b-256 e949fd533701351c590af787e3c2561bdba2480b343ed88656c57c3cbb60a105

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2dba0ccb892e643c464fdc6daf958df5c2ff8b2cd1c891851344201c31e95079
MD5 9a9b1dada03c42114c9db152099ac9ee
BLAKE2b-256 403a13558c79505be83473a2a55cb33ddef22f0d23064a74aa3c012c4965b352

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1281cb7e21f681ec3a45cc2685346a7a6dbc27afffd9036fafd815dbb7175a5
MD5 513bdc233e0ef296266be25a89842bd4
BLAKE2b-256 6825f5b6b705cfd296a70b38f1a6124031e11313366b10d19ca5324440ed53d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 586570bca4dbf39243eda70f39f05d1363a473e997814d0101279a4f02122c69
MD5 1839f041e67627aecebb5ac3300e13e3
BLAKE2b-256 b9f84c9b574052f68c33a46a53c903b5dfb27481bd3aaadaec6f154cf0826b1d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 59ebf79215b4efb688473857c84aed8eac0ae2310401bcead9814b167bda586a
MD5 f1fc003cfe457018135e57e165b87750
BLAKE2b-256 95f192e538915bfde8a202b1fd6012d402456d9d49c4ed152d7b94a031436ee0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e5460498982ebc110014cb6456f5446b267f0646d8c2808f94afae5aceff6bda
MD5 74e2a983a9fbf015bd347ea85a2cd381
BLAKE2b-256 3372f2fbbf0560fa51259921052230a0c511020cf0d8c0e982ed349dd66d4751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21d9ec66d97374118acd019cb994e35191dd130199a43af8d0b1842e4977292c
MD5 251d9f2f56caa116d4219efd784149d1
BLAKE2b-256 827f2124f04ce6663bd668379d9fafeff23f978464e358982cf12714e6f8a6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0db82d3b9affb0eb6aa66ea86351689a4f706c7bf0e03cce8d9b71fefcca640c
MD5 6e3f47a632bfccc28278e03f7a7e40f6
BLAKE2b-256 1d81a283720682af7c77aa416fd9cc1dc313f2b3541d3cfc0ef797c582ad817d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69c2c35ea30c9634230f870a2c2662a40409794958f2b691f65f73231e676161
MD5 445a28b2a10e8ab3eab53dc20b476c58
BLAKE2b-256 d13ae5539c213253a71a492148bc19bf293341d3ca7f0ff81dfdf927d5fefdd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.14.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.14.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2ebebff3dc5528da38b5dab1f8e129be94d1f363d9aa3c4dd716ef9933f513ac
MD5 91b39c147a938173ab30a5d6e9b03f42
BLAKE2b-256 771493905ed3fb80c8391b6cde398d10d74f4b953151b096bcb1cc4b2ab9b976

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.14.0-cp38-cp38-manylinux_2_26_i686.manylinux_2_28_i686.whl:

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

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

File details

Details for the file highspy-1.14.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94eb9ed5521e0321903603e807685c4701550dc23591db8e23e27aa82445a1a5
MD5 4a9a2865ed672c5ad0e1df189de13d29
BLAKE2b-256 29c12621ee5b8e1c04292a21332a77dd015ae35de5bc437fbd4cc39b206a4f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.14.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file highspy-1.14.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55ec063725238d9d1dccfe51e2f90c6985b48a05fec80c6d1444b3bb2337f541
MD5 053c339346c8d6451f952e3ee3fa382e
BLAKE2b-256 b974e5f3a5a00f515bef552f09ea84ab87ffe9228ba30b20be228156d7184766

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.14.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0beca7a81076d22912b0023969b31ab82b14649615c006b32737df931dfbed7d
MD5 106f569be94633591d9796ff3936647c
BLAKE2b-256 eece8f280901ebd56622e30838752d15a44b1b2a4e73f4c0374874d3da62aac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f894430640bc1058f6f2f1f252c7403f9b7270a1982187f969c89e0229f7116b
MD5 da5f808785cf2758f71cee8a55c96b66
BLAKE2b-256 9ca792d16dfa560386d92e775e0622abee1e092a373e758020afa9131942422a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.14.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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page