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.6.tar.gz (179.0 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.6-cp313-cp313-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.13Windows x86-64

stabiliser_tools-1.0.6-cp313-cp313-manylinux2014_x86_64.whl (183.8 kB view details)

Uploaded CPython 3.13

stabiliser_tools-1.0.6-cp313-cp313-macosx_15_0_arm64.whl (127.6 kB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp313-cp313-macosx_13_0_x86_64.whl (146.4 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

stabiliser_tools-1.0.6-cp312-cp312-win_amd64.whl (154.8 kB view details)

Uploaded CPython 3.12Windows x86-64

stabiliser_tools-1.0.6-cp312-cp312-manylinux2014_x86_64.whl (171.8 kB view details)

Uploaded CPython 3.12

stabiliser_tools-1.0.6-cp312-cp312-macosx_15_0_arm64.whl (127.6 kB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp312-cp312-macosx_13_0_x86_64.whl (146.3 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

stabiliser_tools-1.0.6-cp311-cp311-win_amd64.whl (154.5 kB view details)

Uploaded CPython 3.11Windows x86-64

stabiliser_tools-1.0.6-cp311-cp311-manylinux2014_x86_64.whl (171.7 kB view details)

Uploaded CPython 3.11

stabiliser_tools-1.0.6-cp311-cp311-macosx_15_0_arm64.whl (127.8 kB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp311-cp311-macosx_13_0_x86_64.whl (145.7 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

stabiliser_tools-1.0.6-cp310-cp310-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.10Windows x86-64

stabiliser_tools-1.0.6-cp310-cp310-manylinux2014_x86_64.whl (170.7 kB view details)

Uploaded CPython 3.10

stabiliser_tools-1.0.6-cp310-cp310-macosx_15_0_arm64.whl (126.7 kB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp310-cp310-macosx_13_0_x86_64.whl (144.2 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

stabiliser_tools-1.0.6-cp39-cp39-win_amd64.whl (159.5 kB view details)

Uploaded CPython 3.9Windows x86-64

stabiliser_tools-1.0.6-cp39-cp39-manylinux2014_x86_64.whl (171.0 kB view details)

Uploaded CPython 3.9

stabiliser_tools-1.0.6-cp39-cp39-macosx_15_0_arm64.whl (126.8 kB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp39-cp39-macosx_13_0_x86_64.whl (144.3 kB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

stabiliser_tools-1.0.6-cp38-cp38-win_amd64.whl (153.5 kB view details)

Uploaded CPython 3.8Windows x86-64

stabiliser_tools-1.0.6-cp38-cp38-manylinux2014_x86_64.whl (170.6 kB view details)

Uploaded CPython 3.8

stabiliser_tools-1.0.6-cp38-cp38-macosx_15_0_arm64.whl (126.6 kB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

stabiliser_tools-1.0.6-cp38-cp38-macosx_13_0_x86_64.whl (144.0 kB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for stabiliser_tools-1.0.6.tar.gz
Algorithm Hash digest
SHA256 9e23f09d6da385a0fbbcda82eaea06cb31af9715c73ff79f36fac80248e30afb
MD5 6b86902438cb6711860680ce2f9614bd
BLAKE2b-256 bd4aac7217c266a0ac3e9f3a942ea76b50f2c1e53735139a9cdf74c265a17952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de9a180f9965270f61cf25a21d10b2316c99dc4fcb467785b33991e45b894962
MD5 44f212d9545032f670e5fb4d629b9931
BLAKE2b-256 80b9fd0f86addf0c9a28cb57496463d49f2f8b0de4c34df46ee59f8432422b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp313-cp313-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba668727b5ae225bc210e29e5de230b53bcf1b6127e9ee5afb8b87b31ee80757
MD5 6f679a3530e9f553b1abb90b3572ea77
BLAKE2b-256 8a239403202d30f35045c93850162980707103557f31d09a8a8c60f5ae9e8bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 dc8a0bbe3ca0de1a4e651f5e30615bd7f2ada9894d52e911a0c238baf6e44640
MD5 68accc16aa2d4c29fd3176037bc25425
BLAKE2b-256 5e68bdb218c5e84d006cc35f0bdad97b739b00c3a86d72519ca2a73722f50057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 65c8bbf4a6f350834df68403a690dd23f0cbb5ebac5d22ac08e8b0c2434aee9b
MD5 b2c91fdf67ea5a1355eab17cd1757768
BLAKE2b-256 554724825e8d80581f718738837d0cc3a674a6c9c6b626ca655c665f13817350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f7c9bd22532a6d9e0e7c2e63c3fd510fe2375151fef76d971e02ec54f1c1d3c
MD5 82b506c4ce167c4df9de6ae5bab0d0a0
BLAKE2b-256 94edc17e7f898998f5a59014bdadc2878b061f574eef66a1e5bff6d8cfa7fa7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fd502be5e9aea1d7698390178069a9711bbf8180029843fdd745ddbb6d7e986
MD5 c1e5970791afeb1de7dcea16f8bce562
BLAKE2b-256 a2da9efa570b401a1a6354f520461461fc199627bd9f8077c5ef1859b4ac31fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5151abd16605a8f4bc92e04f1c0712c725615767004ae1553ae7ad56de64f30e
MD5 09fa673b86fad059b2b34044be107e86
BLAKE2b-256 6d55a6fbd32eed726ef0992e81b8e41817f9fd363086a6f92577bc9a8ea24e43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 32daca578e28057785ebdeb41b11602dad38a12a48e79f03d2dfcb0f9ba6d17f
MD5 b66970789758372a76d7606c4d7fa5bb
BLAKE2b-256 12f172baad3f118dca07e6599881267950e19d04a3e205f46218cdfdad352a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8a4dda659e082686335907bbcaad9a854f7c9c6a9585aacccffd02373ae44d8
MD5 da184b5dad63997c9ee2c761de8871c9
BLAKE2b-256 ef53a73908fa8ab22eb296922620fdaca88600a80fe1a16f2b11e82820a5a0e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f1220ab03fff3ccbc016758b7c89aa05ca66bd0fc7de371d53dcf60571d6653
MD5 486e28f473a06e9c5de7085c146b6b66
BLAKE2b-256 49746a9a239f3315dd36e34a2c2736f561f78e884750cc83e8c201d9249529df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9e848968174b4a4f16a212ad9c0173aa177675e1a19aa086ffc2e0898fbdbd41
MD5 9e77439a2b752d2bcebfa2d858e9faa4
BLAKE2b-256 d14eafa0fddcddd08005cd06187648f869af67d8a955437d6dd11c00b51b423e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 219997b321d16cec26021d997e02afbc9d6fa6cb24722a33d39f4faece825dd0
MD5 396331caf004155a183caca2bb66d3f2
BLAKE2b-256 f7560b9fab648ec863bbd648466ee0290580315cf357e06449232ae0767053e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d405f95ee3c5f6bc01dd9a12cacaa54428b863909907d3ce3c081ea854e5f5da
MD5 22b4fab85fc9a1a4b7e2a97e7681d4c4
BLAKE2b-256 c1c557d6f37e8e8f3015745ae31098a936490e176bbf669413bb44005bc6cf7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7223bfe6b7a87ebf3462135474932619a51da4af95168bbb7b2114a32d841f2a
MD5 399824f13ea6bdce1e2aa8ffc5946010
BLAKE2b-256 dad75820031ecf794b8fb83a09c35deed0643d3e608879a4c984968482909f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6aa446f10831bfd23007bf6e1c0ae41baab27ab06fafb12806d9d01230bfa5b3
MD5 76f068f65fd34b08923f2ef2c5692c24
BLAKE2b-256 70faf7cfe1c06b68069e2305b507068056f9c7264906261d8ff7d8343e51fff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6463a29d784f8696bbae27f23fe05308921001fb9af97867e4d7d2795ebd2337
MD5 4a1b0b1124534612d965fed057bc0420
BLAKE2b-256 7f90852b640c909aa8768251f5a2f55bf7879a41554a87c9fc0a12e9b6bfb74c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 96dfa0805b72bd7e3de828490775cf2c72d0a9aa3f56e63f3860fa9de71b3efa
MD5 2ba28f102eb9452c31b451a7e9ca1e25
BLAKE2b-256 28b3ee74a93b889438f2b133df3b36ef77e2cde1f747155c20c45cee07a695e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50d9db9aef07ba339e61c0d94cb9c5229c7568b9583e6e4ba94ccee61d422f49
MD5 4d6eb5f933247c8db125de6d2dfe250e
BLAKE2b-256 e8c2db0fa19e442dfd54703c926cb4db4bdfc49f2eab245fa8630a9dabf71e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3b8d0d589e25b8d3cbcbb980e1922f4f46330c4125a7305b6b7ee3a92e947cd1
MD5 b9fe33389905d6fa7b8a219302a0b407
BLAKE2b-256 dc48e7327a57df0a250ad457c2b4fd495ac67edde98a65793b8367b927f0cf60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 acb3c878fd57036b2f2aceef0683316eba3bdb5a76b1c35793b135598c9eb559
MD5 66817b5a921d2225b3c2b59a6456ec44
BLAKE2b-256 dd5df7679e8314137f27a5387531dcd5a766e824d2b76a69c70093187c55eb0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8bb65c4a53587a988556bde1f603c7963a1bf99784fda16edd77bac89f97ceae
MD5 6776d81d511b4a5499f5cc7bf2e6fcff
BLAKE2b-256 86a63aa85378a0a2eafce7ab01e9ac7855467f5a56be28d5d562a4aa11730b07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ac66170877a1e91a07de31317257e50f70effcec473d6e27a22a49f263be54d
MD5 378ac3c3ac064737f48a156f6aaf4c17
BLAKE2b-256 44bf5f367fa32b7a4b28b5ba22cc1b03547c83aaa82f4fde231772e237b03899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 09de25cdc56c67c761ba0fbd590dbbf320b1b86b3fe238c02d75d2a44800c633
MD5 a7f8d8f71e2eebe3d1d67318dee8cfb4
BLAKE2b-256 3a4a9687ab3494c8f910ba176ff1c634b31b27290f4633d879f24dc2e6164a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.6-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 061dec11d9eb92962e6433aeecb2b8a51d46bb632b7d1ea349e0b0100bf0f4a1
MD5 82b0ca9542fe5d769e89c2a6a15147c3
BLAKE2b-256 005f4228c618ced1ea07d6434c606c74581985165dbacef92447788b1b0ea9e1

See more details on using hashes here.

Provenance

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