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

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

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

Running HiGHS

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

    highs ml.mps

Command line options

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

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

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

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

Interfaces

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

We are happy to give a reasonable level of support via email sent to 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.12.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.12.0.tar.gz (1.4 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.12.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

highspy-1.12.0-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

highspy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp313-cp313-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

highspy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

highspy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

highspy-1.12.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

highspy-1.12.0-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

highspy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp312-cp312-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

highspy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

highspy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

highspy-1.12.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

highspy-1.12.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

highspy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp311-cp311-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

highspy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

highspy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

highspy-1.12.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

highspy-1.12.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

highspy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp310-cp310-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

highspy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

highspy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

highspy-1.12.0-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

highspy-1.12.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

highspy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp39-cp39-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

highspy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

highspy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

highspy-1.12.0-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

highspy-1.12.0-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

highspy-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

highspy-1.12.0-cp38-cp38-musllinux_1_2_i686.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

highspy-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

highspy-1.12.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

highspy-1.12.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

highspy-1.12.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

highspy-1.12.0-cp38-cp38-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for highspy-1.12.0.tar.gz
Algorithm Hash digest
SHA256 91a2da2c090597e34cd2cb57a751816ca6857c8cca8b09ae4d33960fb89ad42c
MD5 d4b0c8d29c749559dc6b46474d8a6606
BLAKE2b-256 32ccdc47527beec1f44274186713a59fca13e6e1c71088ed6d18980dc8b90ee9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd826ca82035d125ad3f59ed62878ca2676db1c66870e2b55e025adfa9f9e785
MD5 21add51c405c3ecc9f655bcd76036c16
BLAKE2b-256 f0203b36ca44864baced84355aa37c1b66e95d46009a74887fead515ccff88b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 adb1735c625e164d1cc114a74f0628cea944b5f4a346ba0726386edbaa838479
MD5 41868b3486dccb0a934c59c6bb131ec6
BLAKE2b-256 b6473d27048c6a640326f314e2b5c8b3d80ef8459633413a08a90336b56b1e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa040786e1a321e2703834dd5bedf23d6998d6b42984c4b14e157036da655fd0
MD5 d7175c4f66c409b88dc66302d7197ca3
BLAKE2b-256 51c52c1b386a219eea79af16ee29435d940baccf159ca26647715d330868aba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32f970c5d35fb6f92ef40a21b27faa9f348783a1de119facd0ee8dbfa52ef478
MD5 c045471f928f47327dae37fc0d3b2e92
BLAKE2b-256 9dc804b6bcbb0c9cc09efd6370ba3e6afc7aaf3b6a2f61f415ace8d223328506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a112865dbaace2c9b7e2234bd4415dd6f2b31cb53b53d007d3e53fc3ebfdd387
MD5 c59d8dcb72737ace4a09ad4b8be28cc4
BLAKE2b-256 255892b5849a2150db172a1b17ddf165b5aeda8871eabb59efd9f2c1df025b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a5c58dbd6170073f4ba1bd31e0c7b276404d1456080cb190ed51b4c817629d6
MD5 416488718e7e53b92a4c176c5849c60e
BLAKE2b-256 6dcde9441001cb3e523ac620982af75d7900b702f97f08656797cec2a8db6222

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 550ddee715934937da6cfe58f7adceca86b0847e5f8ebd7429cc275218179b95
MD5 e0d9e76277384df2e28339a24ff9dc7a
BLAKE2b-256 3cd9f2f409200654a64759e8970533315364ebae1dc1c90e3aa71127804abf5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a856e6e33d6d20d177fdc1a6eb34b3b58385a6c757a05695c4b214a5c377e044
MD5 5637a305772529c92e2aadfe8b29ebbc
BLAKE2b-256 becc3ed5a545ce807fb9c4a1e28e83ee474c560bc1a83335c791127a113f634b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_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.12.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57512dc19e18e2daa572acc0ea9561a5c4050d592d21f6db3f8367dd38e50362
MD5 d3527bca129287f17fac7d67b7679d1a
BLAKE2b-256 00bdac5d300201f1ad8581c5b468ed1608ecd47e1e9d88a74cdaebf0cf74ae65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 79a346e811e330fb757a96e3a234b71b5d58ace44e1eba9611b13c2b6efaf0e9
MD5 0d2b55ea9b1374a56cbb023c43c3570d
BLAKE2b-256 c78081269c182ee4dc36e3add646088d027cc87a6cabe640901848b1dc9b1355

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90c3f9d575a93f0e08490f101b72b8597c7d1ad801d429f31b6ae962a1492a56
MD5 ffcd1a62616bd06ec5f75936af1e0207
BLAKE2b-256 6c48ae627c5b16e2ae0f56537b25e6176e1e7db8ea26ea85fab047518979be2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 869bdcedd7c309647efef2d4968dc05609815b537f8ccd8144ec2b81c0801a8b
MD5 bb9180b8a8c7d334ca0bdc187bbc23e1
BLAKE2b-256 d28724074f2bdb92b194d2c625a1071241a9bf23f475db850331b4256bda047f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 948db9f948c79a52f5faafeb71cd8990a84b462245bb2c493d3e16938f038782
MD5 63e2473cb9f13e88e328f2e83e3c4434
BLAKE2b-256 50f96dd6f8694c8f631057199bdbcadbc2078023029021feb9f0dbdbb9b0aed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 455b8688d93124b714e93f0787fb17040fcb5b1b90c59684bd44f66b3b947dbc
MD5 25bca9c9208848c8b4317c42b328c859
BLAKE2b-256 e0d39c1c13e09cd2dd1aed77a897272d974dab36be25bcc27a0af1f704153781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1df858cfc71fafef789fe87793e331a17768065f9e9505df1ff10239e4fa6a8d
MD5 35653e4698fced1c057313f53161ba70
BLAKE2b-256 ef6946910999e0fa30f85b15b3a3d5a7a16ed5af8763323e351f0ddd7fbcfed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3a72ecea18c0b2cd041e87599d2e0bf6f96cea7133aba838f0128608089e92f
MD5 265d6b127db721e54b64c2fa94f6de56
BLAKE2b-256 26c734fbaacecdc363d847ef9f73ff169447db9728a100ca41c4ad1a4d3fb21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6045d1d49627e1dc2f649cda4190c57c823f0cf71bec9d466363f00abbc65a7
MD5 db26d42ed7ea6615941f37d22e6d7d86
BLAKE2b-256 3db8901d9702873f6e103a3b9d1a6e8e403b486d4e672e4e925d6bc1a92f8114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 ecc5bdee740118e18ce928feaf9e309eb4a4a076f27a6780b8b363f1446801b5
MD5 30b787816b8d606c5f84e7ae9ea4d1bc
BLAKE2b-256 360f9d5b3f27a4bc8ebf4c2a18cd1ef39db77fabd8b007629143416c4d6cd4fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_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.12.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3db2958b934d46c0e112e8f9fdba96bb1fb84cfc6f70ddd4492ea62da890fe56
MD5 bb6aacd84084d770e8fcf634e62dce93
BLAKE2b-256 d75025e2adb149b56354aaa31165b44304c85763f66a560e8a1492e09ce6a9a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8c8b098a57b4035d5bdbffa2a80a96232c99e4d085aa822e283e98c50a1438b8
MD5 ab46bd715aa6b85cc5d83975acc3580d
BLAKE2b-256 6c69eacc8742d1a4ac68109a8ce3c808e81cab1c499926815e23dd39106595a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13be9cd5d17904d6a5ae02da84cd0bb115ce390e43f3c15d433d169d415a8c77
MD5 4d22f59562603997def84b021cc76e33
BLAKE2b-256 4c6bdd62b1dba01ac6c4118be7cb5df1bd44a757b3800411b588a43f83539399

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aff2a46b477593911aa16aefae8518e3fea31bf474a93ba6367f0c7c515e942b
MD5 a96cc599b6a36ce6a116f4c5afafcea7
BLAKE2b-256 b55206321962d19943d72f90a5cbc3b01eab0ce99171039b64e6b66093e5d9cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbaf2cdc501539c06393df84b13bdedf987c4aa02588e50f57d23ba3739d2c6f
MD5 6390ac747b39d26b3fc361374d70a147
BLAKE2b-256 7ce76fa9942ede0373cc087bbd317739fbe0078fc1dcc58e786c291aff9c66df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e56be011cd493a873b8e478407d2e723fa963edaa46b03df5f0b9b694f35c1d
MD5 7810c79cba4ea53ec0d1306205a0a6b0
BLAKE2b-256 90c2e496e36f086f4d0a28b8abca2cb4367e122719fd86a2fd0368622c765780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38813111ce7f80cd350a396bb43947db4b9d90dddd6af50fa381ac07a7985392
MD5 76f64fa24627600c02395dd1ec145350
BLAKE2b-256 434415b1850d2b50252dfd761b9dfce2c8e8bd7bf6458ee943b87b06c6c6c858

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e60360f2ef725571712ed408594165e50f503d2986552cd94dc0ab6a1b264e7
MD5 6fbf6ecfaaabc4f5dfa5fdcd1c089a49
BLAKE2b-256 f5f2b73cb21ba513fa98621aa88a086453eae9011c672114004f8688ac21a7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcfe92716545e71ec2c9b23360df7c6bcf0a108d0035d708efbe5d8a9c2e9750
MD5 ed156d202970ae931672d18dcc9e9543
BLAKE2b-256 1330478c4cbaf290b622add80846bfd5cb7e30cf5d19ecc5346b5e21933bc45c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 6011bd9696fe41942d3d854a2eb661289dbb28d2964ff6e3d29282fea2c703ce
MD5 b46df62cd6cda5f19c46170fb234aecc
BLAKE2b-256 e5d0a7cb2945ec254cd068c8365cad2043bb8331fafe86f689cfcc014a09ec69

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_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.12.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2ce9eddf5de0c5301bb0997ad3772df0074f100444f334c3d84d984d5fa1d45
MD5 8df19a5c89843192f8656020fac41a27
BLAKE2b-256 bfa17d101b5c6a2e3a26571eb55f1e5305f772fabfa6be4c9cc546d5c55d0f58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e9a31864c2921fe625d61df8bfe042ea693748cacf6d81b0ec78e46b3f40c95
MD5 163af9db5c2f0437e97134901cc9366f
BLAKE2b-256 06fac5e095a868473165de056d8d6821ec842117d4b62304389a948336e27a76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c35f4a64e3d776caa45e77e1fea18006a7ae400f436fbac7b22442f8003824ec
MD5 0d13a2fe5e113b6cbe7cc02495ed933e
BLAKE2b-256 f954cedc31e2a1f02642e1d99bfe852b2589f91b0240211e6e3bc821c011342c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1395231fdfc78e714e4f7610aecb4aca258679504300a8e006e8a2beabc3bbb
MD5 786f51cc2f3b873fde5c75042ebfcbdf
BLAKE2b-256 dfa8be555792842967ddf868050c1addb5e5d5a47215911ea5575e92e592ee85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d042e6777d2985140f02d0d364c3d549dbcf77a955318343cfefe4da0c3d4dac
MD5 dd50e79f173fd2b7c6cae861a46f29bf
BLAKE2b-256 6cfc1f0105cdf9ec26bf71e89007d80564348002cb249156007492f03eb535cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5dae7a5146aee7fe6fd2ca2d49c895ee1a2f90fc772d40613a8213b81e7724da
MD5 5db567cb070abbfc2be44bb569ad9769
BLAKE2b-256 e2b424f9222be9cce69a37899e9d35e2a838f05df0691b17e28a65aa20b06f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ab01b89ae1f4dd19706902b02ea853571832608d4f936127d7fc0f1a7e528fe
MD5 7bf62d8f0f1708bc54343ffc2951f3ca
BLAKE2b-256 2b86020adf8a2cb81642592bd51285eaf32ebc5b79a80470c0fda3ca06e92fcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 569ff5c2b23e1ecf6e47c180944aa40b6975001665d1ff3f90dbe3f9ce8c49c0
MD5 034dcbe61310e6d88dc566a0663a8bbc
BLAKE2b-256 c98dce41b25b7b48bb7b8aa1e40e10b9c9dd85e2d7946fd489178667c5e4e2ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76911b672892a87db323cfffe28b15f8023390af20dce7a4b41a4452fabcfda3
MD5 dfbf6830a9deef7112888cdde6846d4a
BLAKE2b-256 dfc52140e155bef3e3653cb2bcaaee964e9b549039a322106bfecc0afd1b369f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 54bfa28a4e66f11a86667d7e4244b31332a742a56d467eeb2515c0f92a5ca9c8
MD5 dda6d97b96ea34dc53b1909dc838a72a
BLAKE2b-256 fffd80772e4e9578e9a3eb9cd3351e6c393ff7c361ba24abd30532fa2ae75671

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_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.12.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a938ff413973b958db9ba03d238c38eff43cd7bf306fb5899b30dba9f276ecff
MD5 72f34fbde729773ff7979fd82a5989d1
BLAKE2b-256 cef8b33e5a4312629af6c47fe63ad5a66e1e3ef20782b2febf35924580749bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 058df1df21e6cde9aa077d5df980912a61b6a0039568872863fdb4f5ee5b2461
MD5 f59b3c59a0042b151915de5b3096de63
BLAKE2b-256 9758d8d7b00cd1a4ddf6540e9a2b6aea2c34439ddd08979d8c274df8f57bba0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5670548a33a40b865d916ebf9e182cd6549900bf759bd93132b60519c0d3d12b
MD5 7a7200763a580a7e2cf5ada3a732cf06
BLAKE2b-256 08a11ab63e25302289782fb1a95eb5b6bccfe0691960f7b70dfba9a7032786ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 72978df416ce404db9557daa18c5de9afb8bedcd36ff3769d8a89e222381afc1
MD5 73cf2f421e0b5f7f8376e38a7add1cf8
BLAKE2b-256 5329176cae886a3cf434fc73be73e33fa9a9dee4298ccf7ebc77ea9fc0dbe05a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54cf7ca62d86666c3d31fca497881908beda84c4a71565f3dee6084ab2ad79ae
MD5 2e4a26d107d29f6ac4011b879f0cf4d7
BLAKE2b-256 b754d9d07ceb0300c3932743765c3e072a209032821f71e831a2c76a9e59d32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4b3edf0a229d767c0fb888839dd4c57393dabc4048ae05b91dc61b5c379238a
MD5 aaa812a6c982b7b83489a71c2c81691c
BLAKE2b-256 98bca9e21c62c9ae56593740e1261931148bd1a5c25285a97f21084b1f214e3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4580c4393763b6c66d149e027c109d1758db3f7b71c4daed6efb5431dbac495
MD5 4e740aea052b69ad1db1c06f62abbd5e
BLAKE2b-256 6eee9a65ff00053ea73e52012adffce0908c74e7627112336fd4bce8f8ecd06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0ad5550268479616b9c6a4dd149ed84d4f60d85bb760467b71a97d48f96dc54
MD5 63f298b4873da729883d6f3052267de7
BLAKE2b-256 9095fe16a73caa1cdaa8d09c5b968e5c19c7934cce2bc5a3e171964e4e356fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d6e08b0998e5770f9e7623d2887ee3e54cd48ec4cd4e954fca63f864e82539c
MD5 155330b81b6e6629b9ef055947f3674e
BLAKE2b-256 7e6a0cfccd82b0c9cc0b608e0f14d74807f12f69a391669adfa6371fc28c0c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 4d5bd7d2017e137d0899ddaf997caa1b0d21ec88dfaa762ad45763822d1e9147
MD5 a25e94afc7c042ae3c5e10c7c6e648d6
BLAKE2b-256 6d024f506e4d44bb2cfb04c613815b83841ebb40c761e93dee2cb27dde84e55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_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.12.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51d186d90db98f3bf43d6279428e897201d91af90a406027ce3b933480075124
MD5 dde28dc3a08c30d25e5fa04ca832e884
BLAKE2b-256 853c9fda9545bce4f1ff7330ed0f2eda06270372c307527a23cf305a69b29a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3d6a785d38a8b51fe17e927fb5066952c56700377dbaaf4b702f9fc83a1a5b5
MD5 0c940db7aaab732dc6022dd4656db3ed
BLAKE2b-256 62ec6fc254b3af7cd2553215499f89211e321d6a0c8730bf344e6c21d63e83e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7c45c288fc5293e3cd06b882e8f4288c1eaebed29e79fdcecf847a7400002b6
MD5 4e6ca971aaca7a32d969e49fa84a4556
BLAKE2b-256 bfdba036b07df490b6a868f6cfbdf30d0f1d9e7b802485be00ff90b3bc9996e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: highspy-1.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 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.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5be538ee90c2ace60e038486e467d989a7238afc683c1e68b2ba626e315c10fc
MD5 7a96e1c4120c3c43907593fe84d1cdf1
BLAKE2b-256 7ecddb0d2474d97ec49e24df4abe1bfe9c6be9ad01a8b3e0ba4702261ae60d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f5e888d9ebd1105e933c564d08a657a249141181785256af69c0b6ca1841b83
MD5 957077ba4ca74bb1a5576ecdc44fa70a
BLAKE2b-256 7746e9845b3ebada94787eaf9a60c88f020bf0ff95a890c885961a48e5cc58e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8b08938e8d1c697aa696619e6e153cf491eeca2004e1bc6d8d89eff0cd459ef
MD5 b4a099cffc08c791f53eb4be2cb3ae1e
BLAKE2b-256 aab66045f8626adb62a1b9f7ecbee678b9be4bc48a317e84030faa2aca5cb9b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffe3abe6e98871ff227205c59223943d023dbb5982f6501062e73c6b3f1e72bf
MD5 7921a09987919d676cfccd36f2999474
BLAKE2b-256 df93fc13d85712b6b6a67164b8ace3e9411549baa60bb64aaae6c4a8723688ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9ac4a8eb96bbaaf445ea9424b5ce4e78ed517498096094ff357cfdc600296f3
MD5 72ab45c55cfe8a1a6f44ae78847ee2cb
BLAKE2b-256 c34e746fc4b3a697d5fa24a81daa53a65f0e9002f3d5cfbe30be685a20fb6d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.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.12.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 059eb26782a4823e0b5448e0fa7416846024ab87f90ed321562ac0751219c42e
MD5 5c8ebc295c10df55a2c4df8eefac5132
BLAKE2b-256 14d8cc3f17914b5bf7908cb6d130c3d7fe48091c4806b88a4011a458d23a3f1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 7b873d9103435dd668189c44ef362be6350d459a07346948fa186a87509d245b
MD5 05c5fc9b2b7900861b1b8d16cf502b63
BLAKE2b-256 814a06783180a635a4c545619bb981de9fcf45bbd2994d1c6e3b3a6684d8497b

See more details on using hashes here.

Provenance

The following attestation bundles were made for highspy-1.12.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_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.12.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d8df2ef3761b715d28e7660fcf5f5c27f2bf4d21692b8fbab9623397dc9130c
MD5 36550fd114e668b2481edbbdc62f7558
BLAKE2b-256 d1dd397570ec96d692ff590d059155c17e84ad70aeca90244b00e3c31cc6dc41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for highspy-1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2da34ef9dba7ff6ff39da865e682bc78aa061e59e4783874449aadfa56547d6
MD5 2daab3974cc6c2154b05a179901446b2
BLAKE2b-256 5518519ad8a3ee7d8eaa5659816a6a2b37205dd177eaa843134c7b7979cd388a

See more details on using hashes here.

Provenance

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