Skip to main content

A Photonic Quantum Computer Simulator written in Python and C++.

Project description

Piquasso logo

Coverage License Issues Pull requests Tests

Piquasso is an open-source Python library for simulating photonic quantum computers.

This is a research project, bugs can be expected. If you encounter any, please report it in the Issues page.

Basic example

import numpy as np
import piquasso as pq

with pq.Program() as program:
    pq.Q(0) | pq.Displacement(
        r=np.sqrt(2), phi=np.pi / 4
    )  # Displace the state on mode 0.
    pq.Q(0, 1) | pq.Beamsplitter(
        theta=0, phi=np.pi / 2
    )  # Use a beamsplitter gate on modes 0, 1.

    pq.Q(0) | pq.ParticleNumberMeasurement()  # Measurement on mode 0.

simulator = pq.GaussianSimulator(
    d=3, config=pq.Config(hbar=2)
)  # Prepare a Gaussian vacuum state

result = simulator.execute(program, shots=10)  # Apply the program with 10 shots.

print("Resulting state:", result.state)
print("Detected samples:", result.samples)

This code outputs:

Resulting state: <piquasso._simulators.gaussian.state.GaussianState object at 0x7f3ef3604ac0>
Detected samples: [(0,), (2,), (1,), (2,), (2,), (4,), (1,), (1,), (4,), (1,)]

For more details, please refer to the Piquasso documentation.

Install

Piquasso and its dependencies can be installed via pip:

pip install piquasso

If you have problems installing Piquasso as above, try installing from source with

pip install --no-binary=:all: piquasso

When installing from source does not work on your machine, please open an issue in the Issues page.

If you wish to, you can also install piquassoboost for performance improvement.

If you are doing research using Piquasso, please cite us as follows:

@article{Kolarovszki_2025,
   title={Piquasso: A Photonic Quantum Computer Simulation Software Platform},
   volume={9},
   ISSN={2521-327X},
   url={http://dx.doi.org/10.22331/q-2025-04-15-1708},
   DOI={10.22331/q-2025-04-15-1708},
   journal={Quantum},
   publisher={Verein zur Forderung des Open Access Publizierens in den Quantenwissenschaften},
   author={
      Kolarovszki, Zoltán
      and Rybotycki, Tomasz
      and Rakyta, Péter
      and Kaposi, Ágoston
      and Poór, Boldizsár
      and Jóczik, Szabolcs
      and Nagy, Dániel T. R.
      and Varga, Henrik
      and El-Safty, Kareem H.
      and Morse, Gregory
      and Oszmaniec, Michał
      and Kozsik, Tamás
      and Zimborás, Zoltán
   },
   year={2025},
   month=apr,
   pages={1708}
}

Documentation

The documentation is available at https://piquasso.readthedocs.io/.

How to contribute?

We welcome people who want to make contributions to Piquasso, be it big or small! If you are considering larger contributions to the source code, please contact us first.

We welcome bug reports, suggestions, and any feedback about Piquasso. To share these, open an issue or fill out the Piquasso User Survey.

Development guide

To install development dependencies, use:

pip install -e ".[dev]"

For document generation one should use

pip install -e ".[docs]"

Additionally, pandoc needs to be installed. To building the documentation, execute make html in the docs folder. After a successful build, the documentation is available under docs/_build.

For running files under benchmarks/ or scripts/, please issue

pip install -e ".[benchmark]"

For building Piquasso, one also needs to install build dependencies:

pip install 'pybind11[global]' scikit-build-core cmake

Linux

To build Piquasso for local development on Linux, run

cmake -B build -DCMAKE_INSTALL_PREFIX=$(pwd)
cmake --build build
cmake --install build

Here, the -DCMAKE_INSTALL_PREFIX=$(pwd) flag is needed to copy shared libraries into the source tree for development.

Windows

  1. Open a terminal (e.g., Command Prompt or PowerShell).
  2. Navigate (cd) to the root directory of the Piquasso project.
  3. Run the following command:
build.bat

The build.bat script automatically runs all the required commands for building the project.

Alternatively, you can run the commands manually for building the project:

cmake -B build -DCMAKE_INSTALL_PREFIX="%cd%" -DPYBIND11_FINDPYTHON=ON
cmake --build build --config Debug
cmake --install build --config Debug

Testing

All tests and additional checks can be run using tox. After installation, run the following command:

tox -e py312

Alternatively, you can run only the tests using pytest. After installation, run the following command:

pytest tests

Besides testing, we have several additional checks:

  1. We use an automatic formatting tool called black. To run automatic formatting, simply execute
    black .
    
  2. Moreover, we also use a linter called flake8, which can be executed by issuing
    flake8
    
  3. Finally, we use a static type checker called mypy on the piquasso folder:
    mypy piquasso
    

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

piquasso-7.2.1.tar.gz (709.7 kB view details)

Uploaded Source

Built Distributions

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

piquasso-7.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (612.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp314-cp314t-macosx_14_0_x86_64.whl (467.6 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

piquasso-7.2.1-cp314-cp314t-macosx_11_0_arm64.whl (450.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

piquasso-7.2.1-cp314-cp314-win_amd64.whl (764.3 kB view details)

Uploaded CPython 3.14Windows x86-64

piquasso-7.2.1-cp314-cp314-win32.whl (709.1 kB view details)

Uploaded CPython 3.14Windows x86

piquasso-7.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp314-cp314-macosx_14_0_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

piquasso-7.2.1-cp314-cp314-macosx_11_0_arm64.whl (440.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

piquasso-7.2.1-cp313-cp313-win_amd64.whl (748.8 kB view details)

Uploaded CPython 3.13Windows x86-64

piquasso-7.2.1-cp313-cp313-win32.whl (694.7 kB view details)

Uploaded CPython 3.13Windows x86

piquasso-7.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp313-cp313-macosx_14_0_x86_64.whl (457.9 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

piquasso-7.2.1-cp313-cp313-macosx_11_0_arm64.whl (439.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

piquasso-7.2.1-cp312-cp312-win_amd64.whl (748.8 kB view details)

Uploaded CPython 3.12Windows x86-64

piquasso-7.2.1-cp312-cp312-win32.whl (694.6 kB view details)

Uploaded CPython 3.12Windows x86

piquasso-7.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp312-cp312-macosx_14_0_x86_64.whl (457.7 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

piquasso-7.2.1-cp312-cp312-macosx_11_0_arm64.whl (439.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

piquasso-7.2.1-cp311-cp311-win_amd64.whl (743.8 kB view details)

Uploaded CPython 3.11Windows x86-64

piquasso-7.2.1-cp311-cp311-win32.whl (691.1 kB view details)

Uploaded CPython 3.11Windows x86

piquasso-7.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (608.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp311-cp311-macosx_14_0_x86_64.whl (452.2 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

piquasso-7.2.1-cp311-cp311-macosx_11_0_arm64.whl (435.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

piquasso-7.2.1-cp310-cp310-win_amd64.whl (742.3 kB view details)

Uploaded CPython 3.10Windows x86-64

piquasso-7.2.1-cp310-cp310-win32.whl (688.2 kB view details)

Uploaded CPython 3.10Windows x86

piquasso-7.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (605.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp310-cp310-macosx_14_0_x86_64.whl (448.0 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

piquasso-7.2.1-cp310-cp310-macosx_11_0_arm64.whl (431.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

piquasso-7.2.1-cp39-cp39-win_amd64.whl (744.7 kB view details)

Uploaded CPython 3.9Windows x86-64

piquasso-7.2.1-cp39-cp39-win32.whl (689.3 kB view details)

Uploaded CPython 3.9Windows x86

piquasso-7.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

piquasso-7.2.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

piquasso-7.2.1-cp39-cp39-macosx_14_0_x86_64.whl (448.2 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

piquasso-7.2.1-cp39-cp39-macosx_11_0_arm64.whl (431.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file piquasso-7.2.1.tar.gz.

File metadata

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

File hashes

Hashes for piquasso-7.2.1.tar.gz
Algorithm Hash digest
SHA256 561d0222aa689d940b863036bc9343b7f0a685c4028a5f4d815de9d35a8643e4
MD5 c50d29ea5507693f09412f12ae407110
BLAKE2b-256 df0b3d45dbe383d6c600e5655923dbccd996f64a0364e36e530cb28709951b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1.tar.gz:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f69079e09ea9c93d000354aa561d9b23a15905d739a773a66babddca91db0b9
MD5 14dbc9885085f5fa4c484400097a2bd1
BLAKE2b-256 172ae75405854f1e274744c54fa507401b1cbea0cc61f3e14d335b43bbfa7493

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e86b174fc2a40ccb4f876e8449664857166ea1f59c4547c139c57d82a88703e3
MD5 e5bfa1f50e8340b2e9f85fa1aa816116
BLAKE2b-256 f08e1fe5d7d59969f14f88d43124835554f8b42283b946c8012802629a1236bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 508ba93c7ed4263b495f72c378fde4f363d413432455abe9f484de76a750314d
MD5 3916efd06d22d643ce80cd7dc8f1419c
BLAKE2b-256 cf9fe5d9d99a2210f230d0480000d728f13cc8aba9be5b680a34763e47f93433

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314t-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 248e6f4367c6a606e71256ad7707bed1f4aa5312efe20f47442fddead37e105a
MD5 48c00b9154421f5ff7e1ba324e2672e7
BLAKE2b-256 c463621e3a896c5852ee454ea43540785b9e9d551a2f066a1f49738dde3a0ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 764.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9e968125d96af1fcfcf7d2b775865bf338eaef39bcc806c7ffd46919e30fcdf2
MD5 f5553b4c5114e63f0e35b5398cfbadf2
BLAKE2b-256 38f5a74f6f5df0079cf69748094afabc7c5dcb6983c5c0552fc5ea5a6b2b79ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 709.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9a67344baac2b643e900debaaca367681d1c640f49fa14c6d2e342331730b25f
MD5 d295bfd8e8a36492f08a3d5696eba257
BLAKE2b-256 6a211535c86752b62eb64c658250717c1a3e9ca1cb23a9c2a655ff9deb682e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63a25e7694c8f43891c29dff8f0f216aa51476f581ff24837850b2ca03120360
MD5 83d738baa534ae022f45514d03460541
BLAKE2b-256 442813c10e4ef6c24b88bb3d376a18746306f9abdd216a465f5c755de7c63f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08346e4c16321c753e22e2a80152f1de7fcce7e105b3f991d146038851c0939f
MD5 63ca3753e4906f587c141683ee04a168
BLAKE2b-256 209c865daf2ad6901821de9ae746a95eb0dd0b279610182b85d2093b34e75e2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 c4a21cba7119e8860ca9d52982c2e8b64fbabe52483417d35af88f631fbc8623
MD5 c5c517437c15bd50bf97aa0811ecc42f
BLAKE2b-256 f3bcf80567bcd0a6b5d5712263ee45310e54108d42659745fe3ead08cd77a6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc550b8789609eb890ab37f1fd8db84b27a0ac00ae997dd149294bdf57c37bb
MD5 3e9c496bedb86fe2dd844ff38ef336fb
BLAKE2b-256 4d6596e41e2c29f2a77d90ca3a8b0705c5fa702c8a2e48cd5654b1c29e5bb88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 748.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21016c49eabbd999acb8e7a47d84e85bfbca90d28d5afb900f2e510dbd95bfe9
MD5 949941f6acb4d398dafe6a0e10a1249b
BLAKE2b-256 32c4f3c547ffd6d7f45f003186576cbfb1ee4738d6cbe55aeb98f8518b0e3039

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 694.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5563958d3c3f83c5137af12203f1be9907a21d398b178748446a3901b8fb475d
MD5 5e26732d1083f88eb4fe2fbe8bed394d
BLAKE2b-256 3293f76f9256c443517180435350e026d990dd125be2d1559015410c5cd540e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f274f8fede7be39c777f5c3aace99c0e713103b8425c06d0d57534b53bcf8cfe
MD5 66533a8b7f67a4b3bb268440b3d69f66
BLAKE2b-256 59673271433e1892fc024fd892fa8b00cf3469da9dd7ec126e25f3fa3c625653

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f479b9a49e6c259d6d761d3e0cc3fe188eeefceaed8cc3a0d15edf332640679e
MD5 6e5b6448ccee1e14586d81d519c1bcae
BLAKE2b-256 41201cf61a9f9982e01d6c5f0fdec0a49a1e6167138eb73d79bd624fd9aa373e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 23be8642ece9ab65aa5f1460b20cdd35c4d8b0b23a762d6c58d85678ce6bb4e8
MD5 dcab06f5c1e4276519c3c8261971b6fa
BLAKE2b-256 dca682eae974ea4c18b2f995dd8b9092ddc9d13550c0441ddb62a953379a5a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eed33aab2a26d1785ef6c03245ef07f292338a458edda9337b66a0ab3eff7c8b
MD5 48732dd5a54ff23f813d91adad0c0193
BLAKE2b-256 e6c3bc9f4fb8c23dae10c30c88911294eb6f40e58cc93adc397ab32f58242eea

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 748.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2b36325d9674aa63a89ae9c3ae0285b79686ab894489f091a9229f9d982dcf0
MD5 bce833e5cb05b7240da22a98c3949a4b
BLAKE2b-256 5f00bfa1c22a46b375bc557bb4fa2a6bc77857ada07b89e7a5c2cc5b9ec3bcd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 694.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f18195d3fba5fb5ddce3a632a95ff15f04c5fca0f9a97b30f4b15d6baa06a4bf
MD5 de330b45da6db0d9c77c8600131209f0
BLAKE2b-256 be1617dc3c750489470592c283a7a1cd271c0f6b37e1696d8a3996c7d57cd7c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5409be3b0bbac1e6f3671517d323881b9405ceef1fc7afb5d311f7ec9453b7a1
MD5 39b87973ff7a7f92071cb50af86105ba
BLAKE2b-256 a7a48c25a4d896a0a9427a852efca698fe37cfef0b5a844b060ef3395612c0fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 359ec020d0126a12cca2711594d702fb02e7974f369f5a10552370362517d785
MD5 d5b602844f67d8345e0c34d825b4d803
BLAKE2b-256 bf8fa352c01fdeffa50d681f3d76bdcca126f2cbc0574d5ac18d689c3f39ea99

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 9fd3b6e85cccfc3576c536b12327c66aa2a59e16819659b8de339546dd85408b
MD5 828f726db647ea5dc7ffbbdc425c1abd
BLAKE2b-256 3e0231978651f2cb814fd4df1cc21d4afdb9c9dc4a5af6020b39da3fb790f723

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd8f0960be71cf4332fa6c594a5636f3c117e7004d75bcb4485610257dd01ff8
MD5 e6be57ee573d7d6fa04dcfdd331d6441
BLAKE2b-256 92f4e416ede0bc19950d9b36d9aff560a5ead909ca1d4252fe6c0a174b3aa029

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 743.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c35ef5268e5586c3cb6af9bbe4455128185c6b4e6928af067fa17e3a08d49140
MD5 5413eb664ec86dbdc80c849fefac1824
BLAKE2b-256 45e29fbdc9390d22126de72d3ccb9265249636d2ded0c6507e80c71d5490fb14

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 691.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4d90a6947d5c8639e4d787412f8693747d08f747821bb7019070efda09663bbb
MD5 17bf1a3e059e10cde3823a0fb7266cd6
BLAKE2b-256 01c9d893a04b5812f1a0fe73607fd509712b641009769f8296fadec46b40d2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d034c0e9eafcf269d4335d94e91a2b91bb585e5b87d0b186a6bc2321d76f291d
MD5 bcc52fda7187f55cd5d273d7a1312e35
BLAKE2b-256 c9d7e09085a168ef07ab2efe08cbb13469d0021fcfc909c837a7b5cdc84fdd0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61d6daad5840bd5a4e3e3d1b2e8057a73b06eee769cbb46d5a2ea21558e466ee
MD5 22331b6146b622b11688186986991104
BLAKE2b-256 4b459c6bfb8d31dcef466923641babf3986d452bf9d437dc50ff4b96c57beaae

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 133ae6520b584def062abe4d13d9d215bcca9b2f105077819e5b0e43f2406b5a
MD5 c992541d1134af1612ce46469cd60be0
BLAKE2b-256 85752549a34c6e6a56eb404256ca8eb254109f2af97c30ee8aa52642153cf93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f590086404abc698c56df75ffeacd4dc7e1aa03aa52f2850ed0c0e14a6fe4ca
MD5 86e3d81966f7514c77b3d56fd14fda7f
BLAKE2b-256 dea029466baef6ca08484d8fd481fd82cfb20bad3c01926a76811b2f8e438208

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 742.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78a65466b7d112b61fd32f93c256171902737d3e60104d517a0bfd548960b4d1
MD5 f2c8b69d818da4262d0b91b219e2a0ee
BLAKE2b-256 92c64fe5ce48d1b73bd47aa480b155118d83bf45ef3ca5ec97651f95b8b06062

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 688.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dbbb4fad62fbfc604146453e6fb0649844a475652fd1eeb5ff855b3484b5a09c
MD5 11aaa5ac30719545226f74dae3d2c1bc
BLAKE2b-256 6bbf3f4bc4f24e1fd0579ae849a12c474c0175098de2dc1c4e6d16226aeb5be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4358ee4e5d97a4751473a86b9c50e3dc72cc36429cf9a1f7a9ebb129704241e
MD5 f2d93cc33a9cf54b6a1fb0b37d65bcde
BLAKE2b-256 eb9ab38402075b6cfa75cdc2c294b990f86c185504112df30309a3e5efda8776

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf33a2324e78df7f4d6a038ed189c79e5784e88512beb119da883170887e2eed
MD5 4f726f9914303cc29c39b3d3148a089c
BLAKE2b-256 e00b9e9dd8b955d333470106ecb6bfaf4662e5ec0b302dd1f4101e8e1cbf9efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 bffea4eab0963f548a9fbc16a451479f47c0f5259c9117f3dd97f1bc13f68eca
MD5 84421d508e70eda822b0e74bbd274bde
BLAKE2b-256 8587a5f479d1b4d2ad0b5afff536e573448886a712e4211537a731944bbd6a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c85dfb639b48523325bdac2fa0a215db4a6473b2b4683c3acf5002c5eecf0776
MD5 f7a86f6f27c8fb92d4182971a3bc9a87
BLAKE2b-256 99f7fa9cf431a05f729f29aacc4cf4d906a37b5167f05740b2be08fc97f4d403

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 744.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a905438fca82fbf47475645fe5da97392aac0b94fc0dcca4cedd1fd7b9d0956b
MD5 a631229cb7d2bcc6498898471f9a4c97
BLAKE2b-256 aca6e3b0ba5b70857bfc7ea35eb9e207931d2bfe7a6e905fe88922af00b05b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-win_amd64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: piquasso-7.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 689.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c129590e5649dc372584fb96906ae4236f79e3bd166f0009dbcc007ea7f6076f
MD5 324d7676e365280c916e3f0da2146ad2
BLAKE2b-256 93cb3729dc0eb07f9e4ec680fa800d2222ceea358bf8ea6a64814f5e0b0d4a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-win32.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a82bac150bad70a6e9f7f2cd5cbb4f7b95449d7202fe83a2a9308c47969d1c5
MD5 02ed12c87f88285b762c318391e65474
BLAKE2b-256 fcfb6d7378d67a53a653789ff4fcdad39a8cc3fe9ab5bd755b46891efa9a5079

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0467ae43a235c0ae297b57655d7a70993d846e190dbe590f9b53c47800aebc04
MD5 d5ec70cf59135b798e6f70f7a0f3d921
BLAKE2b-256 9ef555f61868486aebd2b6fba2904406d363c9af04545dec8a0a14f6151a14f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 b3da95f0c6c558d9e339307aa7968b759a4d10e873bccfd4211c309e8b67dea8
MD5 74ed19eefeb15f136d42c143aeca921d
BLAKE2b-256 243959ac703f45dc970e40e316b1af7754d0bd98037b88a0392ab2aac3dc3703

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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

File details

Details for the file piquasso-7.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 681a0f554b00a7689eb6b969ccdfda0ee25b6e7cc0ece4ee65fe3d2aedc4a9d6
MD5 92801fa38dfe328afabc73c8bf03433c
BLAKE2b-256 30b6af6be4405cabb5d7b32319a63520ff5c56401f69ccbae9e3f5fb28fb8cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on Budapest-Quantum-Computing-Group/piquasso

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