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
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.
      --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).
      --solution_file text       File for writing out model solution.
      --read_basis_file text     File for initial basis to read. 
      --write_basis_file text    File for final basis to write. 
      --write_model_file text    File for writing out model.
      --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/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.10.0

The nuget package contains runtime libraries for

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

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

Fortran

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

Reference

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

highspy-1.10.0.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

highspy-1.10.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13 Windows x86-64

highspy-1.10.0-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

highspy-1.10.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

highspy-1.10.0-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

highspy-1.10.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

highspy-1.10.0-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

highspy-1.10.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

highspy-1.10.0-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

highspy-1.10.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

highspy-1.10.0-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

highspy-1.10.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

highspy-1.10.0-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for highspy-1.10.0.tar.gz
Algorithm Hash digest
SHA256 65f9e0ea6dbe7256b790570c4f6b908b3f734cbc8cf5b2d5ebeadb28a4fe2486
MD5 7347a24a946cd83d762d679b14f0918e
BLAKE2b-256 f9a1bf903f8325b86cf3c31801b5d2709d4f21be1cf013279dc2e34d831b2028

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b8ecb7e09fc10398188880aed91565288f02298123d4659d5f87cdafa677a74
MD5 b32e0927e3675782b4087a166763a222
BLAKE2b-256 3bbc60cf0fabd9f9b573d9601f22e85acf3e7afb2529a00dc819c3cfca342111

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 39d93fb955ae349766019710f535f2eb1fe01cb9057601ef2884f91357427a6a
MD5 b86c8fbf2b910ee32decdf3eced0a8d7
BLAKE2b-256 56e1612924aa23d937f0f51f85d6a3ae8cb5697703e8c7054dda33a4a5462db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d94409de3288da8626d7f1d3633a87c266c9aeb44fb3aa7d6c37461313f976c6
MD5 5ab9ddef70b4b86ed4f9f15a9bbadf19
BLAKE2b-256 56c43a9366e4c2c573d60480b717cef4f0716ea906cb7de8268ec2e19b1e063a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8d6300708ed61717eaa7f84b16836f1cd54d3a8d7a46f4789ab61d529d1b469
MD5 ea151c9c7c632c3b8435013b096a0968
BLAKE2b-256 f2548094e5c2fc0a4d28f1dc16502ee77e49c27206aa60fc6e5d4845938d3e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da9350f3f4c1cc9e613752fa24fd5e356b46e26dbb1ed57fd849c12e34b0eb83
MD5 a67378bb13fc11b5eaa8ff3910b6db11
BLAKE2b-256 06a514ab8455e8b8b08e99c1edc30c6340d67ea4b222440305fa9dde6032fec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1acfe50892504b8ddcc8c3b023ede71e217fbfee914f4219c2cee43d7fb164a5
MD5 487ad5cc1295cd9f0f9579eb7463e381
BLAKE2b-256 3068f40eb7a885dcbfdac15582c1bf3542576b4e5a803d771060591f0f930897

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1ffa3a60572095230ff95f8b36b8fb34c3971c3b779c443bd7cf8ca821c9e64
MD5 8dd4de86902b4b746079c65e0a082cf4
BLAKE2b-256 201a307150129779f7b9b89119e3415a7004b89ceb999eaf372c12c6b7dcde69

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 022fa1092bf15762f01d21234786c2cbc146c81d7d694d2388a3777ee0af05fb
MD5 fc7b609acda5c8fc40a329e144cde8dc
BLAKE2b-256 6ac0c6c7ef15d8e3712ea6a5be7ea506ebb2fe24cdea0fb52c320baca7c19479

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa1beadd330f2bb57eb2dbef1ab9f1ba73171995438b5021b1ba110405165d94
MD5 7d564aaeefe58cd8fd63cfc6db84752c
BLAKE2b-256 ee12dbc4b73dc70e6ed02341744f483a979d5b40c67e28aa1f5a3aaec5efdc05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63ba93e69a2034e0085493fdab144fdfffde8a12c78169996c3d6d689683b449
MD5 1f3555e70551446e0ab7d145ee69ff43
BLAKE2b-256 89fb48ea5b239a949a6aecf3e277d5bb336d0ec107dd860517c88c450ac71d9b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d1a1f1eff61965d6358638ab430d8fe2aff30df8d9a42e1f62a07279aa67ef0
MD5 a3b8a20f11d5280c6b02f66f5eec684e
BLAKE2b-256 a34abbf9da2605861948cea634d7783997f0b44c7000cf7951847e8b41cbdcf5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ca136d3466b46b0bd1919233759846ee9f1f18734d3b8312104542d607088a8
MD5 2b7ae62e52b3ef2d959c22ae6b0646cb
BLAKE2b-256 b959694ea12641c36922f7965d0036dbfa6c8c3640831f629c9c2385aecd124e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfbaa97b3958f9442c84b821eb6605c5b586d11551edae188a523054a61f817d
MD5 db293b2bf2fae0e00534ecd2695945b0
BLAKE2b-256 d46ab3b921df8cfdaa52aed52d62af8ecd30fdb230f89af09df8f76ec419e6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7803e3507649bb5afbbcb9ffaddef601931745dd44f61d6876aefbd119a7743
MD5 a4ca7950f07b228596946b115efade1f
BLAKE2b-256 a20118b768da1a6c5d84ba6f724287966f751e844b49a037ead4f5997dfd770e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1af0ded20073e8662ed13662c8a5f7b2890621833e20bd60b97528b214baf030
MD5 0549e0ff43256dd5a48bfa20fcffe979
BLAKE2b-256 86b863e4cfcfcd6222882693b8d401627c5b39efc1b8c884b65cfa394fa44659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebdb29b61c4903ac925282c08cdc33b92b1a43620f9d67aeb191e402388786ee
MD5 80eb5a798be79b32c9c07c124f4eb4d2
BLAKE2b-256 46ed6cc5a732f71617ceaab6c6d2f2905ef7fbc90b9b6addc688d521b47fc96f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 458f3930da51fae9454fa861928d142de5391d4e56768ae48ed7fbe4436ccd24
MD5 6dce6aa47a76f8aa167875d77ec5f681
BLAKE2b-256 96bdaabe50ba6c5cdb7259bf575ca318c9c998d7b3129b06d144626767ce89b9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b272da4bd8f53b56a8b172ad5e4223dba7de5cb440e8676fa79d81ce35e4137
MD5 d0f90f1049de81e3b4113d43b40c6056
BLAKE2b-256 ec16ad453c1910280a1f9cd6aaa4d22089e62b284e99a7afeb797ec7cd6665e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13014998f8e2666cbc956f486926d90d430c470262443c1d9b171c49dfbf41a7
MD5 535a42f7476eeec6d1ba53aef1cf8583
BLAKE2b-256 40492a3e3d8b0f800efeadef54b452fabffe459c91cfd761eafd476d907b5534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5daf999e37db769239c7bb8c49dbd8aa07fee96cef0aec30f187c75462adfc05
MD5 f49a7a7fd3d3551b4bfdc505509382de
BLAKE2b-256 f221da8db3b9d5503969ac8b499cf0f1fc0eade3f3df9bf649d7c4b8161cfdde

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7961baa9646621bf8ef6c025ffed3674264a6b8dec0048cabc066f6cd8be8ed6
MD5 f264f0c8634929c77c32a7ef71c90cf4
BLAKE2b-256 eba4e28858add281351f1130a027d67361161252b55e1ee26ae09af78dae49dc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4bcbc91ae00c6cf0f9e8032648025b88ab79709c2f50aa514c2b3db365828b8
MD5 f6c545fb4db8f4208f83b1404c910d7a
BLAKE2b-256 5a98d3a7336f6ce2cc1056ff0100d8d69be715c411d7ff0a3aa8404479b91941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd183a8dc5c4cac2b38de998a81b39cd52155da236e7aa45dd4d4a4ef05fd667
MD5 f7e68740ed690b316ea3fcca8399b57d
BLAKE2b-256 665cfc63373dd91475365ac7bd8a6d3be8bb66bc411e5017b44a8c47dc25ed23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 322dbe69fe7a080c18fc005efe182d248f99fe78c297a02f87d186c04668bb28
MD5 0bd893926ff592e01b50b4f0c6356070
BLAKE2b-256 0df3cf789e7dac41b47955abf6275dde4b1be3d0a9390ea7357da8b6d232e80d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71515e60591fe513eafb9283dbc923d9b373546db627e4014b2cae60ebf2954b
MD5 d730d3f4e089d295c43799b94226461e
BLAKE2b-256 1c84b1e87ae77be31948d243c59a21e3d33a4d404bf8e826b68191169a58b5a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e943868262cf4536b78c2d69f2c47eb03c9aaf9867b307d142b30a89c7c1e3b
MD5 889c9f92053a11f9ef0cd413315967c9
BLAKE2b-256 776528a7f8017e23f0b1d002435136dd2c9fb43ccb828adecf590a0201a2a5c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57a70800971e3a9fdb5b0477951bf7f7e6a43dd85f730e250666940d2c912d71
MD5 728c33bf51bfb090bcd921e735ddd94f
BLAKE2b-256 6df7cb19d18b44e169789db45aa0061fd0c0c62f38d690125249bdb4152f4513

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf52f37765548aaf8976953aa608a33714b25bf919a7474705a7b3a08915515c
MD5 7f240eb4e963c621c427e63b7f8fb727
BLAKE2b-256 2972d8fd545f07c2535759995cb19a8d8bd85db39fe67ae91a084f33bdf15104

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54bbb846972b0e43cd4d40fbdda662655bbd6bfd44efdae32d6ec46d14be77b3
MD5 94d2394354a4e9cefe561f57d10dc5ce
BLAKE2b-256 26d2727b04fc43946c55204d6ad829a9ae74a1bb9071a61b28869773b2b57c05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88802bd875a00b8841f54e1a3ee1943ef405890d9f9a5f8c0e80d0abffea0770
MD5 6e92d046a26609f6f07c686473a0a162
BLAKE2b-256 493a9073d6f1f07d2e73adcb67bfa81276d56c6a16d021cda1f1c2b3083dafb9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85694f97a1cd2c0a3ac20b012d53f09ab3a35399c6aabeb2e5fd0ca5bf9d331a
MD5 cde7a13bcbd83a760e90cd34e2955fb2
BLAKE2b-256 caac573d24436f595a181db99a3c2d85e60caac0915ae7d47cfb7226128543c2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ac0ecf15567be0392bf7ea6a484d7d4e086c82ded19c9c5743a8216820baa320
MD5 5e754ec4589ccb54a56e0418a315ef4d
BLAKE2b-256 392c0ad5e70ad236c55475f3c2451a6e10e4604af2c600fae31e5685a3dab25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fb38e5f098911cccd3a16854237662c3fd8919e8b5e4011c28e4c333123c2d1
MD5 dad67550a4b679bd10864c5865439d81
BLAKE2b-256 15af4a0731f392ca3c05ee45bf7bce99c60edf567e70e03289f2500a657c0554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2df6b07b84a3f8591c369a53db03735b76ceeb018542eb6284ee1d9d4737174d
MD5 76852c9d9b34cc8af0379b51814717a8
BLAKE2b-256 5205f71f3da169c2df7764a0a4d9e89f5b677716bf1e8b4aa6b6bd07c2133e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3de0ba7b836a53b38643efa75181ec1fbb851c09d8f26bc4facb656b2b50f8a8
MD5 bbf2619e99ff735e0c83c021d662f992
BLAKE2b-256 eeda736927b745e0716e890657fecb7e19a9e7e9e5a213aa8b2260fa4a59edc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b78bbe750cf4269b34fa2642241213b2b7512563439f95d619906eee94e50c63
MD5 708101bcea497170d889abc3fd1b72a2
BLAKE2b-256 c8261c9391df6ce543aa2b91955817b69a9753cd8392672296aa0f2fc1c67e62

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60d42bb038910678b20e1bc45c0d41c540c335ee3dc0ca7027b5fe008b271052
MD5 00aa2eb83a4182185798bd07aa61fbc7
BLAKE2b-256 652ca09bc69fb1610bd6f69d2e8565d838d2b4c9f679c7f1616acc0f6cd4b0e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 088ed24eefac5a73d5d6c1d0a5ed5e42ed6249542a9cf27cba1ef3a5d68f6f1f
MD5 c51aacff8b5506555f9b5ec5eff0e8aa
BLAKE2b-256 fddcfec3717b46610363acd36b22d486b7f11200caa586ec78a763f1227a8fbd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f21e902de5c85855855636770da198513675a41295972bb7923c1ed7ad9630d
MD5 857b2b76a41f974db6a1b59ffe84f8e3
BLAKE2b-256 fd953e420d6ee67f423dd152c5ec2f81201040d3ed47f435837ac8fda349edc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6755d169919db8098a5025803de577a46aa426b53f3499f523e6989e8dc4f75
MD5 392712e3596e4d9d0e16b36dd499a95a
BLAKE2b-256 ceec5c1f6e9ec70993a3639f124cd7610dd3e1e5c623611e8af8fd78e741d602

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 786cf1fb62d5657fcb6147e04797482294d1b10c2e1ce235b197b7241ee5cd36
MD5 947c38b1f979170501e4969e8d2520ac
BLAKE2b-256 6dc12520f51bd0b113ecbcff4416cbcc5414ba64335e43ae7d399d5ee9b7ce60

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ae9bb9bc095a744b1471f5310e3a4be4e75679d07cfb2607c63025048ce606c
MD5 ef1916dc350876a5fe3ffecc0f537ec0
BLAKE2b-256 1e0280663ee6cac68baac7253ea69fe92fda948c6fc58f9976974e84de661a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 244c2cb0f23ccc58a0f198d4fd2b9f091b655f28a08996395a12e29b363ed8e4
MD5 89bd4d97c070c0fb1bde605de6603c48
BLAKE2b-256 c4d719653ad712fa0f9c15846ca3d29b39c0ec8a24e6e6ef10a71ee1c3f0c97e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45b8dcd158c16518a70a353252624cfd32ba71f8fda83eaf2c58fcef24aa7183
MD5 a5cf6672f216ec573ef53863283a2a60
BLAKE2b-256 7657ae383a2a0c01ab966bee8c1e96f8f980bf90d76c2927cbd30193ad25c232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d09bc800582b9d3174f8a3b3651622bdb1e191305e51f37b7f9ebc289395623
MD5 9935b4b15d4a6091fc00fe310a3f9c47
BLAKE2b-256 7f442d41e5cb269215bf26bdab1ce0083c86bac25a09538b76cfbb72bebe06eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0e698e7a57a1936742a48940a99e884ae5b757b8f2ace708855fe22dc31ed7d
MD5 82fc078514a5b66acc1eb557b93f51b9
BLAKE2b-256 c689aa89342dc0d13800d448f897da94ef3e33af89047d20d658bf1ccd58a340

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fb7973188dda97298b1d42cc1cb6e358a1766d8c8e97650558899e5e4406a4a
MD5 7bb96f40772aa6fa4a2c6ff89ee9dcd2
BLAKE2b-256 9e537b44359aa87cb21bc4e6371f321464887a4d7bc33e3afc0a21989b1a266e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a290b0a3b750478aa048da20a1cf71dd6e7877404409738857c334fdcd76aa83
MD5 b1fe1a2e5c834bf5a9d1f1b060350418
BLAKE2b-256 29a67a962c5006c870dc9ff4466e669c36c9646440fe24307af04cf160828d7b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c585a77624f34e67eb468eafcdc6ab72cc30de89f424428e51df01fddb3e5a00
MD5 ee0e0ed81f4ce8aa6652d2ee6efa77e7
BLAKE2b-256 3fcd4a2a870d9bbcea109743f037ef23cc90a42807a92dfaa0e2e2c2cbdd838a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e115a782db4570e3d8a719aee53b17055d11542bc0bda119b06aca0617277488
MD5 c2b08aa8146c3e2688e078cc568f6c9b
BLAKE2b-256 7238c2a8823772ee5744189851a21ac9b768b08adf1ad05c8145ab7cf8e4721e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9da089377eed82a16f66a081d5dbb11ee546fc4c4c708f55e49564617131a5d5
MD5 feab23fe8a7acc69e82cbac79c62224e
BLAKE2b-256 34a3d1a975ffad486084cea8e98fd3c70d23dc90af2ce38eed7fd5650392a703

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for highspy-1.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0c8fa1b94d4574e9d59e3d830c650c87e826d673ac73ca584182a4b8e26cdd4c
MD5 51f33a5cca00d83868c1503b8f9368a0
BLAKE2b-256 c9bf631af6b02b65d8b45de15c362802bed42818fc129e13f016b3137dcccfb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9470ed489359c6d543e07102d26c935dbdaeb57a59d0f7cd566549787ad6fc69
MD5 a7509f9cdafa3a7c8806c1e27856fbe1
BLAKE2b-256 3720f1c0cfeecc139f3d8315ebed38104192ed32b3b2312525f7a45f07a85631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8a85479dfbb5db5c83e804e09d554f5ef3fa3031ce703bd0968c1fd5968cb8a
MD5 9192a4ab4e1ca7daf33f4c8af8f8f346
BLAKE2b-256 e30bd7ad97aeaed3e33e03925ae0a9417f2d139789151f0e1bfe9474c5e59129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7b9a4293adfa101cb4ba9182a22b2aabbffda1d456d0bc392ab09a952cfaac5
MD5 9faa166e08e4be4f985e039cd3e18c69
BLAKE2b-256 68c720806ed3263d401ee67015140126eb9f18b34a35df88ff4fa2cc8de98c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 415eb3776e6fa6fddbaf585d90e8c798eea40f5c35ba5e427f216046f8cbd6f2
MD5 03292a9bd5c143f8dff7a11684012175
BLAKE2b-256 a0656084d1dcb510c892bbc9d8d88e50ed2ec03398b9b374636b5f9e91df2077

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be3666d6d1a82463f2a75f02ce86e9af424bdb4511bc0a0c7ab45dc9d8824451
MD5 ca72ffa9d1046af856feb3c3ddecdf89
BLAKE2b-256 cfb9a62c28aff5e7eeb46241db76d7f5673c3029d298cb7579252797b977d566

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21c3b24253d3dd7fdecdba16080bbef80988787582ac4efade321190a740721e
MD5 54ac1e0220b324107cc703c21c570117
BLAKE2b-256 e4aa8fcdc6120ab0821f6e6838d5782924d8356f2daa2f544e816fe6d7ad470c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 365cac1cd451fc52e4d6735551bd01b7c79e0753ad4862769f26986df3de9149
MD5 ebc4069d2d9d77c69222b0804da3af78
BLAKE2b-256 84f5ae29bbfb31e143d0f4b1dbe61188b960e51de8fdab2dbbf5743e6e16a1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a77902047e455ed4bce2d14306644f910499e6f8e0683ee61e2a1a52e46078a3
MD5 8199a6d4b183dcd29d214868e54a3c9f
BLAKE2b-256 a1d717e9a0b330d8586378dc88e4778c5936e2d24f3380220124f1ce59482ddd

See more details on using hashes here.

Provenance

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

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

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

Supported by

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