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.5.tar.gz (170.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.5-cp313-cp313-macosx_14_0_arm64.whl (132.2 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

stabiliser_tools-1.0.5-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.5-cp312-cp312-win_amd64.whl (158.0 kB view details)

Uploaded CPython 3.12Windows x86-64

stabiliser_tools-1.0.5-cp312-cp312-manylinux2014_x86_64.whl (175.5 kB view details)

Uploaded CPython 3.12

stabiliser_tools-1.0.5-cp311-cp311-win_amd64.whl (157.8 kB view details)

Uploaded CPython 3.11Windows x86-64

stabiliser_tools-1.0.5-cp311-cp311-manylinux2014_x86_64.whl (164.4 kB view details)

Uploaded CPython 3.11

stabiliser_tools-1.0.5-cp311-cp311-macosx_14_0_arm64.whl (132.2 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

stabiliser_tools-1.0.5-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.5-cp310-cp310-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.10Windows x86-64

stabiliser_tools-1.0.5-cp310-cp310-manylinux2014_x86_64.whl (162.9 kB view details)

Uploaded CPython 3.10

stabiliser_tools-1.0.5-cp310-cp310-macosx_14_0_arm64.whl (130.9 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

stabiliser_tools-1.0.5-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.5-cp39-cp39-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.9Windows x86-64

stabiliser_tools-1.0.5-cp39-cp39-manylinux2014_x86_64.whl (163.1 kB view details)

Uploaded CPython 3.9

stabiliser_tools-1.0.5-cp39-cp39-macosx_14_0_arm64.whl (131.0 kB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

stabiliser_tools-1.0.5-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.5-cp38-cp38-win_amd64.whl (156.7 kB view details)

Uploaded CPython 3.8Windows x86-64

stabiliser_tools-1.0.5-cp38-cp38-manylinux2014_x86_64.whl (162.7 kB view details)

Uploaded CPython 3.8

stabiliser_tools-1.0.5-cp38-cp38-macosx_14_0_arm64.whl (130.7 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

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

File metadata

  • Download URL: stabiliser_tools-1.0.5.tar.gz
  • Upload date:
  • Size: 170.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for stabiliser_tools-1.0.5.tar.gz
Algorithm Hash digest
SHA256 52f832b7d8b44bbc58b0d7cc4a4d32e0dc0f31d3547b6b60681a165bbf126ef1
MD5 3f800cab48bc84fbcf838b8be01761a9
BLAKE2b-256 c962f2d21e12ec8e0a027c6ebc017c8ab3b2bb083f3b2045d7fe366f507ac467

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.5.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.5-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f33ef1f7a1df2312d9f6891688eca0340ba5eef656738d54553805c4900722b4
MD5 2aee2a4d815ae2c4c0412e871130cb72
BLAKE2b-256 6c4f9e131db6b286946e073b986598b15611046b9e0d9750d861507ecc5939c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bd3a14e0f7912d8c98efef74dea4c3239ff7a49453472380a3237506a73730af
MD5 b74cd73fc23daaf5c6225cfe439c9265
BLAKE2b-256 c213529a8ea0d6f0477a089ee327868303993123836920c06905744d819322bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3c229ca0d17a432eb802f3a807173a827194b94841fbd61a6145bafd2c76fb2d
MD5 5a89abcf6ae8cce9868ad9ee0f0628f0
BLAKE2b-256 d254850c906c10d7599587a137b3fce4a37ab04f5bf5f4b50c50159176c00da7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp312-cp312-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b8f7f6ebc07810b3b6378133b44c53cbcb955cbf7700380dd2a2fe0baa650c9
MD5 825cabb09845a96b00d825e0f15fa582
BLAKE2b-256 89c882385e43c30d06bc68a18396d22a394c7df3628f9fd3c81e933aa96d775c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5830f19a569def0bc8eb904d115d104f2e2caea801e033fab6eb3cbd020159ad
MD5 0a239cc89e08e964fea8dca85ea13356
BLAKE2b-256 04abeeaa00fd69269d40085023f50430815da849135e517af42784bf57a72817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp311-cp311-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d90641db37e4d1a288e1b5200f08b457eccee6e311fceb2e32878b979edd920
MD5 c724ff586826414142903cb99f933946
BLAKE2b-256 4b70ad6dd89366f8f9ef02bcbeb30c4c90904b036128d7c5c5431a93749113ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.5-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.5-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7c123b84c53f5fb5cf181d281d519364afc90c90602e0359ac977901118ce476
MD5 7bec36ce013d55b32675456cf1307ab3
BLAKE2b-256 000e2f408a6eae9ae2f5c04b9c74e287c255cd2ad7b95f666a2d0a517b75e3f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 27220789e8e16e5bd12bafa9c36406c88dd91433c05232acadcd3b95b90bb948
MD5 e9ca956dc8e28636230e3b548387edda
BLAKE2b-256 da71ea42771be68fa120806a2ebc9169b3d7879220e0a8b24fe6244dc8cf0ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 06b4ca438d93a2e4296c82fce629a5093c6d2c54c1c915b985f544799a750b35
MD5 5f60eeaecfa5041485a085963b561406
BLAKE2b-256 c82e5d11112d2f0422e2ccda2334df12d47b20fc629fac3f7272c1e598879308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e05af64fd07cca047d8bdf8fd3c39aaee68603604f5504dee1169b73030b7333
MD5 f71b74dc65f332c34984b8f9ae209c00
BLAKE2b-256 347d2efa67804894928c63284514e276cfdd36a497b4e35cf254c5de09fa4edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.5-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.5-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9c27565a5727d46d9bb9996923211ab203f99ca79e0061857392cd89e93a02ad
MD5 52e8682d17a97b14d4b28ff5c45bf16b
BLAKE2b-256 4d6f445f1098f83590f438e1daed57e6dbee538f58585d51273b6cb6dbdc171d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c5f8e13a61b36c8287571f03f3faa8db48ee65c80cc147cadb0da058692dfa3b
MD5 9b968bcdc192b831bf23c982cfaa96ad
BLAKE2b-256 a785777169b2ee6d59ceb0bcef3d7cd80dffec6385dfcf5d5a8061f584f6e7cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6b65e0e70f9b5b31d5e1e5af8265f51a46713351ed414f5b6ea8233bb76483b0
MD5 ebfb1c10c396cf40df6d42730f7f131b
BLAKE2b-256 dcacd5c26339db1e88d3c00d704019cc2048c69a81bd7650a43b6b59dc8816af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db434281f3a679ffb6306266c5f6ab5a1dcf1a97b87880f89c457c0cf8e4f64
MD5 d32ab3f17e4a2c639042084f109c8a26
BLAKE2b-256 776f6012953f0d788a963d3817036412fe2729886a8a403e10c29844b855d941

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.5-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.5-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9e040ea91180dae05d1021523ff10d5948e08b3d480781810457fa0156706bbc
MD5 77310757380330e69996e62d02bcb1c3
BLAKE2b-256 ba76eeb23b0ff86b114da1df98e8753c2011074488550f5b3238874da4b5a2b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b49467b08eff0cb1b296b276f0cb6d8a3c69fa6c11d76c358edacd2ffabdedac
MD5 7cb9e7a3d4cc98dd778a8cdbe990be10
BLAKE2b-256 ff251a849125ece2783715aadec6d3138c87e0c496e28f291f307cc11d22891e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9e17aebb25b3becac5f7c38f11ef6ee38bb36b06cd429e0205d18b9b7b44a0f1
MD5 4076963067f1e000c71afc942159d044
BLAKE2b-256 48dccad4a7d45f088a1a077524d0081d08b086dbfc8ebf94c705cebb2e062765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc95e2bdfc2d100feab90830b76d90bed389a753633a788c5b731f7376c7d9b3
MD5 f8f41e6d5a8ee3cb9110d39f02aabd0d
BLAKE2b-256 09967ac00e445edd75a377d3dc70ece7777d5f89b49346c5b92ffb03a427badc

See more details on using hashes here.

Provenance

The following attestation bundles were made for stabiliser_tools-1.0.5-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.5-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6927dadfe9d6d0507f2a6fc6a6646da5c5dc0f67e5fd1257df4fbace8e9a8108
MD5 a75d2565aaee78b5efb6d950f304fc42
BLAKE2b-256 1b35e142103f887e654a94dd8a610631a79092e6eb55dca4609c8ce6ac91b949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stabiliser_tools-1.0.5-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 83d3eadf31056dcd07bfe78e2246ba655dcd58295cfc17c5426ea31fcd9dc58c
MD5 4292ed81ebdc88ec8cf44b93459fad32
BLAKE2b-256 71e9920813960d6e36e3ffa4787ac6534443fa43864552481e43c1638308ce2b

See more details on using hashes here.

Provenance

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