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.2.tar.gz (705.4 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.2-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.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (613.4 kB view details)

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

piquasso-7.2.2-cp314-cp314t-macosx_14_0_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.14tmacOS 14.0+ x86-64

piquasso-7.2.2-cp314-cp314t-macosx_11_0_arm64.whl (452.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

piquasso-7.2.2-cp314-cp314-win_amd64.whl (789.7 kB view details)

Uploaded CPython 3.14Windows x86-64

piquasso-7.2.2-cp314-cp314-win32.whl (748.3 kB view details)

Uploaded CPython 3.14Windows x86

piquasso-7.2.2-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.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (611.0 kB view details)

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

piquasso-7.2.2-cp314-cp314-macosx_14_0_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

piquasso-7.2.2-cp314-cp314-macosx_11_0_arm64.whl (441.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

piquasso-7.2.2-cp313-cp313-win_amd64.whl (772.9 kB view details)

Uploaded CPython 3.13Windows x86-64

piquasso-7.2.2-cp313-cp313-win32.whl (733.9 kB view details)

Uploaded CPython 3.13Windows x86

piquasso-7.2.2-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.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (610.8 kB view details)

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

piquasso-7.2.2-cp313-cp313-macosx_14_0_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

piquasso-7.2.2-cp313-cp313-macosx_11_0_arm64.whl (441.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

piquasso-7.2.2-cp312-cp312-win_amd64.whl (772.8 kB view details)

Uploaded CPython 3.12Windows x86-64

piquasso-7.2.2-cp312-cp312-win32.whl (733.8 kB view details)

Uploaded CPython 3.12Windows x86

piquasso-7.2.2-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.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (609.5 kB view details)

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

piquasso-7.2.2-cp312-cp312-macosx_14_0_x86_64.whl (458.6 kB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

piquasso-7.2.2-cp312-cp312-macosx_11_0_arm64.whl (441.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

piquasso-7.2.2-cp311-cp311-win_amd64.whl (765.0 kB view details)

Uploaded CPython 3.11Windows x86-64

piquasso-7.2.2-cp311-cp311-win32.whl (730.9 kB view details)

Uploaded CPython 3.11Windows x86

piquasso-7.2.2-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.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (610.3 kB view details)

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

piquasso-7.2.2-cp311-cp311-macosx_14_0_x86_64.whl (453.0 kB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

piquasso-7.2.2-cp311-cp311-macosx_11_0_arm64.whl (436.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

piquasso-7.2.2-cp310-cp310-win_amd64.whl (762.9 kB view details)

Uploaded CPython 3.10Windows x86-64

piquasso-7.2.2-cp310-cp310-win32.whl (727.5 kB view details)

Uploaded CPython 3.10Windows x86

piquasso-7.2.2-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.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (607.2 kB view details)

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

piquasso-7.2.2-cp310-cp310-macosx_14_0_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

piquasso-7.2.2-cp310-cp310-macosx_11_0_arm64.whl (432.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

piquasso-7.2.2-cp39-cp39-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.9Windows x86-64

piquasso-7.2.2-cp39-cp39-win32.whl (728.6 kB view details)

Uploaded CPython 3.9Windows x86

piquasso-7.2.2-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.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (607.0 kB view details)

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

piquasso-7.2.2-cp39-cp39-macosx_14_0_x86_64.whl (449.0 kB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

piquasso-7.2.2-cp39-cp39-macosx_11_0_arm64.whl (432.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for piquasso-7.2.2.tar.gz
Algorithm Hash digest
SHA256 da3755fd76099a7eaec8e8fef7bc3dd0d0a15d95e1bdee1696c56e89b3c4e7aa
MD5 6ef95f0089875bd6a8fd2ed595ed7fed
BLAKE2b-256 c7adf38346f91b55c6035ed0088fe1f4013e0d3656b07d4fa760b05223fce9fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2.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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41d269f2bc5af392492b0df8f2c352aac4c06b1a367cfc04981689c054acdcb2
MD5 890862cd9a50a9e7ccea27b1b3bfc036
BLAKE2b-256 edfe958b908d444b6bae5197eb50b8c797884c425c20772ce05c63bda6f5e1b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d663e4584fbbd36e4cd28b4e7a943ddb86b581408f634b679b8f49544391ba03
MD5 be7d57ac62056e936c1c7512bce675b8
BLAKE2b-256 391efc7957529c76bfd3300c7481e4c8bba229c91221a1030a02107a59f6f449

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 de6296cbaedabfa026fa5bffb4b785bde4c13fd67b8e81977a5cea7b02742887
MD5 bed3eee88d1b77b380c14adb0a9116db
BLAKE2b-256 2d985849216cfe16d2954f6e2100ffbf942c665aecd251aac59b44282bf1686f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a289c6b8e8777fcd23e586babf2d6f29309025e6ed002578e45c85db1e0fd4d
MD5 5272c11cf91ddc8274030a5f25f37b56
BLAKE2b-256 5c5e102a94a15d1c80a1ce7602cb2ad8f76b8c60d15d8c6a2cc247384dc6788b

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 489abaef74ced97b41714531370c0407b223ae2315e8c005e79713302ab76d49
MD5 83a33256222750281a5f8c9b1228a7cb
BLAKE2b-256 c72c398abd4d6f1a2c558307bdc65f9e65ae090135e115547a8f516a3b6bc28e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 652968a334ca020a01474c71b1c3077b57c5289c80299fd5565c30c7727dd18f
MD5 c32eb38fef0fa0c9e70c8e4956308af6
BLAKE2b-256 8883026a24c777984e916012879af99bcb0038d20253cadfd20c0708413f6c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2dc90f46059ae32fb9526f9371fd1cd586c291e13dc1b05fdcb240e1434b89d
MD5 b8c3a35f8383d779a2899e20233b5f67
BLAKE2b-256 df0bb614d1c1e95aa55e78b53b4541d74b9ac0b3e6cfe64f4f05b4ed5a219dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f74c7b6bb4e5c11a6fa7d9647396b447ad18c6243cfbdb445b8e19c518cfd0f
MD5 bd7f9fdfc2a89d4a9485aaa4168403f3
BLAKE2b-256 202d1af210694328300cf0d74a28443200e99a90a539d2300c546ad3ae0221f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 04cf0cfb8ce57d2d741edf819c9509eb569f6d4ce759e9e13dc8ed95f92fb3d6
MD5 119f27a5a0aeb23f55db9c66f1a7db5c
BLAKE2b-256 0b8ab94506ce3f86c1bd1b6307157e85afeb5f1649dbf1922a9b1fb49ce2bb3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79b7be05b586203718e7566a271b9fed12c2916ef1d0e7e91bebcd0826e7efb9
MD5 a3cac4e7559e0d263ba939b327972157
BLAKE2b-256 4a41e1f5a38ed434da9766a6acfc16c0a7c87617e3a324c285b423a82289c945

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a89843becb0323d7527fc861ef5d163621d3aec059587daa8ac261a55e02c6a1
MD5 e80aaae7e21bd07a042ec3d43d94283f
BLAKE2b-256 5789a8cb98527acbabd3a53d32e3f613ce9b627237625c682c63a22eb9896653

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 483c9740432660aa652792e50a790feeebb2d7f1a804fa9a28a0a2e7b79e16d7
MD5 e99c13f853e713d73bed6ec2ee1601ff
BLAKE2b-256 9ab07520b82d54ff01534927d0b05362e037b462bc25a8174e3a6057060b9e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6a69431f8e2ed02309f5f9a2d004768897f1e7e7ef3c784108d16ea208b153c
MD5 c0ff35c5dbf906d84b5d9aaa3ddcc318
BLAKE2b-256 5db1edafac4eebd816eb4c3dadc8c000fe7643b73ca14afd7e2ecdd654c02257

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be73355a1f9361cf94261b1dc3f87e0c5fa558033fc4a5c4a12baf1ed2f31035
MD5 77aa843f79546123919db963ebcd7e3c
BLAKE2b-256 c6981c38d4541fc69952d24f4d3f347c183d6509e152a19527c429941d11bffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7d31257b56b6744bd01f8ddea00f8e6154754fda8ae2ecafc23756105a3d4178
MD5 f1367be4ff6712f2817f2ac003896646
BLAKE2b-256 89fee941100f0d2156b8268e2e6448c5436a5db8322521e46c8ec017039d2978

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fed2d891c179ec9dcf7ca875ff2b2cdab2f482d86093a9f02f46d2ccb65388a2
MD5 8d0da8937202ed8d993372f633ff7bcf
BLAKE2b-256 9f40235a9fa7b66177126a690bd5b930f79a8b817ba99b2f52ba54599f5969ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b206c6ddb291df71edba121b15c28661172904b7901ae680f5b9a3565ebb08ab
MD5 ff9eac047d9eee438232c30d014ad5bc
BLAKE2b-256 db161a26c40838a83885895d36620af3ae61c75b5174bb0fe0f5ff914b87d9bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c6a7cb866fba5da50eda0c21e0d238247c52b41877df2ea9810a1aeae8ce0b6e
MD5 11254a5876e0c42e52b24c7ad10582f4
BLAKE2b-256 e3f4b64e7fbd098f7cdee5b80761fff89d100400ba1a0e63c859650b34b0d2b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d34ca60de9bd7e9cd83b59ed9536e4c73c7fe40251f921e5d930d23544738075
MD5 8b25d4d395aa4edd0169f8df11d2cad9
BLAKE2b-256 502857f1ccb2fa9c52fe8a77b570e98b0602c340380e1132291f78bdad86acb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a2c8632f539eb49b7f4c8691f16be282946bd379befd3930df45868342d27c7
MD5 30ad1e985c162de891c0d4c92189ae75
BLAKE2b-256 ca91febf541c0a988c0892a707f5e00774758eab5702d3a19e0d62b973455655

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 a2eaca8eeb02508ba3000c8562535ca50f8212544aef871a616f9abb70114b01
MD5 d37d6d73faf1fdf5cf5bbeb0425cb7ff
BLAKE2b-256 4ece883a64882397356d347061e63b07ba3a6a836996140a55c1bf5e5471e2a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b20b02469000de4bd85ccf8f97d8da2f386539ae2b90deef8f2ece459cad0455
MD5 ac9521d6050ec88fa285ca77c5bae2f1
BLAKE2b-256 51666bb264792725249435ce34ae57399d978fd911fc641a1329831267e2f994

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7fae7a0b2793324e78c484a00cf9d7c2e0cedce84dc7c6057ae2445dd83ca437
MD5 84edc4f529e842594c02584d40ebe3f4
BLAKE2b-256 c147869ca8c60a2546c7596796aa25379ada08d3c49f51f3d2cc2bb088910f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a7c985515659061fedd599ec0bb4d8fc999988df7234a67516b1db6498b0a609
MD5 9c74d9268cf65dc01c0c24028bf77d2f
BLAKE2b-256 eec148bb69d70083e3981301a9ab62b2082b5cf2e649590e419d14cd637c5061

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2836a92db63f66ba1e46cb55c8fcfdc57c4a3ce89737a9376c3fabd04faa176
MD5 dde7dd0a1068a1eed6cea7698fa383a9
BLAKE2b-256 5852e8d852027fedef08a61d2912d45462125e74b457b127fddfe49ff3f17430

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cacd5c5fd87999537ddf1e7e81d4bcd38982f6d21044fc43d94522b89e7d20fe
MD5 99f9ae9a6206a30b9d9deac8e4a766f9
BLAKE2b-256 2ef766f824478e0d4a1a945376324d8f2934f96acf724c22dc764269868559e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 1c7a212499855f7b081e926d1b444574a088bfc678cfdccc9cfd9ec3d75a8c79
MD5 68b35388570a4f53b3c9c7b3ff5e6de2
BLAKE2b-256 97ba56db6bc60e895b188072095cc72e81299750d27f18a96b8ba0a9dda49520

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cbee2fa8cc8efa17fa5874274f3185bfdf4db1560faaa2a51afd5c8df163810
MD5 1bfb5ead28950d0153788ab414d61933
BLAKE2b-256 9f5e01b745151c4c0cb28f16e2b7178b096dd41570faa140ff7e80e5b4ca1617

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 836684d02becc0aed0b6c92af283cc7aafc59290e04d1afce2090a790cbd0ede
MD5 6b2d3ecae95b01238d042139e0f90a9f
BLAKE2b-256 cdbaa9c304d8c7178f0a33e8d7097550cc4fcbcca063ac9322a6900ce144b803

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c6f85b1981100999ab1ed839015c58fa42aa1004729c0fc46cbafab7204c4b1
MD5 f7c9ce0f0687a4b599b2e4a26ae8e0f2
BLAKE2b-256 85989a4bf31dcdea6f57e4bea2e24a9464fca3b9f5f5e6f3eeee1de07a01bdbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe6b25a823eb666eea725ca387b7fc7242f424f3a6f008b1037797c0c8e65e48
MD5 2ea501ceeaa8451e10a95033c0e69c86
BLAKE2b-256 f0f1970737eef2ce956b0dae671b3da3a0e71fc95804e633fd4a02d67e2bdbb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9edd8f3474eb8156b5d7419e2995ca34e5247b6d3748c754326d692ead40f16
MD5 2c5f34bd2dce65c020b8d9e440a41c6b
BLAKE2b-256 65c431e4cf2bd73327ba1c9fde65aef39f264e8c12ed8ec52cc9ade2063e0588

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 eaea83932cfc84fb9e56164628b57c258aba926cfa4c4b8a6cd3547eb6db0cc7
MD5 a463612227de47140965fe513c133d51
BLAKE2b-256 e2c3d77835f4874dc0c4d8eca57c799536b0b5ca87cbbd2986b4dc4ab6b5de97

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a40abd392264ccafb70f49539ee6a51dfaf47091bb37786b5c4c35dafed0b8b8
MD5 a2957db17ebfdf324b7d8c8c7c3eb706
BLAKE2b-256 a6da09c75ec01e683e57b2d1fc6ba96211b7134c6fb0d38dfcc49183707dbcfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a59f67bc9f8a88a9389c8ffe50529176e54c5fe1c17011aaeadcb2bdd7a00d8b
MD5 4d6e885386b82260cd8c583a78e04b56
BLAKE2b-256 0619d5f0ceec2224a8ca7121b3f30a81107637c06e4cc880ab63d03c96d8d09e

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9e4f46d4be59d26b432750e247d7ab338dd5c287e6ca2d7a41f440ba5050366e
MD5 351208ae8e21122edacb07d96e67324d
BLAKE2b-256 ecb2bb1e2de48752d92978d48e41dd93508130ea00d9ac7fd7b8b133df675b01

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3808395a995ca0f86ff35098ce7d49957f521d5f69fbd82dd2011d17e8e270fd
MD5 4716700ffbc95df4187dd8f5588033d3
BLAKE2b-256 0d588029efb553b3deaefee72bd5fceaf08c6392f900a165d596c6522745be00

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83a9eada931799e700eb8d0bb30fa119a310e3cba755e12a01c9e388e795097d
MD5 d8f81acc533f9a6e66a646b2eed784b5
BLAKE2b-256 1c4bc606096dd96c81ba7ca8eef6feb83b99ecc09758ff1eedfab8703328bcbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 eedb48f4861b082fa86d063184d047e399b672062b16bd482a91a5aa2fa5eb8e
MD5 0e490f73555aa21216f2c45df45a12f2
BLAKE2b-256 0f478f2d7b37e2c32f3366c4fc0cdce31efbe9478b49ab683a07cbc318a53227

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for piquasso-7.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abfb79ba3ebc070bb6feef89f88dec5afff144ae4b6a22b221cfeb7e8db161f1
MD5 067b014315cf90f7c6f2f1d2951bff05
BLAKE2b-256 b576b62412a4f48f711ead24aad50972d2c6442ba95abafc38c3b826cb86b743

See more details on using hashes here.

Provenance

The following attestation bundles were made for piquasso-7.2.2-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