Skip to main content

stabiliser-tools: Fast checks and conversions for stabiliser states, Cliffords and Paulis

GitHub project page

Paper

stabiliser-tools supports the following specifications:

  • Stabiliser states:
    • [SV]: a complex vector of amplitudes;
    • [SP]: a quadratic form, a linear map, and an affine subspace of $\mathbb{Z}_2^n$;
    • [SQ]: a check matrix, i.e. a compact list of Pauli gate generators for the stabiliser group.
  • Cliffords:
    • [CU]: a unitary matrix;
    • [CT]: a list of $2n$ Pauli gates representing the images of basic Pauli gates under conjugation, i.e. a tableau.

After installing the package, its classes and functions can be accessed via

import stab_tools

Note that on Linux and other Unix-like operating systems, you may receive the following output upon importing:

WARNING: You may be about to receive an ImportError. (If you don't, you can safely ignore this message.) To resolve this, try running the following command in your terminal:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path-to-python-environment>/lib/python3.10/site-packages/stab_tools

This is due to the way shared libraries are linked in Linux. In order to stop this error from occurring in every new terminal session, consider updating LD_LIBRARY_PATH in your .bashrc or .bashprofile file.

After successfully importing stab_tools, run help(stab_tools) to view the list of functions and classes.

Available classes:

Clifford
Pauli
Check_Matrix
Stabiliser_State

Example code:

>>> import stab_tools
>>> import numpy as np
>>> v = np.array([0, 1, 0, 0, 0, 0, 1, 0]) / np.sqrt(2)
>>> stab_tools.is_stabiliser_state(v)
True
>>> s = stab_tools.stabiliser_state_from_statevector(v)
>>> paulis = stab_tools.Check_Matrix(s).get_paulis()
>>> paulis[0].get_matrix()
[[0j, 0j, 0j, 0j, 0j, 0j, 0j, (1-0j)], [0j, 0j, 0j, 0j, 0j, 0j, (1-0j), 0j], [0j, 0j, 0j, 0j, 0j, (1-0j), 0j, 0j], [0j, 0j, 0j, 0j, (1-0j), 0j, 0j, 0j], [0j, 0j, 0j, (1-0j), 0j, 0j, 0j, 0j], [0j, 0j, (1-0j), 0j, 0j, 0j, 0j, 0j], [0j, (1-0j), 0j, 0j, 0j, 0j, 0j, 0j], [(1-0j), 0j, 0j, 0j, 0j, 0j, 0j, 0j]]
>>> pauli_xs = [stab_tools.Pauli(3, 2**n, 0, 0, 0) for n in range(3)]
>>> pauli_xs[0].get_matrix()
[[0j, (1-0j), 0j, 0j, 0j, 0j, 0j, 0j], [(1-0j), 0j, 0j, 0j, 0j, 0j, 0j, 0j], [0j, 0j, 0j, (1-0j), 0j, 0j, 0j, 0j], [0j, 0j, (1-0j), 0j, 0j, 0j, 0j, 0j], [0j, 0j, 0j, 0j, 0j, (1-0j), 0j, 0j], [0j, 0j, 0j, 0j, (1-0j), 0j, 0j, 0j], [0j, 0j, 0j, 0j, 0j, 0j, 0j, (1-0j)], [0j, 0j, 0j, 0j, 0j, 0j, (1-0j), 0j]]
>>> H = np.array([[1, 1], [1, -1]]) / np.sqrt(2)
>>> H2 = np.kron(H, H)
>>> H2
array([[ 0.5,  0.5,  0.5,  0.5],
       [ 0.5, -0.5,  0.5, -0.5],
       [ 0.5,  0.5, -0.5, -0.5],
       [ 0.5, -0.5, -0.5,  0.5]])
>>> stab_tools.is_clifford_matrix(H2)
True

Compatibility

We have compiled and built the underlying C++ source code for a variety of different platforms and CPU architectures. Our testing has mostly been done on Windows, Ubuntu and Arch Linux. If your machine is incompatible with any of the Python wheels, the full source code can be found in the source distribution, as well as on GitHub. You will need the libraries Catch2 and pybind11.

If you are unable to build the code yourself, or if you have any other questions, contact the developers at ming_yin_2[at]sfu.ca.

Release files for stabiliser-tools 1.0.8

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

Source distribution (sdist)

Source distribution for stabiliser-tools 1.0.8
File Size Uploaded
stabiliser_tools-1.0.8.tar.gz 181.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stabiliser-tools 1.0.8
File
stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl CPython 3.13 CPython 3.13 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 13.0+ x86-64 Details
stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl CPython 3.12 CPython 3.12 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 13.0+ x86-64 Details
stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl CPython 3.11 CPython 3.11 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 13.0+ x86-64 Details
stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl CPython 3.10 CPython 3.10 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 13.0+ x86-64 Details
stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl CPython 3.9 CPython 3.9 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 13.0+ x86-64 Details
stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl CPython 3.8 CPython 3.8 macOS 15.0+ ARM64 Details
stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 13.0+ x86-64 Details

Total release size: 3.8 MB

Release files / stabiliser_tools-1.0.8.tar.gz

Download URL stabiliser_tools-1.0.8.tar.gz
Size 181.4 kB
Tags Source
SHA-256 checksum
How to use checksums
fde18addc8383ca0178ccaf3ec3d61216d949f998de209fb5ef084a53ee9e5c3
BLAKE2b-256 checksum
How to use checksums
d2fa461b1d0bba615350df65fd24ffa24b92dae6b3586314a49f882bb22d7a72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl
Size 160.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e2419d3e139b93378e896a76d4bea2571b90078ec80155079161a8fa12e257f7
BLAKE2b-256 checksum
How to use checksums
3d6426eb566654494fcd0bea8523c87161707151dcfa5fb88c759b0918548686
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl
Size 186.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cba7ebb4fe145b47a27fe9c9a0008d6ca8523d216c7b22ffb87b05593a54eb6a
BLAKE2b-256 checksum
How to use checksums
ff8fcce196f8fc48a077cddc8c9b00c55eb6d320fa05ff0aa48f9259f924793f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl
Size 128.0 kB
Tags CPython 3.13 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
236010f06403ceca031bd21205c62690969c09ee23bf5e2946934b2b4b761ae8
BLAKE2b-256 checksum
How to use checksums
6eaf535a969712436985f38e7a32f139adc8cfbf0febcce6e6f36f4319eb4e48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl
Size 148.1 kB
Tags CPython 3.13 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
c17a91e746da4562cdab9581a8cf75144ff46383d29a5f01c384f24a040f639c
BLAKE2b-256 checksum
How to use checksums
72fce349e04c9e567878a44847e57d1ee32d8d55a2bf0a07610ce079c1b7d48e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl
Size 160.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f814c04da02254c442ef3f3831679faa3ea13e7f3daee43e9ade23249a53da97
BLAKE2b-256 checksum
How to use checksums
2a063899745c0ef8c371cebb6103af6e991f3e2a0e17cdee85c0bd0ddb07a440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl
Size 174.3 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fd68a7f560ad3a7ac923abfeedc8e36627f64e1f73fbd0f8757c59bc3b4c9a04
BLAKE2b-256 checksum
How to use checksums
30c3b5da4d8693d6526c06ca8cdb800a73378c384306d552a1632e28f9c6c572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl
Size 128.0 kB
Tags CPython 3.12 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
54737246160be34d9b76a6c784aad2245d838ebf2a5dd68c98befb759599f43a
BLAKE2b-256 checksum
How to use checksums
a56c0fe8c7ab2fd1e0c15ec994488798f810f65f011d1fcb322eb9a86fe7be60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl
Size 148.0 kB
Tags CPython 3.12 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
665370569b94cfce2580c9ce3fe915a9f7bc81b1a8209eddfe8e0d723ee14669
BLAKE2b-256 checksum
How to use checksums
e05cb708f02cb9f51b02db4571167b55824daba2ef3eaace9079d57973cedf74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl
Size 160.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
43baa11f1c2ff11aa09a9966ecae19884b8aa1d4eb215b8b8b83f249ee8d919f
BLAKE2b-256 checksum
How to use checksums
55f7ec3f515660fdf24b20d43354d95a9f82e7b75578fda4cdfddeb8de7a4490
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl
Size 174.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3af3f5060dbe88a754327bb65cca502152f52801c8a5f9e5ef21c0df9d50ba24
BLAKE2b-256 checksum
How to use checksums
a69934bb757611239660391379cf391152e955d80c176d1ad5e49f320ac22df9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl
Size 128.3 kB
Tags CPython 3.11 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
1f143724aca0b79ae2b143b7a0583391d44ded547a413cff3521fe276342292b
BLAKE2b-256 checksum
How to use checksums
51a01e3a11226ebceb799a8b2d5f0e2412685e64ae3a8ca97610deaa76d19ff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl
Size 147.4 kB
Tags CPython 3.11 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
72d61d55588ebfd50d81d11ab7538be581e1d5193c36a9419dc9cdc1b0e28864
BLAKE2b-256 checksum
How to use checksums
fb387342c1439e59e07278058c5fd0b12ef690fe3eb63fe0e765299858b89525
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl
Size 159.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3f313e3cac7492550ca5eef245872e11a68d605dd9323c671e0254a47653f347
BLAKE2b-256 checksum
How to use checksums
12be1f16fbdedececfa79f29cb3869f90dbeee71dbe444e746ee4aa4d3b6a56b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl
Size 173.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a4ca685824250feac21a29dcd02cfd7e24c2319df897bce5aa21671aad0afbc5
BLAKE2b-256 checksum
How to use checksums
55244f83a4c6d397b8ca6dc690d6411cdd019cd407bbf0a386172f341c2a288b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl
Size 127.1 kB
Tags CPython 3.10 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
044ae556cffc9211f420b3367b0e402276a7ab264a534a814efd26ba49fc1d15
BLAKE2b-256 checksum
How to use checksums
8059b6a2b4b8fe15fe283b6e4da1e2bf8b65091d8309c5ab02e17e38ee43427e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl
Size 145.8 kB
Tags CPython 3.10 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
576addfb41f41864fc93404b57fc64ece1c7ccef5b4a89dcf13861c8cc006bd7
BLAKE2b-256 checksum
How to use checksums
e5d55530679cf55d9e9d5ad2712e8c29b14db0789ba26774b7576631330d7a2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl
Size 165.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b5e92c5161155af128240cdc2aef2d240ee1572fa82fbb3916e828898db73b4f
BLAKE2b-256 checksum
How to use checksums
39e39e05657531c1728f0a6251b9abbb323877b7368dc70d65a728413dcd6298
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl
Size 173.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9112a1fd9632a81b5f17b2dfc5d5971bac58e090af6ff496f523c73f8243d7ae
BLAKE2b-256 checksum
How to use checksums
3207a58fec389b16a615bf354935ffd708495950886ddf141b2745b54946bb62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl
Size 127.2 kB
Tags CPython 3.9 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
22dc3091975a01ae619955c89ae258d9dcbce4696f8f4d3d10e05b8b50d0d7b1
BLAKE2b-256 checksum
How to use checksums
56195a70b36855f8e07ceb5b3143475010e42f5742860051bf457f4b33da0a94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl
Size 146.0 kB
Tags CPython 3.9 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
f4cae070cc0a1ff129d9247e213e3a7d02f7c1be00c295dca8ab826ad905f24e
BLAKE2b-256 checksum
How to use checksums
319e93893ba5c1b9f96e4bbcdcf1afabf12a9e04020d80ffc2d04ad998c75c0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl

Download URL stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl
Size 159.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
58dc102e7fa500a170e58cf94befb804daab817c2c36e4092d5cb8efd9123237
BLAKE2b-256 checksum
How to use checksums
73ed81d8cc69c8dc22a68813ea89cd45671b984b324b185a54b1b95410363ca2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl
Size 173.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4d16a943e9b9b7cec6f0eb2dcadd616aa945b21ce898e8585e7c76653e7c2c4d
BLAKE2b-256 checksum
How to use checksums
a368d5cddd468a97fc4c8a1fecca9be1dd3f5fcf55899399507ac48a1502781a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl

Download URL stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl
Size 127.0 kB
Tags CPython 3.8 macOS 15.0+ ARM64
SHA-256 checksum
How to use checksums
c2857eb7a09ef77d89494b8a42e86c8310730a717264f74dabf26f603a23ce21
BLAKE2b-256 checksum
How to use checksums
d54599797135c71aeb3fd367a2f0c003a5296e56936b6b5517f6e54bad2d7791
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release files / stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl

Download URL stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl
Size 145.7 kB
Tags CPython 3.8 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
d381fee64631ad6c072868e4480dceb7c1537e255046194b70ccb3a7a9a3eb96
BLAKE2b-256 checksum
How to use checksums
c233ec8c025ecd72cbb571376a3a7ee536d0f5b2546ae51cd59b873c9de0c33d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

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 Oct 9, 2025.

Transparency log

Release history Release notifications | RSS feed

This release

1.0.8 This release

25 release files

1.0.6

25 release files

1.0.5

21 release files

1.0.4

21 release files

1.0.3

21 release files

1.0.2

21 release files

1.0.1

20 release files

1.0.0

21 release files

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