Skip to main content

Safe bindings to the GNU GMP library

Project description

Python extension module, providing bindings to the GNU GMP via the ZZ library (version 0.9.0 or later required). This module shouldn’t crash the interpreter.

The gmp can be used as a gmpy2/python-flint replacement to provide integer type (mpz), compatible with Python’s int. It also includes functions, compatible with the Python stdlib’s submodule math.integer.

This module requires Python 3.11 or later versions and has been tested with CPython 3.11 through 3.15, with PyPy3.11 7.3.23 and with GraalPy 25.0.3. Free-threading builds of the CPython are supported.

Releases are available in the Python Package Index (PyPI) at https://pypi.org/project/python-gmp/.

Motivation

The CPython (and most other Python implementations, like PyPy) is optimized to work with small (machine-sized) integers. Algorithms used here for big integers usually aren’t best known in the field. Fortunately, it’s possible to use bindings (for example, the gmpy2 package) to the GNU GMP, which aims to be faster than any other bignum library for all operand sizes.

But such extension modules usually rely on default GMP’s memory management and can’t recover from allocation failure. So, it’s easy to crash the Python interpreter during the interactive session. Following example with the gmpy2 will work if you set address space limit for the Python interpreter (e.g. by prlimit command on Linux):

>>> import gmpy2
>>> gmpy2.__version__
'2.2.1'
>>> z = gmpy2.mpz(29925959575501)
>>> while True:  # this loop will crash interpter
...     z = z*z
...
GNU MP: Cannot allocate memory (size=46956584)
Aborted

The gmp module handles such errors correctly:

>>> import gmp
>>> z = gmp.mpz(29925959575501)
>>> while True:
...     z = z*z
...
Traceback (most recent call last):
  File "<python-input-3>", line 2, in <module>
    z = z*z
        ~^~
MemoryError
>>> # interpreter still works, all variables in
>>> # the current scope are available,
>>> z.bit_length()  # including pre-failure value of z
93882077

Warning on –disable-alloca configure option

You should use the GNU GMP library, compiled with the ‘–disable-alloca’ configure option to prevent using alloca() for temporary workspace allocation, or this module may crash the interpreter in case of a stack overflow.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_gmp-0.6.0a2.tar.gz (65.9 kB view details)

Uploaded Source

Built Distributions

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

python_gmp-0.6.0a2-pp311-pypy311_pp73-win_amd64.whl (557.0 kB view details)

Uploaded PyPyWindows x86-64

python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (350.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (310.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (283.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (328.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (350.4 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (310.8 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (286.8 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (331.7 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

python_gmp-0.6.0a2-cp315-cp315t-win_arm64.whl (428.9 kB view details)

Uploaded CPython 3.15tWindows ARM64

python_gmp-0.6.0a2-cp315-cp315t-win_amd64.whl (573.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_aarch64.whl (320.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (318.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_gmp-0.6.0a2-cp315-cp315t-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

python_gmp-0.6.0a2-cp315-cp315t-macosx_10_15_x86_64.whl (336.6 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

python_gmp-0.6.0a2-cp315-cp315-win_arm64.whl (427.9 kB view details)

Uploaded CPython 3.15Windows ARM64

python_gmp-0.6.0a2-cp315-cp315-win_amd64.whl (572.6 kB view details)

Uploaded CPython 3.15Windows x86-64

python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_aarch64.whl (319.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_gmp-0.6.0a2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_gmp-0.6.0a2-cp315-cp315-macosx_11_0_arm64.whl (288.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

python_gmp-0.6.0a2-cp315-cp315-macosx_10_15_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

python_gmp-0.6.0a2-cp314-cp314t-win_arm64.whl (428.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

python_gmp-0.6.0a2-cp314-cp314t-win_amd64.whl (574.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl (320.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.6 kB view details)

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

python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (318.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_gmp-0.6.0a2-cp314-cp314t-macosx_11_0_arm64.whl (290.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_gmp-0.6.0a2-cp314-cp314t-macosx_10_15_x86_64.whl (336.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

python_gmp-0.6.0a2-cp314-cp314-win_arm64.whl (427.8 kB view details)

Uploaded CPython 3.14Windows ARM64

python_gmp-0.6.0a2-cp314-cp314-win_amd64.whl (572.6 kB view details)

Uploaded CPython 3.14Windows x86-64

python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_aarch64.whl (319.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.6 kB view details)

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

python_gmp-0.6.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.6 kB view details)

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

python_gmp-0.6.0a2-cp314-cp314-macosx_11_0_arm64.whl (288.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_gmp-0.6.0a2-cp314-cp314-macosx_10_15_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_gmp-0.6.0a2-cp313-cp313-win_arm64.whl (418.8 kB view details)

Uploaded CPython 3.13Windows ARM64

python_gmp-0.6.0a2-cp313-cp313-win_amd64.whl (562.0 kB view details)

Uploaded CPython 3.13Windows x86-64

python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_x86_64.whl (365.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (319.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (358.1 kB view details)

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

python_gmp-0.6.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (317.1 kB view details)

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

python_gmp-0.6.0a2-cp313-cp313-macosx_11_0_arm64.whl (289.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_gmp-0.6.0a2-cp313-cp313-macosx_10_13_x86_64.whl (335.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_gmp-0.6.0a2-cp312-cp312-win_arm64.whl (418.9 kB view details)

Uploaded CPython 3.12Windows ARM64

python_gmp-0.6.0a2-cp312-cp312-win_amd64.whl (562.0 kB view details)

Uploaded CPython 3.12Windows x86-64

python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_x86_64.whl (364.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (319.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.8 kB view details)

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

python_gmp-0.6.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (317.0 kB view details)

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

python_gmp-0.6.0a2-cp312-cp312-macosx_11_0_arm64.whl (289.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_gmp-0.6.0a2-cp312-cp312-macosx_10_13_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_gmp-0.6.0a2-cp311-cp311-win_arm64.whl (418.7 kB view details)

Uploaded CPython 3.11Windows ARM64

python_gmp-0.6.0a2-cp311-cp311-win_amd64.whl (561.4 kB view details)

Uploaded CPython 3.11Windows x86-64

python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_x86_64.whl (364.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (319.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_gmp-0.6.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (357.1 kB view details)

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

python_gmp-0.6.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.7 kB view details)

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

python_gmp-0.6.0a2-cp311-cp311-macosx_11_0_arm64.whl (288.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_gmp-0.6.0a2-cp311-cp311-macosx_10_9_x86_64.whl (334.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file python_gmp-0.6.0a2.tar.gz.

File metadata

  • Download URL: python_gmp-0.6.0a2.tar.gz
  • Upload date:
  • Size: 65.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.6.0a2.tar.gz
Algorithm Hash digest
SHA256 c73657696614ce35e15cddc54eedfb52dfc5dbfb2a9b84bda99940f2c0c463c0
MD5 71de1b2b541d8537e4381fcbdc3bbeb9
BLAKE2b-256 e392a1855f18eda9add00f8b55970e94b85c64a9d129869e5553d2f00b0085b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2.tar.gz:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8370725c207e7b7a2ddbcc734b9720453c3db395814327ec0c2d2a1b988ae100
MD5 21835d3a0ee2864d74bceb0c3ceaffe9
BLAKE2b-256 ef496c84b5991e806aaada865314440132d0a37fb0eea2f4a194b1f217d90ed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3bad98e9fec1675ba9b6fbadb8a4b956fa792083f5d9d05783b4f5ec063d617
MD5 aeec2959d3e7cb6b91e99396cab70386
BLAKE2b-256 1c9bb6602c6fc7d7b22e63762900a1484e07cf20faa4f196c1c896df97f517e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 041b1456efd5fdf009e8af7a36396e9de508a501521845aaaef72e2077f994a9
MD5 83b797d3081fe22f08efa3c363ca7f50
BLAKE2b-256 37cf8034cad7d188b559d19bf1137ba9d3c82401934c8bba6b73238836e3543c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3068705195b74250b5e53a1a01d30340ad7c91913de07f10b4410af4876abc0d
MD5 945a88c0ee14a2505a9520534016ce06
BLAKE2b-256 3fd67688f037ef45ca88ecd8feb588212446de3c13d062bb108fe1ee6cfa105f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82177775e210d80ff8bfaf2f9ff70355e3f5c6489a1a5f8756f219b14925efa7
MD5 447b2fd32217ed646c69b686b591468f
BLAKE2b-256 6a47c71704a2b7b851e9d87bc010578bfdb415595903d003b5a91606940f6096

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3863c591f78ae91f96af4bdff7e1118cba3448615bc802784eee9d9e92fb6aee
MD5 61d9c5c340da4b987aa32fc683f4e07f
BLAKE2b-256 15f11f722ce4f96b81c3afcaf2e312514c88c72297a285f2316e7f8720ec6d72

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d78023cea612a04eab1eb2be741b0d3dfdd32633a246059b620fbda3fc78331
MD5 f25b958a868b5ca18f10bfe595f91f5c
BLAKE2b-256 eb514636523f64f9c7bbbbe4700734f05a7b6c8186d176c0188b4376d920d093

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8d236800c95254fadc9d39a48120211233c84a8e5f08f94d293de1193fbdc02
MD5 cb7f37bbb75f77477531438be5172946
BLAKE2b-256 e7eebf160b2148a2862b00bfd845ab62dd4cff46a0bc6873d5fcde1a4a0862b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c9cdf432cf388ae0b50896c1423d48834d77164b245681642fbe2bc64f41b28
MD5 e29402dad2bb7951a097206c3f4fd47f
BLAKE2b-256 470c2fda5e3d988e116c71aefc19d5d90a0413fb0beb2b9a13801000e6e90bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 c0ec30a05b8abe1ca02f07b06b769ad9e93234c4c0eb997b207ea1114139b439
MD5 393fbc7fe67f8a72d8d8b1b7f9ce9f3c
BLAKE2b-256 a56499c237b9d905ede32e5398b46d4abee8a855834f2bc83df79ee94ce52ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b504d3464e04a05120baf0e18c21064e9e4f53066f62216e8fe9bf12e7518085
MD5 95d92c1f33ba02806df3f4601227f06d
BLAKE2b-256 e83bcefa4e5d88ffd1c79f633894d4dd0263a84185bfd03742f7c89812f050e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61d35a4a8b216cb1a6b2717fbf03f9d4e738cc161c725fccd46ec21bb55a83ce
MD5 542d34f650c5056df38437202c112d98
BLAKE2b-256 438b282f524cb2d6ec8728787f8442ae1fbbddb5b28ae6aa9b1a990f1a7c919a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fded5cb2ebd8b2adc4b7afede9b3401f71f8e84529368987003d972f82eb1fa
MD5 1940f9dc1354d2b0d0bc23bbc61a8f13
BLAKE2b-256 7dbd52ccd0ed9d94c8fd761543467ab9e46b56395cbfb04239980b9c24dcd800

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7eaf2c3a3b2d9b51106603b0d70d15d5286782de6ac5d5246ef5c88ac665e35e
MD5 6f59a159af3f4a0244bb544cf0cf1f77
BLAKE2b-256 99a4f77e7896e01c75fc02da642932ac15fde4ac61cd4f7c187943a9ec778bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24d477cbe550b913e370f5c644f09f277be7deec74e9a324f9a2c3c58efc8ca1
MD5 669be5aa00a19f4f405caa26bbcff154
BLAKE2b-256 c9961fd261b602b2c57aa4a0e89769e76c38dce60449f524c618e952defff391

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f806ed190ea07fd19a5b0d9a344ee7f04d8af010d2d79a6d59068cbf43649073
MD5 9f669d2081338cc8883cc3931d79df46
BLAKE2b-256 40c1af52b2c533b1b0c33bc2b84ccc8692dc8b733e77092bb7a45870e15b5da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13b94f2d98b2977ad05ea8219fd589d66dbb68bec984f2d5e82ad7fc9615b818
MD5 65d5eb8fa1f6fe1be372da08760f9337
BLAKE2b-256 e55c550478f4a427ec9f786a412d49abdde460ce309c40692b551b65f6038f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 92a2468a1b36069137c524763cade33b253746dfd8c0445cfda87ec4ce9e6f19
MD5 e16be786df0641c1784b8ade6feb07cb
BLAKE2b-256 3f54eccbb17208a939b178762b9f35d19b649bd5c9624e9f6a6bb238b2d64886

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ecaaad9fb50a2af23b78d85492f3e21520d3c78fe819ec3e8a655f1325b7bd21
MD5 0671bf1493ef9c4e7bbc15c1b2fcbb10
BLAKE2b-256 1be8d9a94cc1556bc03a96e6291277539546d5621e6a13c6c8b842e29e431bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1892a88e09d881f363cd1a7318147e772b26628d52d1de68eb4891f68002c3c4
MD5 c7c26a76fb6e03d8583b7c33fa7cf5fc
BLAKE2b-256 e66a7bccdb9ad58f6a6928a431464fd02a55ced6499f0f7395c557cefa2be633

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f09eec649db7c57093bce73c50347ba4241b85bb0cebc83c05f86f5e12073838
MD5 2198351796f7d3f695a97d136fa8a5be
BLAKE2b-256 ffbe0fbb6722c4a2847c8d57aeff6dbd937deb48d4844eb69d1db63de97ad43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ca107ee41f79261b9ab630afea91ef4d2d656f422278fe3f73658634fcd64b5
MD5 d2818fb2d16be9ce5687bf541ba3fef2
BLAKE2b-256 eb7214e746623b81ca9712abc4440a12f14c9e6b0d5e3f89c5707736a6b7ea23

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 688fbcd5894ecb7a19a3a9de6aff2ca4ec2f0b15c07ef88d93628e4eaf5d42e7
MD5 d04270caafd3bda2408ecae3032f7510
BLAKE2b-256 36eafbf6c6e34a30ea4cdeed9c32ab493240c20a6f6dff8ff23a79b27e4b529d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41fc0b84f6060a9af50576bbddb3f6af25a3f57c794dc47977ee52d27e39402c
MD5 5e360c63a990f6d021f12fba55b646d4
BLAKE2b-256 2b3758c55126f5193b6e506af6d96f72c138cb1e92d6f0d08b290da1365b781a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 493093fd08ce1605617d9aee29b6ed487624f247e8e85f914e394c5b3a928953
MD5 9069b62ecac9ffc22e2d70e00b5fb968
BLAKE2b-256 a2529630c8aaf120369fc90cb7af37be594bdd5a4f155df7b6a46f83a708f366

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9fd94bd9641bff2e4af96c37e82aecb03b523e5bd44510642748e1a63d26399d
MD5 7317b21251af8809d7384cbda6b38997
BLAKE2b-256 6c662694f4401699b802769b9821049322a689d5a8849284bd3c7ca519dc65a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 66c7d36ff19bb4baba312d83d1d8005115ca02e6375399e10ddb47865cd15e76
MD5 c1cc1a3a8ae56d31fc1efcbcbdb0cf0e
BLAKE2b-256 96986867e8e9b5b98e97d9759c6fd954681e20aef1695dc65a977ab4c8b3259b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c439f86e8d1a248915d077a09eacbe227d1905b6f3e87302deb888e4333e1a8
MD5 e27f434a4592c667b9127400e0f7f8de
BLAKE2b-256 5730fa6c9c5f9586aea5b4cac55580ba339f2a3103b7d8933a831b5b8b0ef0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56c203b75676c8161d589635277f72374f55404a1e2a1c3fd2411070f907cfe6
MD5 d916149268331a04ee2357124d7e36ca
BLAKE2b-256 6aa38f9278d326e8dbafd82a6df487a0dc192ed39e83a1a81728dca174bfeb3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c29a285c4000fc2f864eab5e7195aa6f6db669cf7fb921558191c018e57bc09
MD5 5792fd32881f4d079592808b7f28b053
BLAKE2b-256 ff3543601b3a23a87dfcee5cc86bd7ec55dd4e4e7f0e46d359d623d1f518105e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c809b48d8ea4d0ee513897d92d031b3e2b3cc67b1c43d42c50e694cc0aefedd
MD5 f2f13a25c10ed458bf2f0990449c3619
BLAKE2b-256 96019954575048a1e50f4f3d776cadfd9bbcb62609b731ed1d36e201f6da9261

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c0f8252aecd59e976d7e22c2de17a8c9cf1dd3a5e9b8f53967bb4c71e52f054
MD5 7f6aa19652d8b630e5747b03034d0765
BLAKE2b-256 704854576c636d2d277778e72eac5a04c42e1f1d2687943244a256f4cea018a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 008ba31ca96801c7c43ab2ee8f9d4466d5ca1b8fa1e32c87253aa051fc7c54f4
MD5 f0e146b1636168581027feb7dda86d2f
BLAKE2b-256 4e6d623d614774c71a30ab69e96c9c859e8e572fffd708cbf88969f7f21aaf13

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f1747fbb7edf29f9bad1054325c44a0df09b0e241459f0dc3502f03a886ae5cc
MD5 72bc3262b58234c516440ba63f63294e
BLAKE2b-256 4f7ca57a35c1ac32f63c2c95af0a665e5b397708f802907a36216b0eac8cceb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe705851ccd939ecb12cf064b644c80738cb3dd32480cdd61b6149e88fca313d
MD5 70c3b349e0995650b6cd89a272f90fdb
BLAKE2b-256 d21135f9a7ff3b1eb5525a275f1bf30c9f13e9c55b54e2c795ad46204cd0f65b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 568a5c15783cd669e713aef739d1c1c27937d9a371df7917f935652675045602
MD5 955b8fab28b321ae3755e10396b287d0
BLAKE2b-256 2e2bbdb1fbbb4e1606c6192d52e8e089bae96cbbc6ccb9beff73e43f00de408d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12379d36c10359b634f109106977e555254edcd23321c474d2ec9f8f5219f9ef
MD5 d6f617021440a27988c527632c2b223d
BLAKE2b-256 8399bfb072e56194c4f3f685bf87c25ab04eaf2069e0ba5f93f0193fb7e4d926

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6acdd6c9fd444e8eb3eefbce918b212ed8ab12cafa6adc6fd150ded8ecb8950
MD5 bf88e60bc8ce32bc8a2b9ebde723cbe9
BLAKE2b-256 7fb13ed160fe9cd47a86494b0fdc06bd90eb773adaed40506a4292513f902d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbf17b85501dc20f510e44d84d896c3afa4b52abf88858a6578e391100a6c2ec
MD5 843111491c92ac341fcaa6f1bbb59684
BLAKE2b-256 45ae4c61c66a0adad4ad24e0742e9447614890c43ef6346e24851a51621a211d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43327e7f44fa9ef7044a0db19d59cc7c4761df9b50844d6122e7a3c0911b0a03
MD5 ca018868a0fcc4b7aa5878877cb107f1
BLAKE2b-256 e54fe8596d7e1da8d944c91b1e1d82dc3e3d4746c2eef2b149c5b58efa9fc6b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6d39de7f6b99f5477e9821ffd44958f597a236f2cc9c198b38b70469eb86a5ca
MD5 f184b422fc0958ecc628c37149aaddc5
BLAKE2b-256 465084042bcc608e51e727e671a6dfd04cd7fbdce3ae2c9d0d0ae7f781bc69f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 63ce1f3da26fc3c0c04d890d3bd0e97fb64e026953ddf5256ae18acc689ae83c
MD5 2dc9f67ee0efe0ded06f0fc2cf411a0b
BLAKE2b-256 065e0a691f6b146941409e0d56e8a7b7026649a90f4804abeb44d934ddc4efdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ac0697bfce8e9487064a433c28ba1231fa5d946776dadcaa759e4969af6083c
MD5 a0457216c9d0705a362a2840f5dda25a
BLAKE2b-256 64f7ddaa0c49aa36b87c3c48589e327d25c21c645a06a304bcd02e47f21144e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec9f85860677a3921fa888c2027ac04374779ee1f179357fb85e54457310edba
MD5 8121b1370f436a07cb4f6d714c726110
BLAKE2b-256 82042593e795503c578f64751547086b42169851a0baf2700d52eb98531e9858

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c56e86e2e82f12b62f15b01c8216f6d81467bc284c95c3e1af345b2a683414e
MD5 31f0cc8708a82fcd3c8b0cf7e80b1ecc
BLAKE2b-256 6efd2f6d26c2437b513b0fca7417015cc783d38343b612e16f2ab67bb5e95512

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f41cc194a28d6f0fd298e5d6d8f19e1d77dc51ad471c02bdb25b50852d9111c0
MD5 e59976e45f44940b14b33d299a0a4ed8
BLAKE2b-256 b640fb3d024bac1b1a144e279bc9e52c3fc2016edb558bdb6f1284121cfe383e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 273629eeb8ab6d319c09f2bf92095cac1a507b6e33c9da27c8c92a50f5b190ef
MD5 9e46d3c109516d9beff99c11432ec9da
BLAKE2b-256 0bd8ca12f304aec65a509f5996fede7883133c5f9dd30691d002a7970cf3d110

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e69a1e8a6ce385cd6a173736cff1bae124be63800616feffea45298cd0bf23ff
MD5 e9689c8723dbe40efef493819da2a2c2
BLAKE2b-256 7b9f95c988926fa325ef8a2f8e045d8aebca22609c68f2ddc6b8bbd6c48ff2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82fbd967af1bfa253d0bfab8e029c1a888bc1c7703c74fd06f0d41a583570cb5
MD5 0b3662dbeb1d746bacc97a8789c9a24d
BLAKE2b-256 28f65d308c6bba8589f31f4a1ca32ba34fbfd98ddb3aa3bab29fa4633beb10e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c1d44a258500e0277641473ab691ecfd943058a9a88ebfb081f1627860694409
MD5 94abd80745835342486effa495b3b44c
BLAKE2b-256 ced3052065b3bff663c02f8794692ef03f7ac7618eb68a2b33a968ae52bb9270

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aeaf4429586e8b5868c715ab69830e9323e556801f1712f806d619ecf93a744f
MD5 2b52f95e3aa2af10e2046bbd6088b476
BLAKE2b-256 ff2d440e0721275c0dabdc4c21190fe6f048ba1963ec7b0e3fa088fc3da29bbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 641e070d33b62a5ce3d71243b83c217ac67db7e15f31c87638d6da6c042e6d0a
MD5 3c10c45e1009f73906a79c18b03122f9
BLAKE2b-256 936fd99d58b8af76ae3282a77b7f8fa355db1494df8c4d3084f3581c71997b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b353e64e92338c51422acf18dae0490bbd459405bc0bd3a42c8609f2e092dac
MD5 0b55dd31c18ba20199bd008862eed1ea
BLAKE2b-256 ce5792fd8fe8bba81e73ef196d9065f19eb6459f83f9aeead674c3d677d97d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 630b237382a87e8a7026c6a1867f5b1c102cd16df874f616bcab72102c4aa8ee
MD5 8872ed780c399e81372a59ce9e1c28de
BLAKE2b-256 1080a318493281e37f1016bb4266676e439aa33c42916c50f7410047582f487e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd0d3034605e24c997a4670109a9f056692872b3c497b3e5e500f7ffad0e8d87
MD5 9ee90019a04e9215ec41db99dc85e84c
BLAKE2b-256 9890f4c8efe3d1c0bbda1c0a60c7171df7ee5ef1cdc52e6b10f8d6447ad0ad23

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b581d496d9cf20dbf5f6ddc170b095fc60671a124611cf7ebc778ce55e2b6c0e
MD5 20a4f88b456b791ed340367fd3b540ce
BLAKE2b-256 4038725a41d602d7104cd49ac5fb170e1432c5ad5c614bb9a59497d4ef909510

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 189917bb7935b908a18c8794d191b20b4345a2472338bd5aea6c88fff2226d34
MD5 894908d4250a1a603570bafccc645f9e
BLAKE2b-256 3b94f6fed618b3e01242c3de5705d86d8b5ec4be7a7b02830691811a16be5365

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dffd01888efc345238aaf0260edc73f2ddabe93631d733544a9eb37cce900014
MD5 2ecfcd0050c86f11b292b725b7ef78a2
BLAKE2b-256 c97157b03e5618c7b3e876fa971ce71b60fa47e804d7257c209ff4cc48b3813f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cafb067a1a02d7ef96f7d2dc8629cf91bb303505e8cbb1d2723187d77cab6242
MD5 caebb12297434693664fd672d294b896
BLAKE2b-256 95c01ddbf792198f735678709aa5719bdfc8ea7e2b28c1beb07acbdea1e38b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97f4c6245639d4e2ac76f38e3384863615d6f159e10f819b78e91eca1f16182f
MD5 1d17280986d1b272bdcf81c249c51b68
BLAKE2b-256 0266df3cfcf7331c2ccc66fe9bb7c45c364da75008155c542527b7e8b7950264

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d26bb6a8bdd913236e2f05a0ee99720f4c1eac978b6db99e7b9e8ebf946bfb5
MD5 a8254cf97866f383d5496e7233144487
BLAKE2b-256 ba6379e451d3d2f380f2cfe57ec476c574a95fd81bd367d62fdcec087b5a9388

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fc68855c50452df1c4787af38c2714630a4fb628a6273cf11f428324ca4e851
MD5 337378a73385870300cde9113cc55d0a
BLAKE2b-256 14368cc7ea5855e4e0c2c0218d4f909a2c6b4fddf257a8fe9e71800f9986b54d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8e7e3e6ca8d2f1c87568a7b6500ff4b0c259e646ebee0c2dd2ac061b60837ea
MD5 48ab3da40dee34a88b1b57d04ecfc8f1
BLAKE2b-256 fa513c46eeabeef2c8ff7f73b28b27938380c324a33fb30682551d9052c3bb58

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da55148fef6faabaaa83ffeee921cba3875e16b157cd24caafee1727fd37e826
MD5 162c4cd33dd878720a442f1ed870569c
BLAKE2b-256 cb70ce9defb87a938facbe4ede643340c92d3e7378e66ea990121a784d0dc2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on diofant/python-gmp

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

File details

Details for the file python_gmp-0.6.0a2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.6.0a2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb4506b50277415cc18efca61fc198d7634b3b39057fc71b2ff7266a54da963b
MD5 78f7e0fb27c72822308628c7eb8828bb
BLAKE2b-256 43480f10902db2c1b14c8c14610293d69f0062ca2a731a0065eda4c8ab2e49b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.6.0a2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on diofant/python-gmp

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