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


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.2.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.2-pp311-pypy311_pp73-win_amd64.whl (555.9 kB view details)

Uploaded PyPyWindows x86-64

python_gmp-0.5.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (345.5 kB view details)

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

python_gmp-0.5.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (279.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

python_gmp-0.5.2-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.2-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.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (282.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

python_gmp-0.5.2-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.2-cp314-cp314t-win_arm64.whl (423.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

python_gmp-0.5.2-cp314-cp314t-win_amd64.whl (574.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

python_gmp-0.5.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (286.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_gmp-0.5.2-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.2-cp314-cp314-win_arm64.whl (422.7 kB view details)

Uploaded CPython 3.14Windows ARM64

python_gmp-0.5.2-cp314-cp314-win_amd64.whl (570.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (284.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_gmp-0.5.2-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.2-cp313-cp313t-win_arm64.whl (415.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

python_gmp-0.5.2-cp313-cp313t-win_amd64.whl (563.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

python_gmp-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (360.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (314.7 kB view details)

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

python_gmp-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl (287.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

python_gmp-0.5.2-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.2-cp313-cp313-win_arm64.whl (413.8 kB view details)

Uploaded CPython 3.13Windows ARM64

python_gmp-0.5.2-cp313-cp313-win_amd64.whl (560.5 kB view details)

Uploaded CPython 3.13Windows x86-64

python_gmp-0.5.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (315.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (285.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_gmp-0.5.2-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.2-cp312-cp312-win_arm64.whl (413.9 kB view details)

Uploaded CPython 3.12Windows ARM64

python_gmp-0.5.2-cp312-cp312-win_amd64.whl (560.5 kB view details)

Uploaded CPython 3.12Windows x86-64

python_gmp-0.5.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (315.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (284.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_gmp-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl (330.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

python_gmp-0.5.2-cp311-cp311-win_amd64.whl (560.5 kB view details)

Uploaded CPython 3.11Windows x86-64

python_gmp-0.5.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (314.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_gmp-0.5.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (284.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_gmp-0.5.2-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.2.tar.gz.

File metadata

  • Download URL: python_gmp-0.5.2.tar.gz
  • Upload date:
  • Size: 65.8 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.2.tar.gz
Algorithm Hash digest
SHA256 4a82aead8977f1f8dd7688862fc373a28a4511bc0bc169bd056044c6691864f5
MD5 5e830ca014dd525b112ec6a0f01be991
BLAKE2b-256 7f488012e4c0d2a157fdf05c22cdab88fa25df581b49f48cf20826859682827c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36c6b56b492c7ea024cec6222b91e67af023a1ab56f1c5ad7aa3d1ffa094afb6
MD5 5b69ac2ed7381e12c5333d30bb5f1879
BLAKE2b-256 73af07cf9c9427826e204c6f6e410090e70194bf213f80612e56a5ad4e4bf688

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c33bdf060d733b7318a5d58277566a5fcfbe6e31741fb0789d004c7c6431be12
MD5 e7760c4da1ffba7ac212b9ce3c037c95
BLAKE2b-256 5557ae809d0c2bcf16162144c71e11777673650402d62356959bf05b8f7b49d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 248cbe1906f1638d1bb3b7e58a9fc7922881aef782b4406a9440176907a17034
MD5 136c6d4b84515c3864b13bca228c07bc
BLAKE2b-256 398bc7b984451ff1530f9bea849f104c63f3ad9be58a71f669326c6741bab092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 693b500b81368b711c31226bebf689eb998e5c6ae9d8b950813988f1dad39ebb
MD5 df48550c68318699999ba418ec9f568c
BLAKE2b-256 ba6ee924b003c5891b07dde2d2235434073e3cf46b84635f03f5f24a44e13b13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87ffe6d96e1ea4fb739491fd771faf0c160a8212a98f558321ecb098d7f13bb5
MD5 3e74b1d9df6119a033ea50b6f31412ae
BLAKE2b-256 0c8d407f14d29013be3e0ce7bb5a57a37e3a16593a2fb7c699312ac08dee00dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-graalpy312-graalpy250_312_native-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa9b75f62ead80a254ffe0b15292ed993eb8483a3a8ed99481aa434035815f41
MD5 0b119e2f1adbe42a92217ead13a1a401
BLAKE2b-256 d15708c43cf60126e51dc3dee985015e4a5f5900f7bafdb920275cad6d348c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b74f0de337da98a75d60459bae3247170fe5d27eb29a3964067c4a0e71ad9369
MD5 9a02bcd48f6a147c8c99879f95839eed
BLAKE2b-256 d1675eaea1c30da679a924af1e9c0b6a7dc8e4ffc7a10f14a561c8fe5d0a2f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3b8310ff21c71fe11b88a4adf6955f768273423ad3c409d12fc9c27582d1020
MD5 6b89f8d79b0f4e134599bf4335c13f5d
BLAKE2b-256 3ecc01eaf768234e9b374e351560348f9fda4c4386bd26b975dc58dac008aef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7c6d584f87d198c5ce997d86b18634a43ea9e8adebf2cc4d54e6513db590f7a2
MD5 e59aa3ec03e31daf5dd4346ba60ad8e8
BLAKE2b-256 87094f81613291c35427039799d4b9719f0ef1f9b1d94e59e026966255846e69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 bba64c4d1537797dda8df1cb5507f0beb6776ed021001e2baf24f1209bfff612
MD5 22fae675d808aad34b8d8c01530abd68
BLAKE2b-256 c566cad50111e08d33792bb84359c478440751cffda0227bda1ced13b7c7b624

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 574.2 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7dc128e43456aebcc3eb855b19b6e940ed75315c56b67bf1073a5884b47d345b
MD5 50cc9f2e5acde9c9b06db1eb652e579a
BLAKE2b-256 85e2f24fe18ece6443a9c18001c6bd7ea148abef4b6553f207a67a6f4e73b918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3bf748016c46a1d3067a5b47ace8bee26cdbcb065383578392321969e879c1a
MD5 b3af4a131fd13f9132dfe6bb6e864d59
BLAKE2b-256 587553c65b4fd4e8821b40460e82e0a5ccdced1fab8eab0c30d8127f2bbc3177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c05f7fbff36105ff25c733b3e8f7138277c9cadbca017786b9dd8250bd1a3e0c
MD5 2715b083e91ffb805c5f2b73b4be7f70
BLAKE2b-256 539e4a9f32b67566386c3132521885ab3509d5fa7d4bfa015602bda77b531aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4487c79b5f1a4b481bf4f171026cf814233e8f19d30c1ce81228a3ee3fdd673e
MD5 0ae5b54d873612018a6b4e18a19553db
BLAKE2b-256 2cdfbf60e67cb1ce781ce4ee50471980ba70597068cb41958628c1ca00a0a8e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 670708786f43074222d440e62b01f14fcf138dd1fc70bd78f3dd99fac1b5b52d
MD5 1a76a73300f829faa565ed74a2661170
BLAKE2b-256 e4cd20ca3ebe03005120bd7bcf6f6cb8aa83e4a588d90731da7d282ed2fa3e22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1afc01146621ddd57dcaf4ee4e6d27ef32afb4f6efe946f0394978fd0f50ab1f
MD5 49c4405544ea4558b600d39aef184591
BLAKE2b-256 9a5fbc8564f5e61f28358e0369d9c8b46b658c69243775207bde522efeb4785e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2f39e6c98012cf3bee8a4a3fe4823bf2198d7ed3a99d39b40331a614dc1c76a6
MD5 02c463d52faa2b432b81432fe19f1ebf
BLAKE2b-256 9dd459167390b483bf43c224c56b52f985618018363e0a4c02ca5751ca8e5247

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e3de43caf0b58a650116461e9d48d86e1f0e599ff8155461333085c7c9e7b230
MD5 c9f122d45c92e8fab69335c8badc669b
BLAKE2b-256 1d12a520f119d86f090e89574f8382cb484cd1c2fd40ee958f9e35043e619f20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 570.9 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e18ad25892cdbe98ed8c12c62e12052614889a71326db4f980328725a627f4c7
MD5 3c507cbca5206a4599ebcd10ad9410db
BLAKE2b-256 04e64709af4003481fec3790b173e34913942a183429693e73832d8ab7df41af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08db87dc8e21a64de62381d2a89b875fa3e6396b3dc216460a5d6dcbe81fc4e3
MD5 9fe34de4b15aca7beb76987a5b0730b3
BLAKE2b-256 06cafe0c651dcbce38cebcf40107d8edc8a9a365a6eed6caf1ad19fc82ee5f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4aeb58d21b35207538662e81375a688ec9d7579b6ee2fa2ace5982e5c0839314
MD5 0450652cdee1510a42bcc53483b8cd85
BLAKE2b-256 1aa154e0b8a5a6f67a1859285b13621f44ac0925f355adccf790cb2e10fc6929

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15999a66f0ed927d690595507a6228339ad185b2765bf900fe69669631f8a5ff
MD5 8aac8e6e23b5cfb6df901108fde31b15
BLAKE2b-256 e398884e03d09dffd73650966674dda47d5c1def343b5b1038144b1f690e3d74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b2218b11b66735893e9ae8cef32e08fd563e36b66d743503c75eee3354cb22e
MD5 b206e6fc6fa49fcae86123d3e9febf14
BLAKE2b-256 c952dd28c6c76f67a3804ec7a5b6f56416da004e021b67f1b05a551a53ac4ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e16705a4471914553a0daf892fda2652cb48c78fceed84aa9567193539e0eaa
MD5 888819e38f7ff3b5230016fb569acae5
BLAKE2b-256 bed6135a7e353a4750599c4992d729b576be99d5f11f8404007dc377b91d8015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6b8099b819d6b1f88b2318441584e3b12cb8a24c1a0fb8acde140eb3aae9d6e
MD5 a7d36ee02c148e3acc8f66231f641bcc
BLAKE2b-256 2e81967f1876d9a1ed902590e1b60eea4d42ff088ad4ce4361e64231e8464b37

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 67952d63be0501422be273e94f715662b0ee34d174180207a6609719e0cb80ce
MD5 bb7112d1878e427a356f2aeba8af7d1d
BLAKE2b-256 6182cc2b0f7d5b15cf912333d487b59abad80da76ea598c7ff1dc75d825a21e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 563.6 kB
  • Tags: CPython 3.13t, 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0e60fda66e455bdac95198f573b846162771e563fe74488615c6167d8e2989b6
MD5 8a5b590db4a34adbc27438ea806e6957
BLAKE2b-256 e4f1422584a06e8dee6caf82931d42b7521b2705b442439d4180d460d2952bfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25629d68ed3cafa4da4b96bb07fa6a56bce202584b23fc2289c75a7306e9fbfd
MD5 7b21d06d85c98fe555e5fa85e1db5492
BLAKE2b-256 a7f0079549c5d78ccaf515ef6937ddf00d0c2703e0bdd51774063f61940ee2f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3b030bcfaf3f65569554471c350d13b7b7ee781ee0ba14a3f6cb70a6822c37b
MD5 493444bbe771a32deab083164d0db8ea
BLAKE2b-256 eddab6f8f3bddf3da2a4d85ed5253925300a396e4a44043dad652a64f5a48ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22be4cfa26c8d3be4f63db15a9ca06ba14cfe660d28651abe18b01afe7500e68
MD5 b96e44a1eeadc14e8d633bef378edaf9
BLAKE2b-256 f935ed806d771e6c52b2da3ba5f9d48253d64293c87e46449269177cc35c8a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c664b9e2bd805407d5d4a96fffa326442613ae38c47ea0e6734c9151812e3701
MD5 18c2b32610cafe4d55f25257bad20a0b
BLAKE2b-256 5338a2d6cbd3b191a75d954af2b703f27a9e242e45350ce3c60076a189dd6ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd36f37ad236d8ae72578404b85b39666bebe2dde50800d25b7cb822910c4aa6
MD5 a601d6ff15e77a079e38db70d9c7b707
BLAKE2b-256 1dd210bc57c45422f9271bccfddda6f3068b336be72f76fa27482f6dde007cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6030af1466a3973c2fbb070b30465f246c0504fc56a0d0fce81d3855cd5193f9
MD5 b3ce783f8338bc288f72a3c3a8e5df8e
BLAKE2b-256 a8f1bce4d14ed4bdc5d280d0612ccd5fb95acbce1af376c28019f1eadf8cc3f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f56ae8de259c1dfbcbe4d1943da2b8fe7b494d89096c8e347ec0d624c9913f85
MD5 5487797b68d0f825ac7f4980fc79f598
BLAKE2b-256 2eccf16d8c38f43ac5f9f1075c8c7cc6ba3732b92d843ccf4dbab6e24112ada8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 560.5 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3bb2f06b02c252cd37458abdc9f7d6ef5ff02ce76c1d75dc43284b90ef9f570d
MD5 1dabde530a76b71cd82995099ae43507
BLAKE2b-256 74fe86c6fb1bba4383bc91e1c492b20b87d3ba6a3b9b5cfac383e9565201d04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c1ec5ad9cf39939364ec657b1d165c745674992bd4da11619d62f4f92bbe777
MD5 f45e89505172b048429abf37d266957b
BLAKE2b-256 974d02356e15a731fdaa2bc46faf52a8f3c07e4f9a26ab4786d0381b63291eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d8b5146e2be6f965c65b4adf2c27df7baf5a43d1c4f07d595936170223fdae6
MD5 5ba381f7fca2d238ccb627fb4723a058
BLAKE2b-256 b5f11f3c77185937dc4f3ba8f7bd2c8581b27bf3c5c287bd44c7ea8e506940f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0b498a773cc7421406b2351fa4a4e085724387447471a64ac63413e10bf492f
MD5 374138af682bba6a797c5b1e02345fbe
BLAKE2b-256 79500b16cf2924545c97eb01dfda719939bae056571e5e3dc0a60698b43dec8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5297cc81520ae27b0eb189e3d5218ca2deb18b7e13234ea22acdcb52ce89dda
MD5 8162c6e196e3786032d1ec25754c72f9
BLAKE2b-256 94ca82fc4136efa6b86f2d03ed1bc43a2a358c7e93a65a4d1b71aa548280bf93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26fb624a1cd3334ad102f233c2d3f00d7131d2253bc22cdb16d79f771ef4df81
MD5 3729a5d004444f5aca8c0373e9e17ef1
BLAKE2b-256 1ed6a3b8d6136db4c45cf49eadc5fc6e166c6140a3a0225a31313dd38b0aadd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 84a361a618a25549524daf07c52c2a5b281468a0e13a45556d042d2e4eba9d16
MD5 c4f809d6170136cc905fbc06b0c2be8d
BLAKE2b-256 4d5462b2f4dc623dedc85353044c5d189f0a4035b7938fa6073ae3a851565814

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 234599ceed0993962e8fd648e4473f719f5b5422bcf82f240b6cc6792cedfa4c
MD5 c549f8321953115959678a31eb5a6594
BLAKE2b-256 4b4bd6094e52bda4c13b73321e0339235dd37dd9634e6f0c6f5fce358b8eed08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 560.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04b38c329d87de02a95b5fd0798e3130c3ba10440f993e2aec1f8c68da707bf8
MD5 2451b337b6941857fb144c783803626b
BLAKE2b-256 77d629a49fd22fe63f1642d80d17e332b7bf42d7244a833d79ecf39c53a19eb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4ba07ef4a0d7b5d889f58ee1843872d24c2149760f317f4ed2f3a56b49b7f27
MD5 93804dc0142c7c4bb578b2fee6688a38
BLAKE2b-256 62840e4d89495114a0c3f30477756b287f11ea27bcc4dbdec94017037ed341b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e152406f2232fd0dbf629f25edbc55d0718df7c6e84381e4ca311747148ad8e
MD5 f40178c701b37dec387478abde07efa7
BLAKE2b-256 49eb1069a51001bab34a62cc6b31983b5f0a78ebdb203facd9e2e0e5dd76b6de

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dba6039abd42d147b65422d2bd3a5c23ac6bc7a9f0142f850b59981b1ae44cd
MD5 c339f76e23fb82ca34236dd84d428a20
BLAKE2b-256 c1e51264333194049db54aa0a324408e5eeee37ba507219e1d9efbc7b9e3144e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68d74b66101d5b1d7a302bd929699d1ef591a7fca9d8a8e12bc66147ea77f0c8
MD5 959175119783209fe9c475de0660b6d4
BLAKE2b-256 6543a10a92f0dd0e5510b7ea484371091029b33980b50de7ce241c03188ba447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4de1af298ae8f413f9a80fc7571403dac5768fe1a8a5a734020f3fd617e74e69
MD5 954802d22f82844b57ed31aca3b92043
BLAKE2b-256 ec6c7a2eee025993124cc41ec9d21917efd842ff0d8f8494e918d464b3db8186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a17e1aab1f85a1655fab9e53ebba1766e14c1ef00eb9753e6e99ac28dc330414
MD5 9927e045077167c81ff97a80262b8020
BLAKE2b-256 d09003a9dcc1dc09bce892565f8c00cca655fa5d1f7fa2b72b273631e0cccebe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1631a7ed23c8bc4c5a65f1a8f672c3b7ceee1fccbcb6d23152bd3ab50f7f02ed
MD5 b9b2e841a7fff209de8f3dff0fdf8987
BLAKE2b-256 86bd4b8f98bd4aba848543ec4a777450bb195877b2bbe3423009498e214b8c5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: python_gmp-0.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 560.5 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 858982a06b71e3b6ceefdc42d6862309e18801ecedb2428f55ec5efe5c43609d
MD5 75161abca5ea260d60ec0e9c8371a247
BLAKE2b-256 003fa4f1fc70b736d9b07f4f5905691740350fd2805f8a2585f444ac13033615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ed2cbbd3b6b3f82db081e8a34d5a63b5b40c1f5821ab4e820cea0f61de3de7c
MD5 ec18d11d354a045e0d6f5bb830ef7ec2
BLAKE2b-256 05404b3b991d3572ea0546be02a03e36925c97822ac0a6ee67018409ad3f4dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dea4add057813c9a2f00bda678bd47b083b192a99df429b5a5798893722a052f
MD5 7726a5d47ec0123bb40243d1007f4412
BLAKE2b-256 0e6276a85dbf74c9bb15a605752a3d0af70c5cbceb9a7f5f488160040f788fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_gmp-0.5.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d19c70b9e898ec7170c0b1e6e9f6153c03de414b340fd386937e04148be00a97
MD5 ab8737523d613119115cb061e70d37c4
BLAKE2b-256 9dee1b7cd90787c8afc419b39c3af8080df8468f44b2052559d010847faf9869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87d8805e3708e0f9fc2e591889b0f0e607e36763183f6403ec13c5b88c0bb2b2
MD5 f2566d76784bee3ba4704c8677850922
BLAKE2b-256 dc968e625ac66f07d6b175be9b15f4c0b2d8af4b18e109651677fe1e9e860aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88acbbc198ce474e82895d72d802088571c7bfa4155a8c021d005c151d9108b0
MD5 a9a84c69c7c9b186fad82740185d526f
BLAKE2b-256 122e1facda9b86649bbd8bc1d3406346254f4a30cdc9336596a1c24e74270e90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for python_gmp-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a0d47ef90ec75a1d600cfaf6ac2465d90cee1a0914fb876a08f71ee0b3aa241
MD5 fc93b4f367133cfd8ba597fea92803fb
BLAKE2b-256 bb6f5641f3e116bcaea3e7134431f79877f5f0cbd112a2778e54eb7860cd3871

See more details on using hashes here.

Provenance

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