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.14, with PyPy3.11 7.3.20 and with GraalPy 25.0. 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


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.1.tar.gz (65.8 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.1-pp311-pypy311_pp73-win_amd64.whl (555.7 kB view details)

Uploaded PyPyWindows x86-64

python_gmp-0.5.1-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.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.7 kB view details)

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

python_gmp-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (279.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_gmp-0.5.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (324.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

python_gmp-0.5.1-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.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.3 kB view details)

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

python_gmp-0.5.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (282.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

python_gmp-0.5.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (327.6 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

python_gmp-0.5.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (316.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (352.8 kB view details)

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

python_gmp-0.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (314.3 kB view details)

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

python_gmp-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl (286.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_gmp-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl (332.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

python_gmp-0.5.1-cp314-cp314-win_arm64.whl (422.8 kB view details)

Uploaded CPython 3.14Windows ARM64

python_gmp-0.5.1-cp314-cp314-win_amd64.whl (570.7 kB view details)

Uploaded CPython 3.14Windows x86-64

python_gmp-0.5.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (314.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_gmp-0.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.1 kB view details)

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

python_gmp-0.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.6 kB view details)

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

python_gmp-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (284.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_gmp-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_gmp-0.5.1-cp313-cp313t-win_arm64.whl (415.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

python_gmp-0.5.1-cp313-cp313t-win_amd64.whl (563.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

python_gmp-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.4 kB view details)

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

python_gmp-0.5.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (314.9 kB view details)

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

python_gmp-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl (287.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

python_gmp-0.5.1-cp313-cp313t-macosx_10_13_x86_64.whl (332.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

python_gmp-0.5.1-cp313-cp313-win_amd64.whl (560.3 kB view details)

Uploaded CPython 3.13Windows x86-64

python_gmp-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (360.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_gmp-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (315.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_gmp-0.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (353.6 kB view details)

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

python_gmp-0.5.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (285.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_gmp-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl (330.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_gmp-0.5.1-cp312-cp312-win_arm64.whl (414.0 kB view details)

Uploaded CPython 3.12Windows ARM64

python_gmp-0.5.1-cp312-cp312-win_amd64.whl (560.3 kB view details)

Uploaded CPython 3.12Windows x86-64

python_gmp-0.5.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (315.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_gmp-0.5.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (285.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_gmp-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (330.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_gmp-0.5.1-cp311-cp311-win_arm64.whl (413.7 kB view details)

Uploaded CPython 3.11Windows ARM64

python_gmp-0.5.1-cp311-cp311-win_amd64.whl (560.3 kB view details)

Uploaded CPython 3.11Windows x86-64

python_gmp-0.5.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (314.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_gmp-0.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (352.3 kB view details)

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

python_gmp-0.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.0 kB view details)

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

python_gmp-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (284.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_gmp-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1.tar.gz
Algorithm Hash digest
SHA256 f6bbdd9472bc33b62ee87b1064cd418a8a7b62de7cc7b653db1f06a598a19194
MD5 cb942d3f96776a5138007adcc2d39496
BLAKE2b-256 c484e300e8e85c45facf8145b5948aa26888e8d91af0018ec1d936acdc3115f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3f4ecafe1041643953badd6a844c03b0d745ae4d45c76f3a0c56f79742c3af40
MD5 da1d256e9dd7e31fefb65e1edbb0c216
BLAKE2b-256 2c8ddabe95758a195de15091c2764e99670eb0dd8f0efb5b7e27bd269947b588

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b2c98250412373626ed77fd7350f45d404d63693af16b22fe27afcbe7de04c8
MD5 d55020a1ab8ac597c55b435f7c54c659
BLAKE2b-256 0d619c5e11987dc39aa2ccb5ac02b9c78d9e0d268e94fe2ff76354813554ab17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b048ac853350b71c9d1552e86f05fa9d829c3a99b0506780fb59be9fed8e7398
MD5 7250a53119aea731defb270b2019c054
BLAKE2b-256 7996d8a2772632432a8de3c177107ac834a1aa739063a0c1164091177ca24f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f80679c2418ea700155d92c30ba2b92286712a0b9c0bc5a2eaa47794c6e512e
MD5 7bea83091575adedeae4df01135a67c6
BLAKE2b-256 95cb31fa41a350f05b2d970f242a1d9f0bc93dbac69a61aa0d5c507941217e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db17deef067c120cc07030a378d961b54269fc24e08d5e9f7e551ca935c1514f
MD5 68c830071445b8ab58780b68cff5f499
BLAKE2b-256 206be5d03e3067aab206dce42a23ef51e0bf6ff9cf9a342475613f734b8c2c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cb6e0473073a3a77397f3e4eb100345f0dea89b90d7153034e9c50eafe8046a
MD5 a6bc8b62b098a38e915a70c23be02059
BLAKE2b-256 2f8743c2e9f8ad4e89dbfbc87f891a989d82620bd0328211810689c545b2fb46

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bca5c0d07eb3e6dfde9c901f9176f425132320bbf9020d6dfb2a83d62c7661d
MD5 2154b5b1de7f518462472c0dece5e521
BLAKE2b-256 e7f6efaba9fbec48290bcd1e840e69e69d03160a420280be2961ca5f809bc8c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39239cc908f8c36a5d5e458e2c8344288e8329948508424b4fdd419f5c6b27f3
MD5 759eb94269d7e5b1e1a10413d0952968
BLAKE2b-256 386c9611006822b7f96b8772cd3d1577d65b45370e7018b2edcdc3f3a7e13ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63918fe135cb0bb96b96248788e6fa1e9e144609ef2d54a005236e8f6257152a
MD5 54fb44df4ea607e50940b797a231b318
BLAKE2b-256 66677d4cf0af0519c78fab1d4d86f5e0a98ce6f7185dc090a965a586cfd37460

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-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.7

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 174c32a2b56320edaf3c1e07153a43a83b3483c9c77bbeadd6404541cc56dca1
MD5 9547cf31df7b5d54d6516ac391b3f369
BLAKE2b-256 5ea9c5cc9663de51b116ed64176bd739912d1751d7a34184a2a8e668de586b5f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 74848dc60dedee63a6911bf6a8e1e498189e0b30273ef0afcf18debc1c7892b9
MD5 c1af1002116e7acbf6d61f3adb106c57
BLAKE2b-256 77fab43aeedbcae3a155e2c4b63da110977df251d754e105b778b8f6581cc6b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0776503966f55fa3cdb5252d886f6450bfd7fb0994f1080505c4602b2da475cc
MD5 cebf8075970253e211c1d41a2219d9ad
BLAKE2b-256 2cf82b27425d387f30421291c9d953b54898bd46044affe5addfd85311b9bc9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade20cb1271103bacf2867d3fcfb21b9595402553472754522dde7e3827f2ef9
MD5 9e0f92030e6db6578449c1efdce6b32d
BLAKE2b-256 8f574d91c50f06a7786d35c29abec99175d37fa69df5d3e09eb92d2c92e985fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17a1567ad5b83d0f38a56980d1069b47410469e2ff64a0ee3be80bcb3f4d8983
MD5 6f2cb9cb3f11fade27e02dae8c1c9106
BLAKE2b-256 94b7fc7b52e6520fcb01886e6493a57335680f4367f02f1dbe20ae92f4fa72b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b41f1741c984f5f98a4c4e1089c8a0be41c715a4ad4cf10324d5726445c4512
MD5 552339f4da1ff66099bab52c6ed8e50f
BLAKE2b-256 0b947df614d58c5a2b5f5e300877c8e96f6b7028ea70cec8d3f8cf0e4655a032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 511dd3d0a0a8d13d208caec459a2edf31110b5796dea0b5623ef1cd398187b11
MD5 c12c4f8f1d317880f225d027d5064a1d
BLAKE2b-256 3aaf377f5e852cdca585dbc36e2ffbfc7762336388665bd9905234a05863cd72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 403020d77ac4b8be99cf6f6a1c048bc8a6938c07aef3110c67c1fde52416b172
MD5 dcc12c46b7acf697105af4c6ca20c544
BLAKE2b-256 29c83ca3d51d3474400ecd8a73ea81f74e8d6ff27f9d044dfc8f70fbd9855f28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 422.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b322503e4d65b8bf9e5993ef1262d0da40fc7505bf0d8cbc341436dc0cd5e017
MD5 0361dac098471de109086cc9ea701c72
BLAKE2b-256 c69d03d9afc32a55c9bb381b983858ffa5c67e3040c646aa58f065782c5a1f2a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 781eb4dc7f106f024c8292d796ecb823f306b89d25b0cdcb48546126252353c9
MD5 2c3d4a2326de29756d4d65c2eedf3004
BLAKE2b-256 80ea508d4e59f098db51e70d0baf2fc900119e1124abd5b7bc2b928e9e71dfbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a43327a05456c825d0e1aa51cd1dfea5c2665a84a68c7aed7509c9b79c90aeec
MD5 489805c0d7dc09f6e43c8ea0d6aa8abb
BLAKE2b-256 8382b91fa732a0bb8083901c648f361fe76376aee221747b0254b153d825e5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 988ac9e844b9b66bf58735aebe595a6d662177f4413abc522b1c763c109c069d
MD5 ce3bc743834b1c7502f8b7845b930d42
BLAKE2b-256 73cd1d5db281ead94336831526263382abd389b9696c9a0f30a6a7480c9d6aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9de954c2df6e0b9f83c54d568bf6442e4aad66af219be9d8a1de3743c4889080
MD5 0f954d0483325191b8b583a18095ea2c
BLAKE2b-256 453f3dc904a6df8dd05d02f78c70ea27846a6685596d2a78ab46bbfed4b0aed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76f83b648bf8301181247fe01c9ff7cdced6cba8318f685e76b7c06c5c7a2052
MD5 e7f637c7bd10fb6c0f93ae530f0770e5
BLAKE2b-256 d429e0cfb970c5b0438ab15807a4a3dec3837ebc726d5e2d3e97ec4d852a4c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd690a78a441505add641c877e9b292815200d6a2aec2e12d123a0750bdada2a
MD5 6323a7b5c28adf8dc1acf95194adbfac
BLAKE2b-256 5a16bc38b56b2d135b770955ada9f013ba7c0fb963cd83fc285a80585c4a98e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0706e7b02c1fcf21f3264274f50f87b9d5bb274a72cfb9af1ff0a40c860328b7
MD5 be0d2d88501ed5277be8048b10ca3ba3
BLAKE2b-256 24cba54905956f4eaf388f212e36e64f5b83c6bfafa4b06cff261a1c0ba2bbb5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 415.1 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 7452481e1768b8334719612e4e2c929a1e0716b3f520baab342f901a30c9d0d8
MD5 0e5eebaf5b6c02c5d1fccf33c71cec94
BLAKE2b-256 0a350466115a300b3fdc93d90cfebdb45264ffef750caf36421c32745ddce71f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 563.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8e6eac469234a170f6c57b500d97e290a58edebd7761e5df909ea4b540a087cc
MD5 2639d502958089a0b4c0cae1c47dcf31
BLAKE2b-256 9472f9ffeeb73a13682226da490f72efece3f58c099bd8f183c7378aa4c18f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8f7b1d891cd85a2121e6b1a69c57c1864dc0c1baa048f2092768fff47958257
MD5 d2dd9fff46f704ba0b7295224b118689
BLAKE2b-256 86687159dfbecf960a8f6b6e6af7f3b344892f81c5a470d9bc1933cf2fb73aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764b841d8cb8e8eeb3525368ae0c5fb0fe44a69c916185f9f0db95a86fbac791
MD5 d99a1ca03865492da3a40b515d2a4cc2
BLAKE2b-256 019f4fa646cc4d8e16d426d59d2e0e5fe95ca1df675d3f75a210f6cec68046f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-cp313-cp313t-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.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6c482f442170d33c1a9fa5fe71a718da7de0abb9773b84900b1c170cc964335
MD5 b537a84e0b27c7c6249e2489a554748e
BLAKE2b-256 4a132c0b86631ad8b14e9e6d1487be1f4a8a84e78549bb04367725c2415b40be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d663b7aece37cb5fbd10bedf7c33ac1d34b4959218fa32c095303c1179b2d129
MD5 0abb86f64923ba121441c44ebac297f1
BLAKE2b-256 12c9f9c31c6a2b053f73387fb2d529172e95e5eaa4a2f8630f36ca0f4f44dcbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a906484661a87b05d37dad689e1ec8dd51e8957042df3f733093539325f3fce
MD5 14cc90156a71933af4a7e3689d694496
BLAKE2b-256 439c0bdb3c1ab03d15907bca7700b2e5fc06a1a92fe2da3f7e64430382283fd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d5102fc6953276896c4f3e64a428a741765bccfb3345a08938f722005ac98ec
MD5 f18d025a24f75caf75dda7f69aba4892
BLAKE2b-256 030e9db1b5e5d99603d16466f60df5e252086469def3426187bdd98494e020af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-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.7

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d4c091089b7d4c2d14686a0f3970beb019346550dd041b13ec517efb6a36cd08
MD5 17e76bc04f446ea7cdacb36fc1dc40d0
BLAKE2b-256 329114396aec77456c8874e436df2113140f09faa9da0ce419813b1548e23657

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 392688ecaea6eb39022c02d968033f88302d1ac4ef7deccb81360aace47e7df4
MD5 ef99af0621a487d85e1686d3bb9b5f1a
BLAKE2b-256 3237427f4bae66909241a42b835f0aa6f0c989c9162e8f3e2a67b1b0f1348d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a53c65d1c0c179ba7d3c87be2cee83517dc9db10b30e1e1a0950fa4f1ebe5f60
MD5 a1988e2623ad944bf171f80c0a12509f
BLAKE2b-256 6b12d868e335ce70fab4097d5e4ae4a785cb4d2db72e556cde2088cdd1dfa978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a3bc1f69dd759ba22dc378f333239b83687e29c06f2c968ff36d00bfe41f881
MD5 416e90c21d936656a11c5cbe304000a6
BLAKE2b-256 aebdf3218b977d0e1efa533fd258a31651132d5f2dbc20e8dda4fec8279e194b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 771e013b7a36c7b28ff1ffc2a999de3d2ef741796cafeae0f69bfa86011089ff
MD5 416316b65ead17eaee2451638a3dcf62
BLAKE2b-256 e0070eb54d3974d7740452d78d27c3b5d386aefe9e00553cfda91c5b61726ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba9bd29a75bda4c3fd6d501a4285aeb8ef9632faac74eb88b67b40ef75a7908f
MD5 29266790eb9ae6d4fd167aa572b05024
BLAKE2b-256 9e0184081f664652e69f1cf6920117c41377622b37f428652424e77e086e0111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cba1daad5973ffda003798fc5d72a216a2a36dbeee1cfd58ab04a810d29c1f1b
MD5 b6a74a764ccd7224a4219180c15c357f
BLAKE2b-256 db5d4118f4bfcd6a7f4539e34c77c777bccbc050536e75d59cb27e64cf07b3e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92280b7788f5dce356c2a48ff310aa4d18d83de02b5530c4d5e7d4b5e813c576
MD5 7e34e660b1d0d9ba913ec76d42b61aeb
BLAKE2b-256 acecd82f051c21036de6f8b53ebdf90f7a4db1afa44ebce3412d9cebab8f1d68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9ac5423cc3b9ee7f3f3435324af90b17e9c6a03731984067dc3899a4b55595bd
MD5 9aa334286c942051e4f9f160ec3105fa
BLAKE2b-256 f33eac74c0c465df26d4ad94b68de11524ac9192c2398e33d7dfb847973b4797

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a3bb613042ffd9c9f880917e2912f7b4b854a3a8d33eaa2ba5ad57d1e96b7823
MD5 c69ebe07e8329de630cf6bbdbce1abb3
BLAKE2b-256 2a3473ee206edec99f96a3f26508927edb37c873c3ff18ace4339107fe935b11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0241909acc2d0d40b1843d8049aa0d7fd01c3b2aadf9ac25cfcc2b919426b6d
MD5 fc8733db9117ccda084129502a199948
BLAKE2b-256 e15adc990f3b018fef3e2708d80fcce6fdbff92123d55179501aae47cdab7b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77f62d4c12a2dc5878214bee77bd74e3ab2dd4e09f645dfec4283d1c0995924b
MD5 081c62ab89aa9b48d95269117d21b979
BLAKE2b-256 4743c4b67832a879410cd19a3decf68fb0c8be39a1f5383d62c545eb989f6104

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ba68cd93306da8b8d81ba964ad1f92b686e896072b4614058a20ca0bd6819c0
MD5 07efc9470515eb7d15428d55b5e3bf2a
BLAKE2b-256 22a225143514e3bec8c9cf4a97f5c7993c9dc6d0e707d8cf0c008e13b8c07909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3db8068f7451095b3b9d6edd50faec2bee36f5143ee9b522600c10f30f1cb6e5
MD5 f117cfc2a13a7ba2f55ea734a0bda4fd
BLAKE2b-256 2dbc9edf485fc5681cec754e61055ef6b3b8187f768ba06d1d4087ebdbc17522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1677197e41fb0f47d68ad01102754e5c5b228f95d914c373a240a0f0fd5e92ef
MD5 cd7d8802f9273bd021d69d620da20aea
BLAKE2b-256 bd4f04934f959e473ae1b094b4f959a73904c6bc79520455a9e92edad1c697dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e42830d8803b42fc6b0fee8a7ec8eeb72b23ac16da4e18e3b2ee57858bcf4a49
MD5 cee2207f36ae2daaf4860bb922a6f870
BLAKE2b-256 654e4f68dc1d56252c8f16fa7144607ef46cbbd948bf14edf2f9f02c739c8cdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 413.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5da96f13258ba59e6b0ab37692db1b5c52a9a26183de016e2b6b5ebbe90d58c1
MD5 b2dd275bb1388a1f2ca5caaba9b1bbc4
BLAKE2b-256 6766be0c7eb906c57bc72ccdea84b7b3ca7ff85a9feb102623bd665c0d7e9c6c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14c343b0cf9e464b0bd3bfa1cb952a65cb6ef49b7a4a55ad8bd2b3e2d4f44f19
MD5 fc378d56737d989b7a3a1078c2765244
BLAKE2b-256 2ff93c38f5802af9551e7c0b6cd828d8d4337492cea7dfde88ff6fa5492eb73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 063a41abcd279ccb330eee6cdd17bf1fd880e216f1a0dc69c7786c2033026778
MD5 781725b3bc2f6f1061d5dd937760d3b3
BLAKE2b-256 2d05a0a3224e2f23d7ea455e926f009668caa8dc37abbb01792541e8b92bed95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf53946894d21ab78ddd33b5296febdd91c6c6b1be45991016e05c5abe049e9b
MD5 9ade2cedda585d951caf39184af4424a
BLAKE2b-256 9405d847e91621cb204f29bb51c9f2262a37bdfed5acd439fc615086a84154b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3759bcab840c0ba77b48faacc63b367f2bde6fc97e8a73d76c45d776ba76d783
MD5 07e421a3682cd596bc3e3c5c0775ac41
BLAKE2b-256 26f4131fe1e973cae130bdae46295772f1ccd98d502d4df5455ff496d1f24107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fa58c5b2b3348d204676f539978cdcf6de78fc8c417ba6f337032b76ae593c9
MD5 4349ab841304bbdbb565fb9923abcb55
BLAKE2b-256 cc2126e4793d58996c94b73c4e426e1f7434a047e5c1841bf8161289b6bc1d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00d24c9936345b70f611ded6e3b70222e566986712fc0aa81de639be1a1535fd
MD5 79cb22f2bce6016d9013f373d3abd7e2
BLAKE2b-256 d3efb68c6c32bb0106d09f37b9e6bbac17187edecf1885951432ce3b955bf457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1488a77320bb4d9375c209e78e2a69063b9813d0a3102dcdede07af0db238b0b
MD5 7d71f0b012ee30b38f9eb5958f1151d1
BLAKE2b-256 627bda60a5992c822152cb7e32d9264ae17e0f5e73b302562e9a320e4a41ba82

See more details on using hashes here.

Provenance

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