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.7.tar.gz (181.5 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.7-cp313-cp313-win_amd64.whl (160.5 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13

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

Uploaded CPython 3.13macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7-cp312-cp312-win_amd64.whl (160.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12

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

Uploaded CPython 3.12macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7-cp311-cp311-win_amd64.whl (160.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11

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

Uploaded CPython 3.11macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7-cp310-cp310-win_amd64.whl (159.3 kB view details)

Uploaded CPython 3.10Windows x86-64

stabiliser_tools-1.0.7-cp310-cp310-manylinux2014_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.10

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

Uploaded CPython 3.10macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7-cp39-cp39-win_amd64.whl (165.2 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7-cp38-cp38-win_amd64.whl (159.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 15.0+ ARM64

stabiliser_tools-1.0.7-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.7.tar.gz.

File metadata

  • Download URL: stabiliser_tools-1.0.7.tar.gz
  • Upload date:
  • Size: 181.5 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.7.tar.gz
Algorithm Hash digest
SHA256 27d927819f857dbaa6431ca2141c9ba10da8820c2c01186d547a9c232afbce08
MD5 615d90a572ce8d985c09edd561ca0f54
BLAKE2b-256 47a1c537dfd9cf1175475e28a795aec5ddd6b90f0a469328dd69941e422ecf24

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7.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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7346a800722d94a3ea71abed8edc75e7544e8910fa245e7ab02a563fc6c249e
MD5 05bd9906400824844048c1fe5c50c698
BLAKE2b-256 51e88742f5a0578c1be14a8a88c9506d5640cd075d54f2f83669b14379397046

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp313-cp313-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9689cef6f300d6b434687354abb9e6612299afa6ffc4e7f30adaf7961cfee0ae
MD5 659833aaf1071a3f5240bf708cf7f306
BLAKE2b-256 9d0097931d0190080aeabf4efae32ca7c910550da56f2f89b6f09da6b46f8061

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 16feeed6c421489b5cdf9e6b8f21af4372c49c200ea1272135ba0daac8966c79
MD5 5e691032e6a2f9126a6ec6a78b87ee80
BLAKE2b-256 1bc3a8cc297bf9c23b419c8347beb80d7d35f9e0ea124e7c3dd740a41776e8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 341174aa8c1c967b64d7431f2e5b72832c64a3a0393c3d7611c1bd8fbd101aa1
MD5 af46f4978a2704c3a09e1719986daa2b
BLAKE2b-256 ef18c55edc7505eaa992ea27c43166ff238efc1ebe74fdcda37446f863769a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cf19537dbc8288ee368971d8783d9842947563af466cc775c56f7b0a9a700dd
MD5 ad23e19b643d7ba067cf23ac50562a85
BLAKE2b-256 06783e344a26357032af71d9fad09c527784c874ae0c724b00e56bcd6c7f41f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp312-cp312-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a80e61da4bc3c3c83f1dcfb3ec42f30766c805f50c8bf9835956303f2e5d120
MD5 287a70fd99a202b3bfa38ff5986db61b
BLAKE2b-256 158b60742336ef700be38bac8d490e89c6e63d5a33df2e89bce1e2d9bb6a6190

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 45edb9b5821f2b9884a7220d128cac764cc81fc5d389aa3f0c66df6f4ae28607
MD5 546f1e3c68502856016d1b29ee219f6e
BLAKE2b-256 89784c32d6480f4f4c71bb60f5030c1b890c20d7bbdeadb007002005480799c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1d2cbf8d4dec8b0943031ff9df384184e7c863e82f4ba54fd0201a3806b6cc8a
MD5 698c9125d32df2c32725c80d0ebd1864
BLAKE2b-256 ab9abf8edd8d7fe007cb6ce853a17b0265cbdf3ecf697a7446d388b3796401a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b10681e060605aac79e8a589ac24c493b46aa90f4280ee832212c62a37299d64
MD5 1b37f97ebf4966170e8da898147371ad
BLAKE2b-256 b80d7f4ceb26f6d9c070934eb23212993ea74919eb65ee0a0e2b54554b5c0220

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp311-cp311-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6a5dee4eb473d101b8a830ad214d388286310ccd66a60879bda6ace2f0905b8
MD5 5ee8684428c52bf8f00d6fb31a98a509
BLAKE2b-256 8fcf6c038e5d411bb82044e710f71c924e1ce56181eb97a989d2b314d738a8aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9efcfd785ce35f2ea8b400ff0f1d8fee8e8b820ddcae606bbefda2d1db590496
MD5 a860ec2b98d610f25065ea72442f051e
BLAKE2b-256 89dea54c4082f7fdd843c9dc54eef769c04d265f48c11f5df6de6a5e40829bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9fac97e7b85bb90892cdd0aef63455498cb899df4d47957b044019a202063b09
MD5 9d0458695dd98e9d0b62743922055e40
BLAKE2b-256 e1aa7a8455c66358534874274b04e8f17c26ee11da3ecf702e684f1cd3fcb96c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5d5cba5bd21cff4a5fff7a687d1b5e1b0b023a38f6bc2a1af5f3266f17fa44f
MD5 7d1fc34f9f3a716670d0e9dba1c7e573
BLAKE2b-256 aa78efe410b7fdbf725d6975dae753bc8ba37705094cc66ec3942243ac372113

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdd31f113eb2da1924b63e6feb597a39e25dc62f6d3c086d81744e0585dbda64
MD5 8718a62f641d5d0581f5f581ff8d2e7d
BLAKE2b-256 22d53b708b22ee01e4eba61507a468fd6fc6b2548038d596fa0a52b34fa683de

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 08e245cb3ea801dcfccbce3c68640a1e0785a37bdbcda65563a9e6ad9b178e37
MD5 f428e7a6d06eafad9d3783b7d45de3d1
BLAKE2b-256 6fe80143958b8e4fadb82f881856421368e07323e678f2965b3110d3e85ecc1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a61cb0490571e494ad223d00027bcc4b2f35881b3e35f4338d7d024d4cbce384
MD5 ecccb4646ec5901c076c794159ab6a50
BLAKE2b-256 18dc79e0e3711ff0feef5e991d9aa5539020c2fd900966acee5406933009145a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c318027bffd598bba1c897fae805daae2755a32b546bb20ec943dbd36c2a4ff
MD5 64557909afe20466c88c3435f0df2e13
BLAKE2b-256 2a9f014bc90230ba351d4461d01c024560a92504e6c8e3c7dc7bdd9d72ff9bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ba6a62493cbc32ac8d501fd6888d031c7f09f280b91f0d620323921c5df35dd
MD5 1f09d170ec1fd0023061f3b18ecc13ed
BLAKE2b-256 f01894853a7235963566b80c2557556ea65556b35ef8c55bd3bbdc1cc84bb724

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f75b50630c1c45d6421eb543fe6ce2950428f0c2975ab33ebb925859c6ffe2bd
MD5 535c0316690da785e870c013b7c72ff5
BLAKE2b-256 ad6d55dd71ad92cabe8bbb7b65131c9fbf860282d29257346914ffd894256b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fd3406a002ab5327336d2c3ecb280c43bf53533b633c352683addab0f32ab191
MD5 19476d071c4fc2f05ccccafe81b715ee
BLAKE2b-256 86bfab491fd63218a59aeab116592c0f48db4cbcb85fdf2feb04e1fa6689f41e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 11e30a0b17d712fdc1a3e9325d2ea3a33d9cefbec73f811385a9e92b977b78d9
MD5 18cfb1583ad21f3c9930bfb5060d4520
BLAKE2b-256 fbdf01a6796e1b3c4d1334786193f00cd3e5ef73f6eb17804cc4ba6e63540df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62369123f77d8e94519c5466d626c7b39d13c89f14748e18a79289fcb91f2c77
MD5 03aeac9d6686d26380d1a981e57def4e
BLAKE2b-256 68d68ef60b47a45c8b49ddb305513aa3bf5d8e3734fd94edb05caad73e63e4d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1c60c357b5b738a49b1c849c30dc331bc86e762f0c9afb110b40e96ae8b84bc0
MD5 c98dc5481f72193b19c626b72607e836
BLAKE2b-256 a7f713ab8b942728f0f57015eeead5ffb8d1835874d73e6949b94ffc690df6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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.7-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.7-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9436b1820a013b5cd39f1ad6a50387ae546fc9f6180c39383f8e4a7534a9aead
MD5 e0a4c33aa6a708bcb1dbcd72196682db
BLAKE2b-256 53b2550ea03625df6060c89d2abea1dc5977eb983430c09e55551cad972e5d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.7-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