Skip to main content

HiGHS - Linear optimization software

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

About HiGHS

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

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

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

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

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

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

Documentation

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

Installation

Build from source using CMake

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

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

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

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

    ctest

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

Build with Meson

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

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

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

Build with Nix

There is a nix flake that provides the highs binary:

nix run .

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

nix run github:ERGO-Code/HiGHS

The nix flake also provides the python package:

nix build .#highspy
tree result/

And a devShell for testing it:

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

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

Precompiled binaries

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

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

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

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

Running HiGHS

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

    highs ml.mps

Command line options

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

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

options:
      --model_file file          File of model to solve.
      --options_file file        File containing HiGHS options.
      --read_solution_file file  File of solution to read.
      --read_basis_file text     File of initial basis to read.
      --write_model_file text    File for writing out model.
      --solution_file text       File for writing out solution.
      --write_basis_file text    File for writing out final basis.
      --presolve text            Set presolve option to:
                                   "choose" * default
                                   "on"
                                   "off"
      --solver text              Set solver option to:
                                   "choose" * default
                                   "simplex"
                                   "ipm"
      --parallel text            Set parallel option to:
                                   "choose" * default
                                   "on"
                                   "off"
      --threads int              Set maximum number of threads to use:
                                 0: automatic * default
      --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 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.

To use HiPO in Python, the additional highspy-extras is required. It contains the HiPO dependencies and is Apache 2.0 licensed. It can be installed with

$ pip install highspy[extras]

For more details, see https://ergo-code.github.io/HiGHS/ at Interfaces -> Python -> HiPO in Python.

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

The nuget package contains runtime libraries for

  • win-x64
  • win-x86
  • 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

Release files for highspy 1.15.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for highspy 1.15.1
File Size Uploaded
highspy-1.15.1.tar.gz 1.7 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for highspy 1.15.1
File
highspy-1.15.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
highspy-1.15.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.26+ x86-32, Linux glibc 2.28+ x86-32 Details
highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
highspy-1.15.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
highspy-1.15.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32, Linux glibc 2.26+ x86-32 Details
highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
highspy-1.15.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
highspy-1.15.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.26+ x86-32, Linux glibc 2.28+ x86-32 Details
highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
highspy-1.15.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
highspy-1.15.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.26+ x86-32, Linux glibc 2.28+ x86-32 Details
highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
highspy-1.15.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
highspy-1.15.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.26+ x86-32, Linux glibc 2.28+ x86-32 Details
highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
highspy-1.15.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
highspy-1.15.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.26+ x86-32, Linux glibc 2.28+ x86-32 Details
highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 301.6 MB

Release files / highspy-1.15.1.tar.gz

Download URL highspy-1.15.1.tar.gz
Size 1.7 MB
Tags Source
SHA-256 checksum
How to use checksums
20ed2fbf1cb64bf3044ee6632364b7e2653d93e6901e2b19fd3d5df10702e8c5
BLAKE2b-256 checksum
How to use checksums
8702c6b658f79911fee921721da728b9ab8f5e19ff06121fff36f90f77127f4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-win_amd64.whl

Download URL highspy-1.15.1-cp314-cp314-win_amd64.whl
Size 2.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
864258c59aeaea9d3bd7ccdd10c03258e2be764e2cf1e21f829fd1f8d8c15d57
BLAKE2b-256 checksum
How to use checksums
bf97e85d751aaba8231e86915077532fd584711d30aa9eb85c26331e2bd87596
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-win32.whl

Download URL highspy-1.15.1-cp314-cp314-win32.whl
Size 2.4 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
780c021441f548711818833d3a986fcb253849734aa00c3bf83d342c38b03629
BLAKE2b-256 checksum
How to use checksums
25818f984e500536ca40a8fb1d74ecb7a213e170683adcfd01edee8e21e5735b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cb8b8298a74786e1cbc1a9e102b7749e2bbd9c41826ffd4a1d7ba738232646ff
BLAKE2b-256 checksum
How to use checksums
205e8b21c908ee94db28f2de58326c8a25e361b3d504f145f7972f096028a908
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp314-cp314-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
74c1eb71d3c0fa0c190492d9c0c67266d1dd6b4244c93b53e95a687504db309d
BLAKE2b-256 checksum
How to use checksums
ea93a35495b3326cdc0c2ff59de69d26f2600f41399d9381b59f4826742c054e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bbb22b7ceed298c0b75237186eb4671915b1c41c07f966e527643af10493671e
BLAKE2b-256 checksum
How to use checksums
19b4655f6ce06e17159c001456c97c4be84dcb1448477e3ea52bd5401f5c27c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.14 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
9d436b5f8d50b01497d494606695746147e15b8e22eec6ae475a60cb8b22c1d7
BLAKE2b-256 checksum
How to use checksums
389dccf4a0d4e7a4fa4141dbabe9f78e94fa9d37b6b5becafe8a61e8369031eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6298b6ef691e83544d395d45fa4e856874c44b32936d85c36564f7697d27bb0b
BLAKE2b-256 checksum
How to use checksums
89ea6d6136f01ce82c049740b00380a39999a15c689a9a4d43fdb1ea25090c2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
193b9751d3705bc948552b138800af0ad8af17a5b801d5940d7db7ff1ffc4f10
BLAKE2b-256 checksum
How to use checksums
a3209c75531c03c7121d576ef0ff8415bfb255fdd060c435f9f26e5b103b0559
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp314-cp314-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9a00e1278ea46a426b1eaa0aea69df9d72ed1d75b18227cad992384ebbdc0c74
BLAKE2b-256 checksum
How to use checksums
fb5b308821aeefa0e85f90645e15a86bc63c156bf08b00e33a0a906a0c430b41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL highspy-1.15.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 4.9 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a7b11dc80781052a6e7c163b5c2696fe9e06c72927cfdb48f67f7e8c77096f4f
BLAKE2b-256 checksum
How to use checksums
0c738cd42c3ca7baf4857494a0294ef068f2216f1216173f3f298046820a7a57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-win_amd64.whl

Download URL highspy-1.15.1-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
46fe314b918257361c54170852bc561c78d0f84d94e2ad263859d818127e6e76
BLAKE2b-256 checksum
How to use checksums
ca632e104bab0117415c68950f249e42f0974f74665d0313dfeddceb1f74c47d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-win32.whl

Download URL highspy-1.15.1-cp313-cp313-win32.whl
Size 2.3 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
6cc7008b82094b2a2377338398b38f5b6c306397bd23282e55dec46a101a2dac
BLAKE2b-256 checksum
How to use checksums
540b35e5e63be2e70951c3224ed33c4300f1cd37fcfe4eb6d25e259e13571e0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
565cf6a6e7c84e36c101b118a3c5fd09bc14aeece599bba12625e79b5ab0cecb
BLAKE2b-256 checksum
How to use checksums
3360b9ae92e8454f42cb5c5ccca63862a75f5d43afead1f725f3b8af19f507f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp313-cp313-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9ea683af80e4fb7c9d712b5df4bae34c63fa9e6afc78d750ba2d9f5e6f3203e0
BLAKE2b-256 checksum
How to use checksums
8dcd737f43e9c56163ebae501ab21fdbc37dd2dde3e02fd18e37d0062b9b9c7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6e1f8a21a0f48aedb129a5a60d4cad9ee0767de271cd7450de16192440671b38
BLAKE2b-256 checksum
How to use checksums
ea55708b7523ad80106b91fb66471ab8b1c178a8c8adc222c839cc14147542cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.13 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
b6dcc545235c0765b48fc736122b105e174d907622d20986ac653c5b2a04911f
BLAKE2b-256 checksum
How to use checksums
61038f821d39dc8ee06a35e0fa54c754ab592139640c1e839b587e60068ad822
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
238b2ee88b974b21c7e9ef198139502a7d87451939cae143dce789bbda121182
BLAKE2b-256 checksum
How to use checksums
ca6ef00e914f2bd88e2b73a8b3ea1b47171a85cfa23d1a06dc373ca797f43208
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
383cd3f28cce0753dec8e949719b10864e068c53a485624fcab4c6b585496dd7
BLAKE2b-256 checksum
How to use checksums
2f974b5e345affc107f1f315c55dd0b6f35f13be07092feccbdfe1d9bfe38e63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp313-cp313-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
818256db731339605a7b2c31cabfcbf820fe50402ff5e9b7aa8410ead06e8735
BLAKE2b-256 checksum
How to use checksums
7f1cc6518fc7c2bd5c90d86bd7a8f3cf16c1ea0ace4335a80d45b8d3f96c0cba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL highspy-1.15.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4db297486a7a42a18656d1cc0ea9e1596fe45b8f7f75669a0c55b9081531ee0a
BLAKE2b-256 checksum
How to use checksums
3f1e283ea32eac82dd24fe86c439013d7c7666f4889de89f0957362ea5fa425e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-win_amd64.whl

Download URL highspy-1.15.1-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8c548165270608a40147a7ea6d985fd62a65fabf0f075b3c0c59ea910b724223
BLAKE2b-256 checksum
How to use checksums
d40105521ca6b38e34e68d707888c378d3bcac34e62715b739e7c0c9b9887993
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-win32.whl

Download URL highspy-1.15.1-cp312-cp312-win32.whl
Size 2.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
01c6585e83938ecf4139248b074b2ee736816d63716a20dc608b1d2fc9637b66
BLAKE2b-256 checksum
How to use checksums
9a255083d8e3d5cf5ff5edf5bcc03e3f693630ab59142c9d0a0bcbb2d315c50e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
dd9ee8e139e7260ec1306a48e30f1bd7937d9cfb8cb201d25da10e1099e5129b
BLAKE2b-256 checksum
How to use checksums
23779a07df7181834cfb61dafa5594e5eedc78369797c6487806bd3221d20667
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp312-cp312-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
787c92d5ff274256ba8848ab174cfc65d5af696f51bffe87423c85b2ea25c3fe
BLAKE2b-256 checksum
How to use checksums
9408fb7d30ea0e6c83fb943b16bf31951ba13a5be01a638ec13962a477009b91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a6760962b3e813814dc5e88301890d7cce975de5ce97cc3aed589cfdd461811
BLAKE2b-256 checksum
How to use checksums
d42a5501a23cac55926e4b0554352b4285734b417dbec385c593f2ae405ea637
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.12 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
6a6a2f21ee31a9205a928fbbc3f8c054893c1aec34f6a7c56588317e2800e673
BLAKE2b-256 checksum
How to use checksums
d451e43f06e64e994ccb41a336ff78802c0dae63aed46c17acd52167b5ca3d76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9730647160a6481426729f46d9989a0507d05f3cf96f9fb180f4ab9891bea67b
BLAKE2b-256 checksum
How to use checksums
826b18bec60d8585df860b8d33d310e99e7893eaabe3c8e9ebfa7e387ba9d2a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ef048fa722cdeb80062d271b8ba211cd6650ab73419762d80da7642bbd4a8420
BLAKE2b-256 checksum
How to use checksums
ff7f185b8c9579a9e4ef88eda45d1fdaf8d23a3a640f73c403a7b29fc0f0c4be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp312-cp312-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9499d631edeb9642fc08dee59ca6c5815be1764c13a336c58ab7ba063011aa24
BLAKE2b-256 checksum
How to use checksums
5ee4ae08124f71187628471a177e6db1ed2c1c45e9dceadc45f7111dfd7c2254
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL highspy-1.15.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a781dc8432568ea990fcdcc8d6e4365e67aa4848ca1f99275db096645b27cae3
BLAKE2b-256 checksum
How to use checksums
de59b79a7b1711ddfcca36674ddb41759e98eb1797f4a94513e7dd215e32e94d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-win_amd64.whl

Download URL highspy-1.15.1-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4715fcfbcff50fdbcc288499116f7e5722a9f9d2647087d54317febb94ec2b32
BLAKE2b-256 checksum
How to use checksums
48456714276be39f1f0f7c2795fb466c39640bbcc541e151342f05f61d2f24a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-win32.whl

Download URL highspy-1.15.1-cp311-cp311-win32.whl
Size 2.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
605d3204e41a465f9ce2f254571a90e8781605451a5e6a548f6b4be8988afb4f
BLAKE2b-256 checksum
How to use checksums
3c6959d4303d38d6c48cc6f79c12b11f756b381e8e5eed5c0733d8c82317240f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5de2dddc554442f3572bb4a36116278bee79568fbd726a697251d2606b79a5a1
BLAKE2b-256 checksum
How to use checksums
a71e82159a50b8a17daf2e94453a8e0af3e381943223727fd9db6d4bebc1533a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp311-cp311-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0b5be1c777d0b57b6dc26e1d9754923e642a17c6313bcdf5186473644b214f0b
BLAKE2b-256 checksum
How to use checksums
111027a7b87dbf56ab88d223fb9f1b6917c9df259c09980460ff56731c2406ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
00e1c13912501e96893136a1805b56b74cb4868fa04c1c2eacc5c0454304e08e
BLAKE2b-256 checksum
How to use checksums
322580c96a11bcf3bdf4ffaa7b1e26629b6da340703b2bbc4e0349d40d7a8aaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.11 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
138506088c7f6106cbb58d1cd0ef14793dfb47477fd83a7ae0db5b104d1cf969
BLAKE2b-256 checksum
How to use checksums
f2505196e807cec6847b2bee8ceefb080b8175ea81aaa673249678398cf3181c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a24329c328942b37a6a318ecf163d07dd387974f071b98b4498725eaea80f06f
BLAKE2b-256 checksum
How to use checksums
edbb0588b8137df2a0ae55a9a8ad40eff40561b60d6f76dbffd5ab4f4f6095f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
070c1ce9238b9e8b4c273253647ab0dbafc1839c195a52c7ef1eeb7ef6976f05
BLAKE2b-256 checksum
How to use checksums
bbeadef24ab38ff3ea983eb197dcbf01ec9ad82e2aa3380b72f01792486865e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp311-cp311-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4b4c7e7af8d7927ed77836e9b869cbae55d6a74b85bb90d04776440b5e14c32b
BLAKE2b-256 checksum
How to use checksums
8b5d815b8f0488fda02e765b85e7a1ed2bf26b7d705fb1240ca842c4493d9414
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL highspy-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
45eb9f022f9083ef2e56d66f972d5fd40e6634f4497194b1f3f215ca0e8ea958
BLAKE2b-256 checksum
How to use checksums
5d6974e9614a6e49f5e07fbb91a5cebad79bd31903888ca6b4f1c75dcf01df3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-win_amd64.whl

Download URL highspy-1.15.1-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
62785dd5bb0df337c150ba7b53e555ee21a29fdad6d86f72aabaa1615fdd7874
BLAKE2b-256 checksum
How to use checksums
992ef0516225abe09988bece416e6489fd97855b5e72fe091ba95db1f83c00d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-win32.whl

Download URL highspy-1.15.1-cp310-cp310-win32.whl
Size 2.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3cd22d9cf5affcc414782f3a30e564cdfadfe140a0d55e2f58542b1f2172ae5a
BLAKE2b-256 checksum
How to use checksums
a47b1ae634fc0e216e833b9a50139e3019b449ae317d44f84cef2ad5f5457835
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3aedd87892b39e070e011ba30fcdf6cf3724652430d72d33fd05a421b5dce4c6
BLAKE2b-256 checksum
How to use checksums
c5871f202ba41861c2ad1344b9b4e8e098d7c2866a48a4c34102b60b16557912
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp310-cp310-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
41e52e62366fc56086c45840ecbf31c530f46d0fdd722eec87d39cf9df9215fe
BLAKE2b-256 checksum
How to use checksums
579dfe55aa773cb8046304128d70dac58f5f9e24dd744d3ee042ee2eebf92a1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bb0d891973210511b6cc369ed9440fda12c58b0ab60a95972d348504cc6f9cf0
BLAKE2b-256 checksum
How to use checksums
e9d309afe02e0503b65e230fcda2d8e52da6ea14d34718b46a500cfab126b0c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.10 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
ff1fcca9cbef41de4c506774a7ac77c8bb5289d2ab268c4ad980262553397ff7
BLAKE2b-256 checksum
How to use checksums
7dc42f0a1fc322a6b312b6c382e94fcaaa09832f8991208ee934eb91bc39b3ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
aa3a97459f9350335b6448b8e83bf73467ab5a80b32f207a52c8fd9c928116bb
BLAKE2b-256 checksum
How to use checksums
75e5da7aff7c98e4b104ac3c42d39bfacfb863bd5bc06beaad6a51321f95831c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3b5ea8e1bd0b1768f779231e6b54612f0a889bb9eef897844e649f7180e1b15e
BLAKE2b-256 checksum
How to use checksums
b55dd6e80943a4886f1047f1249a432b9bbf8bbf6d3d1cf35fa27c6285a30f7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp310-cp310-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
064f4778ee2a0a22e11220dfc6e6237c332c3062708616391372b86553679d80
BLAKE2b-256 checksum
How to use checksums
6a08f8cd1fa4b941798f29792c00be7f50ea2e580b1b94615252c8135960e969
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL highspy-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 4.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ede82b16a610b07ab16a1ac361d68f924b86f634d0f0d27bd6c94aa9df05732b
BLAKE2b-256 checksum
How to use checksums
7c02972d1b680f3de0ae968b94604ea17bcf6d4af226d0f65b6a3a2820d95412
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-win_amd64.whl

Download URL highspy-1.15.1-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b517da9c7ee97773b55ff6a23148152be5a9366d2fe2628243e571233821b752
BLAKE2b-256 checksum
How to use checksums
7c762f1c433e080a025288777c89f6632bcbd21e23af7d6bc29a6085e5bb604f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-win32.whl

Download URL highspy-1.15.1-cp39-cp39-win32.whl
Size 2.3 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
16688ab89afba436d2178d30b49bf4bf1620427d57f7cbfed914a3474e010db9
BLAKE2b-256 checksum
How to use checksums
86345084fbf6cd1025c95c8dc9e6a8144d4d7d9aab5cafe776f8e24bfd3d9a0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL highspy-1.15.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 6.6 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b72d0e7b43a623404d2ba49075110883285f3174845eceff209c501f9b21b0db
BLAKE2b-256 checksum
How to use checksums
dff2fc58460d9b1f3c8ac4d22ed7c1c8ce1e8791569bdf723e278555bbfe6d8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl

Download URL highspy-1.15.1-cp39-cp39-musllinux_1_2_i686.whl
Size 7.2 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3797f2046caa212cfc6b095b057cb6d63e847f4ec6acd9c8e1f791a81f01fa15
BLAKE2b-256 checksum
How to use checksums
3001368536054cd1788f5dcd10a8530c5f074d7c0ac431af91674957d8a15750
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL highspy-1.15.1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 6.2 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
78bd23d371f633056a31e88da13d40606837db46d634626a8fcab6a1168a7370
BLAKE2b-256 checksum
How to use checksums
31ec680f01dc2413089450c266ff79944d42caa560b40c00749c0dca64fded18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl

Download URL highspy-1.15.1-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Size 5.9 MB
Tags CPython 3.9 Linux glibc 2.26+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
8a2f1f95baa6151c10c59d838044c138fc485210fad70e6c51cc43332f728f8c
BLAKE2b-256 checksum
How to use checksums
404ddeb8e155bbd423ead61ef9b8722581fd43078a92a203ffb27411bd4452fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL highspy-1.15.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cdb93d7a8dfce49b0661b87cc113d5efd9b63b2c2abf7877b7ff508038f317c0
BLAKE2b-256 checksum
How to use checksums
74d41099d5bcccda7eaa4556704623b34b1df140196b4e01cfeff6b6d51464be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL highspy-1.15.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 4.6 MB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fc6997138d0cffe3ffb5c81dc750b9f272e301a1c6e9d284e212a90e4c188dfe
BLAKE2b-256 checksum
How to use checksums
05086c0303133a5e8c19b6aa0b2a450f06d676af4f767b09b94fdaa2e917d5a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL highspy-1.15.1-cp39-cp39-macosx_11_0_arm64.whl
Size 4.5 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e11bcf5efdd15447e5490d7b1830043c754e26445ab896b8aae23ae7ff047437
BLAKE2b-256 checksum
How to use checksums
721d098d11d368a986341ebb7a4c9c333f163cd06c092232ece51ee4b1e83cd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log

Release files / highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL highspy-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 4.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
81c869e9c1245e1930d7aa0cb726a3ed27367afe528655235033d461bd75f5b4
BLAKE2b-256 checksum
How to use checksums
e60a852c969a133ff82f54d991a898fb83fcd2522404204a568ed1e23154a482
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 2, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page