Skip to main content

Qiskit Provider for QDD

Project description

Documentation

QDD

Documentation is available on GitHub Pages.

QDD is a decision diagram based quantum computing simulator for Qiskit. It can reduce memory usage compared with typical state-vector simulators when the decision diagram representation remains compact.

Installation

Install QDD from PyPI:

pip install qdd

Supported environment:

  • Linux x86_64 and aarch64
  • Python 3.9 through 3.14

Quick Start

QDD works as a Qiskit backend.

from qiskit import QuantumCircuit

from qdd import QddProvider

backend = QddProvider().get_backend("qasm_simulator")

circuit = QuantumCircuit(3)
circuit.h(0)
circuit.cx(0, 1)
circuit.measure_all()

job = backend.run(circuit, shots=1024, seed_simulator=1234)
print(job.result().get_counts())

For statevector simulation:

from qiskit import QuantumCircuit

from qdd import QddProvider

backend = QddProvider().get_backend("statevector_simulator")

circuit = QuantumCircuit(2)
circuit.h(0)
circuit.cx(0, 1)

statevector = backend.run(circuit).result().get_statevector()
print(statevector)

MPI Usage

MPI support is optional. Use the MPI-enabled qdd-mpi distribution only when you want to run QDD across MPI ranks.

The qdd and qdd-mpi distributions provide the same import qdd Python package namespace. Do not install both in the same environment.

Install the MPI-enabled package from PyPI:

pip install mpi4py
CC=mpicc CXX=mpicxx pip install qdd-mpi --no-binary qdd-mpi

Minimal MPI run with Qiskit:

# mpi_bell.py
from mpi4py import MPI
from qiskit import QuantumCircuit

from qdd import QddProvider

backend = QddProvider().get_backend("qasm_simulator")
backend.set_options(use_mpi=True)

circuit = QuantumCircuit(3)
circuit.h(0)
circuit.cx(0, 1)
circuit.cx(1, 2)
circuit.measure_all()

result = backend.run(circuit, shots=1024).result()
if MPI.COMM_WORLD.Get_rank() == 0:
    print(result.get_counts())

Run the script under MPI:

mpirun -n 2 python mpi_bell.py

You can also pass use_mpi=True per run, or through QDD primitive backend options such as Sampler(backend_options={"use_mpi": True}) and Estimator(backend_options={"use_mpi": True}).

Documentation

Full documentation, including source builds, testing, MPI usage, and Python/C++ API references, is published with GitHub Pages:

https://fujitsu-utokyo-qdd.github.io/QDD/

The documentation source is in docs/source.

Citation

If you use QDD in academic work, please cite:

  • "Accelerating Decision Diagram-based Multi-node Quantum Simulation with Ring Communication and Automatic SWAP Insertion," IEEE QSW 2024: 10.1109/QSW62656.2024.00025

Additional references:

License

BSD 3-Clause Clear License

Limitation of Liability

In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

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

qdd-0.4.1.tar.gz (110.8 kB view details)

Uploaded Source

Built Distributions

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

qdd-0.4.1-cp314-cp314-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows ARM64

qdd-0.4.1-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

qdd-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (729.1 kB view details)

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

qdd-0.4.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (704.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (652.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

qdd-0.4.1-cp314-cp314-macosx_10_15_x86_64.whl (657.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

qdd-0.4.1-cp313-cp313-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows ARM64

qdd-0.4.1-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

qdd-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (729.0 kB view details)

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

qdd-0.4.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (652.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qdd-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

qdd-0.4.1-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

qdd-0.4.1-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

qdd-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (729.1 kB view details)

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

qdd-0.4.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (704.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (652.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qdd-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl (657.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

qdd-0.4.1-cp311-cp311-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows ARM64

qdd-0.4.1-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

qdd-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (730.1 kB view details)

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

qdd-0.4.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (705.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (653.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qdd-0.4.1-cp311-cp311-macosx_10_13_x86_64.whl (658.7 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

qdd-0.4.1-cp310-cp310-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows ARM64

qdd-0.4.1-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

qdd-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (730.5 kB view details)

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

qdd-0.4.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (705.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (653.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

qdd-0.4.1-cp310-cp310-macosx_10_13_x86_64.whl (659.0 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

qdd-0.4.1-cp39-cp39-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows ARM64

qdd-0.4.1-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

qdd-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (730.7 kB view details)

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

qdd-0.4.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (705.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

qdd-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (653.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

qdd-0.4.1-cp39-cp39-macosx_10_13_x86_64.whl (659.2 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file qdd-0.4.1.tar.gz.

File metadata

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

File hashes

Hashes for qdd-0.4.1.tar.gz
Algorithm Hash digest
SHA256 48867cd85ac8f8b44997603713cd2098f5747fccca9f7b1100cad22627374237
MD5 46b2c41013317945f7c430950399a7f1
BLAKE2b-256 82696c98242c7bcde1b3a6af1fcbe66be632fd754b1ca1b7b828c60bd902f18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1.tar.gz:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d9add395bf14afcaac20c6acf1b36d6b1d4bafa649eb501b0adc93b2d8b92360
MD5 e085ca3a2a3d4d039ba5b4b76b09934b
BLAKE2b-256 944f48bb35816726a634f74f2ff4528d0364b88c59b2e660f40fe4929afccd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ded5501eab9a47b1c27b233fde9fa39cc43745ea33e3b79ecadef2a0f79dd03
MD5 168b2f437f17a9cb5a81da6f94089f13
BLAKE2b-256 010bffc5531eefcfce3912c14b2fd70c24d981a7cbd7143d2753be632258b138

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1b931528bcfaf1f187dcd61f0f356b11f12e80210179b19345ba372006ea304
MD5 18d1da30eaa005da6f41775bb2abd3ce
BLAKE2b-256 ba1d5f209188c32c751788250524591e6e01ff684c2891c3e43c64a11871f27e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f99fe57976b56b317eac90a376513049cb6d69719e534407c96ce9dedea94d4
MD5 3d4f6953c364da73aca2f9726d9a39af
BLAKE2b-256 84195372ebf068d395da3f38a2bee0891b1fe414bf51eb5effaaeb9050a75b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 652.3 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eed4410260d90ef62a10b6f62bf82786c00a6d38d8aea685d147fab213c1f4e
MD5 2ab4ea3aedbb9a10f1860942a08e8b59
BLAKE2b-256 4c8d5b87b780b54448f4b81f292eeeed8e4c29b037a79bb1656d3968963c7ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a3b15c28e42f8a29d29d05c320fd63047f2ebb120145cfcd8720349d6dab88a7
MD5 3e5c5fa196b41d47020845ac69edbe6a
BLAKE2b-256 676a4a08e22eb4cb6fa2e39fc9317cc0d94bdf43f729cab1fea2d8122f620266

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 09e3ddc31fc846440d43d9b01a0367186d5b806fd3b000cd032be7ec922c8951
MD5 7b4de5bacac79aa88fa0e48b92c4c143
BLAKE2b-256 c04a5ae063a744e3530fe86f9fe11b38bb5d634435c18e23fe18389412e94911

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a59f58e3dde731cf0bfca5f1cc269c248b95c93ee0087f5d6ae1a4b73a7ed605
MD5 caa25e34da7dbd46d04143f75319c8e6
BLAKE2b-256 a21b50362df9ff91f3611bcf9cd10e833ceacec5a32fbaea22551c31b7163078

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00f3283ecea2fcc4874498d0f2ed6584165e271fad8333a16743488f5897288b
MD5 93dba26b9586b7fcda543b6be076e7ed
BLAKE2b-256 50fa00eb656f79f80da7562f59dad7645dcd4df71a55e323b955a9df0328d31e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7624b24f630e4518bb168a2871b5ea19f9e4de06a14389efa788ce86746a052
MD5 a923da74bf010d4503dfbd7cde38b7b6
BLAKE2b-256 8fc8ec62ff926e344d2cba5e30cd4f44e61251018a59d78e3ed1bfb7b44cdeb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 652.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2209d0fc859d81314c6d1bf4233baa67cefe8e5c6d00ea7c51a2adc050643578
MD5 6e58b60fbb0e039c2048ef197e248f84
BLAKE2b-256 2a70fd8da406c4a49b671f2e24bb0a494547eeaff7195af199b917b7c6dcdea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ca53a6fec151905d7a5a69bb8be11cd02ef41e112e03c4fb0a1d55d218cd54a
MD5 ff5d60e480c2fa8ee7cefeb55b5efca7
BLAKE2b-256 000cd8fd3ecace10cf352cb6900513313639059250bade16703d55044ce55c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bd06eb0098bd195c6ab94fad7a0121091f4ad8ca2fa5573e53c4535d7d3962b2
MD5 58e20d3f60b0d9598b6ac8b3fc87104e
BLAKE2b-256 ffad942723b212c25f1f6b5e1674ec897082ffe53d67cd27f8c4aadf99a18212

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d7d4165a8c4a8169c6eb9855df5140568da31709faa424f316ef76d248c8313
MD5 54f2a9c3dd280b4909c4606447c9b910
BLAKE2b-256 3459bb19603770ad88ec5265660198d60f1bbf5158c4f72b9711e486d7f65596

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e397815eccde0110603543672ff1ec424692bf0d4de097931678d6042516ae52
MD5 ec0a11e4aa267dc923176b14d477c36b
BLAKE2b-256 44a506de2dc4d1213f183f4b8debcf446315fa9312fbab97801a80e85407a7b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28b0b29a0bc368d4af7624c5e82252494e905efdfd18b84fcf20c0cf5fc04009
MD5 a0da754a38c62d8f9b2917f8f0b6b14f
BLAKE2b-256 b0c5b3b8f039fe5109a8ce830ca3f10f372747c1ec66af81e73988ff65953b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 652.2 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ab429138bbbeca47929a8392f4453670942f4b5d1d7fa6989ea40b5ae7fedf
MD5 d3d5820bfe97b819cabf1eb53c265f2f
BLAKE2b-256 0f12cad3386f6f644f9bfb20aad108b52082cf5f37d277152ad1c1818952f0f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a370d2870ce7a048281c8bb9c93ea22d82d600ed3a62f9b831778430164d78e2
MD5 fd93d3b5846d96506562e4cf5af82b3a
BLAKE2b-256 6e2f69c5b27fb62d46d6fe82986922f0ef5e4b130dcd826ab86a3b0a3aec0cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e7b545ad37ca48fd8e4b7b3b78c9cc059fa7b11f89430d37b9939d69c9dc5696
MD5 984a11a5444ca4de04f49cc1f1e4b919
BLAKE2b-256 f5aad029a6e72748b7c0d64833edb0e02cfc02f54bf5347e8c0e0a78ed791229

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4109efca64552599b49be60fd19b8493776cac111605d4d82782f2fb3d47dd5a
MD5 d0ea2241439e8a6d4aee471836a3b70e
BLAKE2b-256 e57ea5909e4995899033f5c8d56125a41467c07a52c4642968051f66f452822d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 181e08932caaa83331238dc34b7d7640182839443bff257acff0c2f32e54eebd
MD5 9d48bf05c69905fdb82d62ccc020b592
BLAKE2b-256 1062f7099822f8ba55c49cdf7cf4ad8f98b6d6fa6d840ded17d3a96593ccf006

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bed2fd9f465eadb4a076d1ecc5b8d38bab39373e3626982734767e98d072c2ec
MD5 37ccf00da3ef89e2a9803a1c8d0604b9
BLAKE2b-256 208c605bce30cd276e074e21a2a5e07dc8f586aeaad1fcf87915c95ba11d0022

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 653.3 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c3db4fe3d933597ac2599190a081ca1bbd571a7e004460ffa0b8778beebccf4
MD5 50e9414894983742144f91118e2e513f
BLAKE2b-256 bd567f0d2757aad01454996f8e05d2539f4a54b1914dbf27ec8e65210c079402

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e9895b4627eded2af9fac244637db57fb1fa0daac9d9aff4a06fe9f86768054
MD5 7ad258941c367780e454afb0a695a8ec
BLAKE2b-256 0471ff675d50182c2f4f10a61c4c04be41e67663a07d0cb132c34ed2a34efc9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 153ef09487528b44c3b0dd6d090b7ded9226591f83cda79d8ba5449c708a3616
MD5 0e1e24dac2cc372afe16a1d43db30b2d
BLAKE2b-256 00178e934ad32cc160c0f35cfa2a59de9ea8f1a7e3e44c34719bff4d4b5e020d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aec7d9c122aec989b7e3f413eaa0834f3d2d81eb3a6e4a294a0691f3de0651d8
MD5 c72ca9862eb49127856b8201a8b2a9fd
BLAKE2b-256 0d91b00553d389436e5ce9c341f14661c10ad68a3e2eb07c9b35bc2622dc50b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a63cd99c513509fdd097eb11b9307c171a1c82bd6a844a783dc5612313862230
MD5 a73721d9bf5dc50896279e830a723b26
BLAKE2b-256 cf28ad4bc6b9493e60f8d4571dcbef5639cad4c90d13b49296d9bdf9854ae5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0354f8c0ac7a570f4288b4a42b6689cd73cebc09003f70fae907d2aabfe21e6b
MD5 a648d5dc1a68b5c22a5a8472acf39927
BLAKE2b-256 024e1ee0e499d1164ef6f37df6e7eac3a68d4c8f74662582bd9e18e43706ba2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 653.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5bb2d7771da9c2089d7d4f68dcf3ea65213cffff93494df8bea1f3e2f8dde41
MD5 3e49666bf63d2e41bcd59eb835cfad41
BLAKE2b-256 4896a0fb7f0f62c310b3c655dc584ca1a82358a37a857636642533d31bb203b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e01934bacad7a151ee4cae74e6378a26547214ed6632116a3940ea61852d168
MD5 f5a0144b537747f22a96631a529ca3cd
BLAKE2b-256 8376756f8439af2ca9aa323a87bcafe38623dfa5035cd80fe41e9e7229f2f056

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 952d378361f4478b152d8e544bf98bfaeb34f0f70f8ad7ee427fc8148afb9b4e
MD5 d320584ef95525cc2a9300be245d9393
BLAKE2b-256 67df0bf7f2ca598d62371c7be2691273b0e1c2b1e9ac69124a0d86a74e922d03

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-win_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • 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 qdd-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85f493321f8c0e861de4a6b8b5399376f4bacab714d374bb2acddf02a0e7a68b
MD5 166c500c021519d59cc937dea10672c8
BLAKE2b-256 f0cecafeff035eef374d125ee650b9c46d46d52d3ae47c9d977c7140cf1843bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-win_amd64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8eeb94efc0bb2d2ed94d5597cc7e01622306027d3d63c6a259cf0793c27848ec
MD5 9432c621704930e84f8164640eee81a0
BLAKE2b-256 e18430d9f9cb5de1e9dc0baf4884b2e5c4082b6e93d8964c484c9fc31d5f4a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for qdd-0.4.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c286191eb5cd36e08d31b8ac0337aa27c231db37ac23ca403886b9e9323c139
MD5 a97442c0c1630dbe7279f8df567d4fb3
BLAKE2b-256 c9baa11197ad28d8e605690d4301fce1b88368258a387ffa3fa619f32304d570

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 653.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bac143539468e2356c98faa0bc0716fe1f147b6ebd1e505416d06c197505e1a
MD5 7ceb5adcbad3d44c8e835848352e3348
BLAKE2b-256 d469fa0a86049474b3dba9e709c749c99b278c7ae55b279baed9abb7617af383

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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

File details

Details for the file qdd-0.4.1-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: qdd-0.4.1-cp39-cp39-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 659.2 kB
  • Tags: CPython 3.9, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qdd-0.4.1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1a710cf89bce53ed912b75deb9ef5fd2a8b16e2355c7f6814e83a15243763b3
MD5 7a99a39a8f88a026d77d24f2581ed974
BLAKE2b-256 9046927327fd499edb540f20634592db7f8df41f38d7e2d032da2fb14d34c916

See more details on using hashes here.

Provenance

The following attestation bundles were made for qdd-0.4.1-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: publish_to_pypi_ci.yml on Fujitsu-UTokyo-QDD/QDD

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