Skip to main content

Fast algorithms for verifying and converting specifications of stabiliser states and Clifford gates.

Project description

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.

Project details


Download files

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

Source Distribution

stabiliser_tools-1.0.8.tar.gz (181.4 kB view details)

Uploaded Source

Built Distributions

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

stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl (160.5 kB view details)

Uploaded CPython 3.13Windows x86-64

stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl (186.3 kB view details)

Uploaded CPython 3.13

stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl (128.0 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl (148.1 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl (160.5 kB view details)

Uploaded CPython 3.12Windows x86-64

stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl (174.3 kB view details)

Uploaded CPython 3.12

stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl (128.0 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl (160.2 kB view details)

Uploaded CPython 3.11Windows x86-64

stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl (174.2 kB view details)

Uploaded CPython 3.11

stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl (128.3 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl (147.4 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl (159.3 kB view details)

Uploaded CPython 3.10Windows x86-64

stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.10

stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl (127.1 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl (145.8 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl (165.2 kB view details)

Uploaded CPython 3.9Windows x86-64

stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl (173.4 kB view details)

Uploaded CPython 3.9

stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl (127.2 kB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl (146.0 kB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl (159.2 kB view details)

Uploaded CPython 3.8Windows x86-64

stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.8

stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl (127.0 kB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl (145.7 kB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

File details

Details for the file stabiliser_tools-1.0.8.tar.gz.

File metadata

  • Download URL: stabiliser_tools-1.0.8.tar.gz
  • Upload date:
  • Size: 181.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stabiliser_tools-1.0.8.tar.gz
Algorithm Hash digest
SHA256 fde18addc8383ca0178ccaf3ec3d61216d949f998de209fb5ef084a53ee9e5c3
MD5 b354a3c47021af330ffbf51615addea1
BLAKE2b-256 d2fa461b1d0bba615350df65fd24ffa24b92dae6b3586314a49f882bb22d7a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8.tar.gz:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e2419d3e139b93378e896a76d4bea2571b90078ec80155079161a8fa12e257f7
MD5 542f92f094436324d2d77ef6573e1a1a
BLAKE2b-256 3d6426eb566654494fcd0bea8523c87161707151dcfa5fb88c759b0918548686

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp313-cp313-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cba7ebb4fe145b47a27fe9c9a0008d6ca8523d216c7b22ffb87b05593a54eb6a
MD5 1737df1572b6d63d9aef9a10851b5e54
BLAKE2b-256 ff8fcce196f8fc48a077cddc8c9b00c55eb6d320fa05ff0aa48f9259f924793f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp313-cp313-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 236010f06403ceca031bd21205c62690969c09ee23bf5e2946934b2b4b761ae8
MD5 f080a7aa50bd85dc8624bcc6c89b7aad
BLAKE2b-256 6eaf535a969712436985f38e7a32f139adc8cfbf0febcce6e6f36f4319eb4e48

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c17a91e746da4562cdab9581a8cf75144ff46383d29a5f01c384f24a040f639c
MD5 3e7e0f81ac35d54d7b8cb7a6129a11a4
BLAKE2b-256 72fce349e04c9e567878a44847e57d1ee32d8d55a2bf0a07610ce079c1b7d48e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f814c04da02254c442ef3f3831679faa3ea13e7f3daee43e9ade23249a53da97
MD5 0f7c7c1e57bd13d4eb6e7778ba138cb5
BLAKE2b-256 2a063899745c0ef8c371cebb6103af6e991f3e2a0e17cdee85c0bd0ddb07a440

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp312-cp312-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd68a7f560ad3a7ac923abfeedc8e36627f64e1f73fbd0f8757c59bc3b4c9a04
MD5 3db0954e2d7ec0ecb1cba9b72e8bd0f7
BLAKE2b-256 30c3b5da4d8693d6526c06ca8cdb800a73378c384306d552a1632e28f9c6c572

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp312-cp312-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 54737246160be34d9b76a6c784aad2245d838ebf2a5dd68c98befb759599f43a
MD5 ca9d4fa6caeddd5e5eb7963734c07bf4
BLAKE2b-256 a56c0fe8c7ab2fd1e0c15ec994488798f810f65f011d1fcb322eb9a86fe7be60

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 665370569b94cfce2580c9ce3fe915a9f7bc81b1a8209eddfe8e0d723ee14669
MD5 c3bce4020a9fdd3792d5691d4654bc60
BLAKE2b-256 e05cb708f02cb9f51b02db4571167b55824daba2ef3eaace9079d57973cedf74

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43baa11f1c2ff11aa09a9966ecae19884b8aa1d4eb215b8b8b83f249ee8d919f
MD5 7d7609bcdf26303d8843563ef7599ffe
BLAKE2b-256 55f7ec3f515660fdf24b20d43354d95a9f82e7b75578fda4cdfddeb8de7a4490

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp311-cp311-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3af3f5060dbe88a754327bb65cca502152f52801c8a5f9e5ef21c0df9d50ba24
MD5 94fb56246d7fb5a543f342f3b23f44b2
BLAKE2b-256 a69934bb757611239660391379cf391152e955d80c176d1ad5e49f320ac22df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp311-cp311-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1f143724aca0b79ae2b143b7a0583391d44ded547a413cff3521fe276342292b
MD5 1adb953daddeef07fa7c1fb715c02625
BLAKE2b-256 51a01e3a11226ebceb799a8b2d5f0e2412685e64ae3a8ca97610deaa76d19ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 72d61d55588ebfd50d81d11ab7538be581e1d5193c36a9419dc9cdc1b0e28864
MD5 52d4f0a51b7a2a51e30b06ac0feabf72
BLAKE2b-256 fb387342c1439e59e07278058c5fd0b12ef690fe3eb63fe0e765299858b89525

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f313e3cac7492550ca5eef245872e11a68d605dd9323c671e0254a47653f347
MD5 32e6a1d36093c22c58121cd055f3c3f3
BLAKE2b-256 12be1f16fbdedececfa79f29cb3869f90dbeee71dbe444e746ee4aa4d3b6a56b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp310-cp310-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4ca685824250feac21a29dcd02cfd7e24c2319df897bce5aa21671aad0afbc5
MD5 bff8de65c52ba78a3bee8aae737002d6
BLAKE2b-256 55244f83a4c6d397b8ca6dc690d6411cdd019cd407bbf0a386172f341c2a288b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp310-cp310-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 044ae556cffc9211f420b3367b0e402276a7ab264a534a814efd26ba49fc1d15
MD5 511dea33d1b7b95dca8f7844ac680d42
BLAKE2b-256 8059b6a2b4b8fe15fe283b6e4da1e2bf8b65091d8309c5ab02e17e38ee43427e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 576addfb41f41864fc93404b57fc64ece1c7ccef5b4a89dcf13861c8cc006bd7
MD5 0821dba3373363c31c1e3da5c85d05a1
BLAKE2b-256 e5d55530679cf55d9e9d5ad2712e8c29b14db0789ba26774b7576631330d7a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5e92c5161155af128240cdc2aef2d240ee1572fa82fbb3916e828898db73b4f
MD5 fc10fa976556aa93d98adafdc41516c5
BLAKE2b-256 39e39e05657531c1728f0a6251b9abbb323877b7368dc70d65a728413dcd6298

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp39-cp39-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9112a1fd9632a81b5f17b2dfc5d5971bac58e090af6ff496f523c73f8243d7ae
MD5 7d8e6031f1a951f0d864db19573512c9
BLAKE2b-256 3207a58fec389b16a615bf354935ffd708495950886ddf141b2745b54946bb62

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp39-cp39-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 22dc3091975a01ae619955c89ae258d9dcbce4696f8f4d3d10e05b8b50d0d7b1
MD5 8681e4b9fcd8fc4e7165c972c0bdc0b2
BLAKE2b-256 56195a70b36855f8e07ceb5b3143475010e42f5742860051bf457f4b33da0a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp39-cp39-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f4cae070cc0a1ff129d9247e213e3a7d02f7c1be00c295dca8ab826ad905f24e
MD5 bc73ea0b3b5cee1546a285686a8b9694
BLAKE2b-256 319e93893ba5c1b9f96e4bbcdcf1afabf12a9e04020d80ffc2d04ad998c75c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 58dc102e7fa500a170e58cf94befb804daab817c2c36e4092d5cb8efd9123237
MD5 332ff6d6baa368d9ee4a8ed587826df6
BLAKE2b-256 73ed81d8cc69c8dc22a68813ea89cd45671b984b324b185a54b1b95410363ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp38-cp38-win_amd64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d16a943e9b9b7cec6f0eb2dcadd616aa945b21ce898e8585e7c76653e7c2c4d
MD5 961b328b5680f28f4df5dccebe95f1c7
BLAKE2b-256 a368d5cddd468a97fc4c8a1fecca9be1dd3f5fcf55899399507ac48a1502781a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp38-cp38-manylinux2014_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c2857eb7a09ef77d89494b8a42e86c8310730a717264f74dabf26f603a23ce21
MD5 84efe72188f01f9612ae465cf0acfaf6
BLAKE2b-256 d54599797135c71aeb3fd367a2f0c003a5296e56936b6b5517f6e54bad2d7791

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp38-cp38-macosx_15_0_arm64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

File details

Details for the file stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 d381fee64631ad6c072868e4480dceb7c1537e255046194b70ccb3a7a9a3eb96
MD5 7c6887bcd91d691fcbb401e605b35b71
BLAKE2b-256 c233ec8c025ecd72cbb571376a3a7ee536d0f5b2546ae51cd59b873c9de0c33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.8-cp38-cp38-macosx_13_0_x86_64.whl:

Publisher: cmake-single-platform.yml on WilfredSalmon/Stabiliser

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

Supported by

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