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.8.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.5.3.tar.gz (66.1 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.5.3-pp311-pypy311_pp73-win_amd64.whl (552.2 kB view details)

Uploaded PyPyWindows x86-64

python_gmp-0.5.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (345.6 kB view details)

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

python_gmp-0.5.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.6 kB view details)

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

python_gmp-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (279.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_gmp-0.5.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (324.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

python_gmp-0.5.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (345.2 kB view details)

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

python_gmp-0.5.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.2 kB view details)

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

python_gmp-0.5.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (282.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

python_gmp-0.5.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (327.5 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

python_gmp-0.5.3-cp315-cp315t-win_arm64.whl (423.9 kB view details)

Uploaded CPython 3.15tWindows ARM64

python_gmp-0.5.3-cp315-cp315t-win_amd64.whl (568.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

python_gmp-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (352.9 kB view details)

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

python_gmp-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (314.0 kB view details)

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

python_gmp-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl (286.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

python_gmp-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

python_gmp-0.5.3-cp315-cp315-win_arm64.whl (422.7 kB view details)

Uploaded CPython 3.15Windows ARM64

python_gmp-0.5.3-cp315-cp315-win_amd64.whl (567.4 kB view details)

Uploaded CPython 3.15Windows x86-64

python_gmp-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl (314.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.0 kB view details)

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

python_gmp-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.5 kB view details)

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

python_gmp-0.5.3-cp315-cp315-macosx_11_0_arm64.whl (284.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

python_gmp-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl (329.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

python_gmp-0.5.3-cp314-cp314t-win_arm64.whl (423.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

python_gmp-0.5.3-cp314-cp314t-win_amd64.whl (568.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_gmp-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (352.7 kB view details)

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

python_gmp-0.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (314.1 kB view details)

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

python_gmp-0.5.3-cp314-cp314t-macosx_11_0_arm64.whl (286.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_gmp-0.5.3-cp314-cp314t-macosx_10_15_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

python_gmp-0.5.3-cp314-cp314-win_arm64.whl (422.7 kB view details)

Uploaded CPython 3.14Windows ARM64

python_gmp-0.5.3-cp314-cp314-win_amd64.whl (567.4 kB view details)

Uploaded CPython 3.14Windows x86-64

python_gmp-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl (359.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl (314.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.0 kB view details)

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

python_gmp-0.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.5 kB view details)

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

python_gmp-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (284.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_gmp-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl (329.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_gmp-0.5.3-cp313-cp313-win_arm64.whl (413.8 kB view details)

Uploaded CPython 3.13Windows ARM64

python_gmp-0.5.3-cp313-cp313-win_amd64.whl (557.0 kB view details)

Uploaded CPython 3.13Windows x86-64

python_gmp-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl (360.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl (315.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.5 kB view details)

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

python_gmp-0.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.7 kB view details)

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

python_gmp-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (284.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_gmp-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_gmp-0.5.3-cp312-cp312-win_arm64.whl (413.9 kB view details)

Uploaded CPython 3.12Windows ARM64

python_gmp-0.5.3-cp312-cp312-win_amd64.whl (556.9 kB view details)

Uploaded CPython 3.12Windows x86-64

python_gmp-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (360.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl (315.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.2 kB view details)

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

python_gmp-0.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.6 kB view details)

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

python_gmp-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (284.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_gmp-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_gmp-0.5.3-cp311-cp311-win_arm64.whl (413.6 kB view details)

Uploaded CPython 3.11Windows ARM64

python_gmp-0.5.3-cp311-cp311-win_amd64.whl (556.6 kB view details)

Uploaded CPython 3.11Windows x86-64

python_gmp-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl (359.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_gmp-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl (314.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_gmp-0.5.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (352.2 kB view details)

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

python_gmp-0.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (311.9 kB view details)

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

python_gmp-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (284.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_gmp-0.5.3-cp311-cp311-macosx_10_9_x86_64.whl (329.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file python_gmp-0.5.3.tar.gz.

File metadata

  • Download URL: python_gmp-0.5.3.tar.gz
  • Upload date:
  • Size: 66.1 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.5.3.tar.gz
Algorithm Hash digest
SHA256 95f47e78ee32cc9e299d96824e9bb05970c86092935ff6f32382e344acc31828
MD5 8e4468cd17e7fac578280154db1c5bce
BLAKE2b-256 a24a6a075c8b9f44392a8b211269b51745386b72a43855486af7e88e6219ec1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3.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.5.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3f118c58fdd5ee5bdb637788e9aa6ca1653fa5c712098e6797e28fc15f82c968
MD5 f7fab26eb9733882e3085d30e6bfbbfa
BLAKE2b-256 951227034ee478db2936432c8c166d57a9dbc82873d45e8dc47cbb7b856b0b26

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2a62373e4de328d6da78c25d27345669ad99088f73e69a20ea6b2000a6925bc
MD5 7c721f30ce671a5bf3b40521d43d160e
BLAKE2b-256 92032d94b10dd6ad0ff4b970922e60352771ff0e454a92ae9b8e841d05f125f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c93a0f5da29ddce599973bda84c5db7fc6b5c9c65e508fb91e7d22297bfc0d02
MD5 f341276d7359ea296b5853b891395c07
BLAKE2b-256 75be173a5f5bf103c0f493dfdc65073b87966e7fbd95d3c2f702555769c94568

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c74d9213c8eaae423aaf3f3a72e8ea1cf2f2eb6dfe1321a62d5bd0a952af17c
MD5 2c1a958b5fc24c3360c7ad67a79308b5
BLAKE2b-256 a6eb0a36dc6585e56e2c2b7bc9af93bea4e9264378909a580777425b5e4d847d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 47c5b2986d24aa1a664a6679d5413f358396e8f2261aa3d47221cf4771aa1703
MD5 b44907a495c5a333ce7e6d2c107816b7
BLAKE2b-256 db0956d26929ea3c18427fecfbbae1d8fe361b443c6984d1fa648202abc423c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55640e8fc1c0ae0767e24139af61730129771e709335447e1fd9c4cc96c7a688
MD5 5bc7581f91cd61c15eb61fec08f1bc1b
BLAKE2b-256 8916c889788410d5c6cb5d9f188993f0d79d4f133adcae97e9f3877c342f7073

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41479063803b93d63aa192065edebdbdcd0738c43efe31290ebebcba5c002907
MD5 42bb634aad284fa9e98e8617ac106b18
BLAKE2b-256 6c589fd2f3d37c6e3e585530ef986f84c68ba094050d95e388c8670dfad38954

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f01933b5071e3c7e34d14efbab3fefd3a254b7a9701351fde4bbcc1d27c0e9
MD5 557b7d2bf460dad04e5426edae5a2024
BLAKE2b-256 949ab3cf67a2db6a00d755f0d8647aa525f0df28a651954b69b4f119d7f26826

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 20d6f3596213d7d6eca54f07a5cf1e12a0019003a86fc40610b1341da342d86a
MD5 4b6c45b36cca1275ef0b843b6e475108
BLAKE2b-256 b26c207503a06d42b947e10bf0564606af30ac41c3c59579104bf775528d1768

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 423.9 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 03fb6185b8fcc00d2fd11508285a8379141692e4c7ed2be3bfc2cd5be4b91566
MD5 3d3077d4835b22c6342a9e47c0f2c22e
BLAKE2b-256 e58c8cc10c6d3b0a1452b665fd580b7e1b42f3739ecc112358ba092100761df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 568.7 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ce9b745b8dcbdf9d8d46947e570e4fe175896ab1ffb2f5a7ad742f441a5c8010
MD5 86ab12f04ac99a44d9cbe6f8e93e8ef8
BLAKE2b-256 8356e0ddec755b958793bfb7058b57b9abae6d0f9e140d6f228f889a6116f2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a581c6f2362dc77bbfe8f39e6f20d8951c6781a67a2cb8cf81c5e7cd64f4c595
MD5 c8658eeb675021d27a39b82185d97b3b
BLAKE2b-256 16f622184d3127d331bc0773d0d2c20e760e2fabcfe8a5d455f3726e1bc000c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99112cae26c6f77df6c4052cd6c9fd6add65f0d0be3060579d3ac6fb3ca24c46
MD5 3c3e1589dd6cd6325f90951e7abb3da7
BLAKE2b-256 34ce20c9467654dbe87007a4bea17ac05821daacf02dfa6b07c3d54122182a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f089b8f5625cbe80d5d98553c4918ab1ce3f5346f4674132ee22689fb8c5f1a
MD5 810ddb328885fd7067defbd0d4f4fa76
BLAKE2b-256 79f090d3cb1c4b825d0aebd3f2d2acc17b9a79e00ffdb1b61d54c46d03e86a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c27aeb8dde4a1d8a5f84777d0c1c3bcba9d30c642893cb76b8b65e106014e00
MD5 b6eba06730bb5da76c27582aa24ab9d8
BLAKE2b-256 94a4b2e7705107269deaeed2784341fca33bd6dd227e4312b3b8d58d95aed735

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 509f8ee831ba67db27e0348f79ba699130cd5e57b9e63b462fad8a4f0d8be718
MD5 a6fe4e7b9f82247a26a43b4fd6b682a4
BLAKE2b-256 1a3a6f08df46d4873535ddc71443ed8e8a699ddfe1a60cce290178cc406d5a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3221cb25a2ac43ecdd734bbaba6c08d582094f206f82665f74cc0ed2ba229392
MD5 b5417d332d503b637cc8592c352faa21
BLAKE2b-256 51a0ef8a4b0645badb3f32437577f7e5409d36b063611154bab42eb5f486ff72

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 422.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 7e4f72f4c2c22d61749312c450267a1f1c1337d991a6223133a7491fd3c16c10
MD5 9ced98d81af21a2596bf6b29d1d5d117
BLAKE2b-256 259b9c70d8954c63d84fe5f061572875e4e0296cd3727df5d57eaaf4bacf3a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 567.4 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 712062dd567392db28a30d62cdc0a7dc657f0ab0c2836c26ee86429cb233ff3c
MD5 38d8d1cab6e20f44fb061b4466fbb8a1
BLAKE2b-256 a1a1e6432b4a6ae0555aee060a53800161e49ac80af83e7b14f150d8f27cea2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24c779e52b978ca66cf1bb9aa51fee12c50893b081c87f193f47b37cf74b8d31
MD5 cdaf6cfc29f58da55fdfcfd8bc5a153c
BLAKE2b-256 405e860f08f836a349c344ab679543050d670b4ac426f06e892aaeba981c53f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4767c111db029bac30a30b63439778426ee48e220227c808ab0c01ad4965b285
MD5 634f7b8f2e5c25a2cfcb77411f4c9cab
BLAKE2b-256 2011c5e4f3486a4eedd16d464dfff279cb38ecd074015b11492010398fdc4574

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a9e65fd83893f47b32d3ef1fecc9229256553f3b423469dda270ab64b58fefa
MD5 a403f2f7bf6dfe73aca4548bc1ab96f9
BLAKE2b-256 6fbccb37b751a2b73e267c5508bb4bf79108a473ef1ede09182b789a51b5c52b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe2373835d99b7ced7952ddf0243896513e0f5d9a2df97b3f186afe47ece457b
MD5 7e22eeeae75d93d6f8101dc9e4243013
BLAKE2b-256 469b0756bbcc0ce5175b6ed08a8703da1c5c06f8418f535b0be84bb0e9ea7714

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba46cf663407130354c5aeafbb0fb055159f618b356e9f2d7513e190fc24b5a8
MD5 fda30a5625bceb864c4d7a33c0f0c17c
BLAKE2b-256 eb0ee8d7e88b8b8f4a68710eafbcfd679da34cd4410c9503cd086b95ef115f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d45bfacb3908fb0a43dea04ba82071f7a1f7b9a1302482eae7fc99404fe8d717
MD5 76f5e9af62395f08f87cdc3ef62b03c5
BLAKE2b-256 783f7f0a336b8e150921af34d8d39e03fafd7c719a46ac5cac4a171871ede896

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 423.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 441392224ece954350ee00a9bdbb0cf3280a9caa2973466f77605d26f3b55e9a
MD5 b70de62e39920df89d29f5860b4175d5
BLAKE2b-256 07e01c51b12911dda62c732379a795f78f0a18a95efcf9f24d4dd2a05765a93e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 568.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c5ae91bd7557006cbd0a25cec110bf8131021819462058811377ac7643606b52
MD5 79c952187796d34ce49db850e981a27e
BLAKE2b-256 502e0f56e36f3bbdd40b8df46bfba4c8c118f714b507c7608b39220dbc33e683

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bae2f2b841247402d755229f8dd4c581b0c0a4c3b74a782424b3b742b22faff
MD5 ff09a4223c3be146227de1cc1eaae4ae
BLAKE2b-256 1f5ca8c7e889404a1b886157158527feeee8983ed29c385243572ea4a004187b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8deec009797a0400a358a4806c8278916c3dfcb2653791459daba35957942c6a
MD5 23586e530f4f4115e881c952e82fc918
BLAKE2b-256 f50123e274ff2d621152043ac762b8bd622ca19fdab8a68932b6d35f273178e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6e6e5392f28d8acdfb78772785e481ad2c05493de330a247faf5dc0b0358813
MD5 33e4d1a5786b279fa320d9b9b5039e80
BLAKE2b-256 e058091b658fa3af94d88fe50922fd1c43d87d08329c3b00ff3817d338b46158

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da98c02a1471bd6857f58c25d1e83a13eb4fc156913c511c5c48f5c44385b13a
MD5 212b92b2177d533a673d2e82994153f8
BLAKE2b-256 d5de0d925954f72226932431eea1668418c1bc41ed8c18416bbdf7113d7a4932

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ed6064d7fd2323f5e6077618cc8b72087b4b762fff7f5a5cfd8b9e1773f5ba0
MD5 726f76e01d580ec88d830d03ecaa4848
BLAKE2b-256 daafbeb6af969332141cda39d3e96c0a65a26135512eb639ef710330b74add4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9be26b081f3582571e0242a450235807fc9fd514f925378bbd1ca7026c0c8993
MD5 ee66df8073a57e96618105ea6d3a39e1
BLAKE2b-256 6d3dff5c1c5a912e12d1dbc637b4a78090410924e6cc6642635a4d2386cc210b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 422.7 kB
  • 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 python_gmp-0.5.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7a6ef9baa999f1ba11678c44c59a6088f1900d500447cc057cb8cb29088cb640
MD5 2014378bf605bf780e853afc5ee3103a
BLAKE2b-256 c34397e8b83b727acfe2fe182dbb2f2fbf9dad2550448cb1d54ff19590943a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0350a7f5b10ad19f085e01eab825d94d03aa4db3c9d192c2828834a39ace962e
MD5 e45723b1d65a733de6035861ac60ab79
BLAKE2b-256 21dddb42006267a80cdaadcc1f5a04cbdac9cf78da61db797fb655ad4538e596

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500470d26226a3b1e134bd8613e93321823e6a4a1c81d0a1a1332acb8c637b68
MD5 31fa775c198486aa7fd10ab874e64893
BLAKE2b-256 73049392e6da02367c32f1aef619782736fa8383b1855e9ca732a2d9bbf5f04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2452a6d6892e391aa5053a26f2e6d64c56c3de92651950e79926e9178f1ebb5c
MD5 166722e37b05a3dba06d6bdfe6e87282
BLAKE2b-256 80f2133350ddd6bc937dd3dd95e7ddf0fca87278c4e835fac01125015382fb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dab4e2544322f534f07cc2115733176fa10d984e61a48ce3048a8fd07efd93a6
MD5 bc25382de0dd9241de3bc85619279e08
BLAKE2b-256 2feb4dcbed969d2f516f686a8cf03e87702f85a93104fda896f7f2fbda79c2bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8924c58d55c5dacab7c542bf79175eefd4878792b217dd8402153d7d819ac603
MD5 23461c77b24a9deaa34c7a7b1027bb91
BLAKE2b-256 4cccac95f181d7a1a1bd94ed0f7698eaf11beae66dedfabffaaabbde09eb54e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7c6e88a9a6f53a888443ba58e5b15d9f6a0d66f58c7ba848ed24e4e1818d933
MD5 9eb1eda2b432d364ed50e55b12644047
BLAKE2b-256 e447368b5161aa640635aeee4b544e339db546e65342e54fbcc81802e8fc18ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 03c0f15a999de9ebd01e55d34cdcd9db191ca3b1588f89071d27c1c123d68367
MD5 46b1adbdcfaa4656718d98e1b606acee
BLAKE2b-256 f4be05897d2ff23ee2d35fa8aa55efc4f269a74908e48db0e38f0e3a398d31b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 413.8 kB
  • 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 python_gmp-0.5.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f42553e7fa02fc390ca2ff357c9648f9439664b42f70f4cf42506455c2a28dea
MD5 8a0fb3541388e821be0ea4e5b50c1b48
BLAKE2b-256 e42afb1f43768382c2435e2acd5bf337bf402151a9181035c1abb4d4917a141b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d0e0d6b9e2b29bdce3fe51c5d8b5234d8e784d28ac01203bc4a280473f7b1df
MD5 2e41622c09f36e577308eaa9f8d298bd
BLAKE2b-256 76ca1dc3caade988d59c082ca95535954dd3e00eb2306b8903caa17e69d07725

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfc7bdb64ae5642338cb613185afcc77db2d10c689067767c4672d47a39354f5
MD5 abcff71af70e8634020179dffddb475c
BLAKE2b-256 d4c6be44a164456f0383758278e0119751dfbfbc3a4b97b58673e6bf1ee94c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04a04cf3a0f49ba18330e9420bf86517a49570f79442e0bc707834f99dd8dfa7
MD5 e74df4f4f2992ea8614798f275e0aa0a
BLAKE2b-256 d17ffbd1b4ba58b66cb90fb17ce432c6797b4b7144689685a91ebb61752e4858

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 664b701dec45c31f5d01b68bdc04036e5300f9dd4d0fc5f55b54e95c5830d421
MD5 ea213947efbede4a74d444f6f320f353
BLAKE2b-256 13aa74c8e62300e8caa7261f84488d30114016a25d2ce6279f821c1267f25fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d94692d0654957971aedd9a2bb3709edd512d8bf43ca7631ec00991953e393b
MD5 b72186974fee3186850c721a2c255efe
BLAKE2b-256 d111b7a4212c7ffa35bc01aecaaf70306173f5b68aaf68f5e5e459ea210ff0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57320e6cab51cb3bc7a07e27060cf0cde80c1cb6bbe8c7296c1a0b529401949d
MD5 1665a4230630a2ef6dcfb374d7c1768f
BLAKE2b-256 a36e7c4c77872e54b69f52f38135fa490a0ed6380442c152937a761ffd34ab28

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de28b0a1be698e60d27ee4cb706cb95a6f712cca0cd0c43e196d65f7f7b298d2
MD5 d84097f02fd8a39b93787495271350c8
BLAKE2b-256 f2a6bfcb53d4aa4dd1b619eab51192db9ffa4b66876dd8b52ff12947ab5ce92e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 413.9 kB
  • 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 python_gmp-0.5.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 107c7aed38d4898374cc03a730c538536ac94c7d5cc44b49c9b14860306e439a
MD5 8f018f1d83fddfe79090baf849ee8db9
BLAKE2b-256 9b6f5a72a4b3bc51ac1e853a19d4a14595ee2754b89c6cbc5680fc267bef47e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1a065f737f291b7d33ecf82e168ead84450e8322f4b21c8767b61ecfadf2595
MD5 96a6ec58250125b853d1229b0835a067
BLAKE2b-256 53d89b375dcf1f119062b5736ad5d3158da7678542393aa68b8594d5fcd9878c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2e3c0eff3fcdbba7cc59914824d8acfdef75c3a2bea73339e0066bc7eb80fbe
MD5 89f0e998894df291d3fb0eff632a4c4f
BLAKE2b-256 597cc44f0e4d6b6445b6050994afb9d59f6d2dbe850658013413d173e25890b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d49a3e4140b716dab8daa1add43de121055a9f5472cb3d519b40e5b251200a04
MD5 466712cbb77ccd1055956460fb9568f3
BLAKE2b-256 14bbb5a500a79a4d588aa054d40a6d1ddad9391d9f7659d611c60eb96199a39c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2c52595335eedd84d970303d0b2c5b75a50f563b3ba3d195856445e5f2cf939
MD5 ba219289f0d2de07a24199486f53d6d4
BLAKE2b-256 d55fdb1387c830ecee00dff1adaceb1f7ba9a5999003336bb9bdc50c46a92417

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6b898c9845510797d658b634118e90b89fd447d6e447af4e7a536d6db41b0a5
MD5 b600ada01276139bb825325443e17987
BLAKE2b-256 1681199bcc20a4c174539242743229ad6951d329efcc6fef29d600ed2d4eea2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2387862f8c4294aee29fe8c2ba2bf0197a6cd2619f34ae8d5b9c1cc275d0978b
MD5 48cd0fa1f59a1f5836deca630133b2ab
BLAKE2b-256 78b249f3bf071e83c1493ea9f6b2bc3c4655bec95e0a37c25ae7965d7fcc8a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82c68771a547696983288321232b6fb3aacc692106a1cb82c347cef84fb74197
MD5 0bba9d683f79543df841019320c5f22f
BLAKE2b-256 e0f23fd25c455fb464665d604edc71bb7230a152293a8646d9343bf272b6270f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: python_gmp-0.5.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 413.6 kB
  • 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 python_gmp-0.5.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 15438f37f9e0452cb2fea25513150fb6f349d071478e69cc4d9548b57e62cd92
MD5 4661c7e17f0d720951aba51b89b63689
BLAKE2b-256 eaf6767fd82ceb39d78ee79785b3570f42abbe5a59391cde7a31d39eb0760354

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3743f9c6538096190f5b61b5c6160f5d97f9c1b6987abf9130e7ca3e441e883d
MD5 7d88039a56b1ce9d105cd838d19f566f
BLAKE2b-256 178fea87d949f95ac8dfaf32ce0f15b76e519ee13ce89bad8c90508aff2100a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5011c9df16b9ba9b715cc877fdef77647119fb4473f98817c0245cfdf263d451
MD5 cf2238823e8bb410c551d8b7a78e6b35
BLAKE2b-256 5b24a50ec91ebf0851525bf0cfd8210f3e5b9589c7d62711eed4f36807ef4eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 440cb2a1b80ae9e8c52ede33e58a03b4d00e5391106fab4cffb44c099b67fade
MD5 62b81a25ad795ebb46115e71a66439d7
BLAKE2b-256 c8476928eb1327f320fae5ebe644e2e262edec3d2d5f5f0840de72a1b8a57395

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-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.5.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3a5e3d66b31601cb32b6f5834547724184f97f4ce739acf38eb457316288f52
MD5 7b28776eee735a2d7b622610565c1d50
BLAKE2b-256 1b9fb530fe439b0da749b4fd8a6843df485725fa91a27fdf7403c5717d6daab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64f7f6e567cabf9abf9a8174fb493c174fe58656226c383aaae3a63dc373b99d
MD5 7295d9057aee8153071d35768db2d6ed
BLAKE2b-256 616e1279ac0c1345562fcdaf2b0cec8d951271e9fa9a3e9db07529bc2e5d9529

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 102e05bfc27bca56f29127c8d8ca55055257b0252b16fabe58d4173ea3fa457e
MD5 7d6838018ea6ec523464fd7af96cde51
BLAKE2b-256 4a6f3357b6c2201ec980c1ad163f9b40b2eefc978e22f6009108366b3db1fd67

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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.5.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10c030c5adc13dca6e521d07423412e45d396a2b769b02640b25c857fa8a8250
MD5 09d0d11012eef2aa5a78a597982109ea
BLAKE2b-256 3b87d6d68d43eac765d68b579f06571642eb697ad36edb6f05eeadfcb9080e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.3-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