Skip to main content

Bindings for FLINT

Project description

Python-FLINT

Python extension module wrapping FLINT (Fast Library for Number Theory) and Arb (arbitrary-precision ball arithmetic). Features:

  • Integers, rationals, integers mod n
  • Real and complex numbers with rigorous error tracking
  • Polynomials, power series and matrices over all the above types
  • Lots of mathematical functions

Documentation: https://python-flint.readthedocs.io/en/latest/

Repository: https://github.com/flintlib/python-flint/

Author: Fredrik Johansson fredrik.johansson@gmail.com

Installation

Currently python-flint supports CPython versions 3.11-3.14 and 3.14t (free-threaded) and provides binaries on PyPI for the following platforms:

  • Windows (x86-64)
  • MacOS (x86-64, arm64)
  • Linux (manylinux: x86-64, aarch64)

For these platforms python-flint can be installed simply with pip

pip install python-flint

Alternatively python-flint can be installed using conda

conda install -c conda-forge python-flint

Build from source

For other platforms or architectures installation needs to build from source. First install FLINT 3. Starting with python-flint 0.5.0 older versions of Flint such as 2.9 are not supported any more. Note that as of Flint 3 Arb no longer needs to be built separately as it is now merged into Flint.

As of e.g. Ubuntu 24.04 a new enough version of FLINT (at least version 3) can be installed from the Ubuntu repos like

sudo apt-get install libflint-dev

For older distros the version in the repos is too old and a newer version of FLINT needs to be built. See here for instructions on building FLINT:

A script that builds and installs FLINT on Ubuntu can be found here:

The latest release of Python-FLINT can then be built from source and installed using:

pip install --no-binary python-flint python-flint

Python-FLINT can also be installed from a git checkout or a source archive as follows:

pip install .

See the documentation for further notes on building and installing python-flint:

Examples

Import Python-FLINT:

>>> from flint import *

Number-theoretic functions:

>>> fmpz(1000).partitions_p()
24061467864032622473692149727991
>>> fmpq.bernoulli(64)
-106783830147866529886385444979142647942017/510

Polynomial arithmetic:

>>> a = fmpz_poly([1,2,3]); b = fmpz_poly([2,3,4]); a.gcd(a * b)
3*x^2 + 2*x + 1
>>> a = fmpz_poly(list(range(10001))); b = fmpz_poly(list(range(10000))); a.gcd(a * b).degree()
10000
>>> x = fmpz_poly([0,1]); ((1-x**2)*(1+x**3)**3*(1+x+2*x)).factor()
(-1, [(3*x + 1, 1), (x + (-1), 1), (x^2 + (-1)*x + 1, 3), (x + 1, 4)])

Matrix arithmetic:

>>> fmpz_mat([[1,1],[1,0]]) ** 10
[89, 55]
[55, 34]
>>> fmpq_mat.hilbert(10,10).det()
1/46206893947914691316295628839036278726983680000000000

Numerical evaluation:

>>> showgood(lambda: (arb.pi() * arb(163).sqrt()).exp() - 640320**3 - 744, dps=25)
-7.499274028018143111206461e-13
>>> showgood(lambda: (arb.pi() * 10**100 + arb(1)/1000).sin(), dps=25)
0.0009999998333333416666664683

Numerical integration:

>>> ctx.dps = 30
>>> acb.integral(lambda x, _: (-x**2).exp(), -100, 100) ** 2
[3.141592653589793238462643383 +/- 3.11e-28]

To do

  • Write more tests and add missing docstrings
  • Wrap missing flint types: matrices over finite fields, p-adic numbers, rational functions
  • Build on the preliminary interface to FLINT's generic (gr) types.
  • Make a nicer interface like ZZ(1) etc rather than fmpz_poly([1, 2]).
  • Vector or array types (maybe)
  • Many convenience methods
  • Write generic implementations of functions missing for specific FLINT types
  • Proper handling of special values in various places (throwing Python exceptions instead of aborting, etc.)
  • Various automatic conversions
  • Conversions to and from external types (numpy, sage, sympy, mpmath, gmpy)
  • Improved printing and string input/output
  • IPython hooks (TeX pretty-printing etc.)

Compatibility table

Generally each release of python-flint will be compatible with a range of Python versions. Since python-flint 0.5.0 the minimum supported Flint version is 3.0 and each release of python-flint supports all versions of Flint >=3.0 available at the time of release.

Compatible versions:

python-flint Release date CPython FLINT Cython
0.8.0 29th Aug 2025 3.11-3.14 3.0-3.3 3.1 only
0.7.0 16th Mar 2025 3.11-3.13 3.0-3.2 3.0.11-3.1.0a1
0.6.0 1st Feb 2024 3.9-3.12 3.0 only 3.0 only

The requirement for Cython 3.1 is only for CPython's free-threaded build. Otherwise Cython 3.0 is fine. As of python-flint 0.7.0, CPython 3.13 PEP 703 free-threaded (no-GIL) builds of python-flint are provided. In the the free-threaded build, mutating matrices or polynomials from multiple threads can lead to memory corruption. There are some other known issues with the free-threaded build so it should be considered experimental.

CHANGELOG

Next release (0.9.0)...

0.8.0

Contributors (0.8.0):

  • Oscar Benjamin (OB)
  • Robert Dougherty-Bliss (RDB)
  • Rémy Oudompheng (RO)
  • Agriya Khetarpal (AK)

Notes (0.8.0):

  • This mostly a maintenance release with some bug fixes, dependency updates and a few smaller features.
  • Since GitHub Actions is retiring its MacOS x86-64 runners python-flint 0.8.0 is likely the last release to provide prebuilt wheels for MacOS x86-64 (MacOS arm64 remains fully supported). It is likely that future versions will still work fine on MacOS x86-64 but would require building from source and will not be tested in python-flint's CI. MacOS arm64 wheels will still be provided and tested.

Changes (0.8.0):

  • gh-302, gh-283, gh-284, Wheels now ship MPFR 4.2.2 and FLINT 3.3.1. Cython 3.1 is now supported for building (and required for the freethreaded build). Wheels are provided for CPython 3.14 and 3.14t (free-threaded) and PyPy 3.11. (OB)
  • gh-310, Add truncate, left_shift and right_shift methods to fmpz_poly, fmpq_poly, nmod_poly, acb_poly, arb_poly to match other univariate polynomial types. (RO)
  • gh-287, gh-293, gh-305, gh-307, gh-309, Add type annotations for fmpz, fmpq, nmod, fmpz_mod, fq_default, fmpz_poly, fmpq_poly, nmod_poly, fmpz_mod_poly, fq_default_poly, fmpz_mpoly, fmpq_mpoly, nmod_mpoly, fmpz_mod_mpoly, fmpz_series and fmpq_series (about half of the codebase). (OB)
  • gh-300, Fix arb.repr which now returns a Python representation that round trips. (OB)
  • gh-292, The fmpq constructor now accepts fmpq numerator and denominator as input. (OB)
  • gh-289, Add .prec attribute to series types fmpz_series, fmpq_series, arb_series and acb_series. (OB)
  • gh-285, Don't use deprecated meson build option. (AK)
  • gh-274, Add resultant methods to fmpz_poly, fmpq_poly and nmod_poly. Now all univariate and polynomial types have the resultant method except for fq_default_poly. (RDB)

0.7.0

Contributors (0.7.0):

  • Jake Moss (JM)
  • Giacomo Pope (GP)
  • Joris Roos (JR)
  • Edgar Costa (EC)
  • Frédéric Chapoton (FC)
  • Oscar Benjamin (OB)
  • Tom Hubrecht (TH)

Highlights (0.7.0):

  • gh-270, PyPI packages are now built with FLINT 3.2.0 (previously 3.0.1 was used). All versions from FLINT 3.0.0 to FLINT 3.2.0 are compatible with python-flint but some features require newer FLINT versions and the PyPI packages now use FLINT 3.2.0.
  • gh-97, gh-182: Add fq_default and fq_default_poly for finite fields and univariate polynomials over finite fields. This exposes all of the different implementations of finite fields (fq_zech, fq_nmod etc) via the fq_default interface. (GP)
  • gh-132, gh-164, gh-190, gh-191: gh-192: gh-216: gh-225: gh-228: Add fmpz_mpoly, fmpq_mpoly, nmod_poly and fmpz_mod_poly types for multivariate polynomials with integer, rational or integers mod n coefficients. (JM)
  • gh-142 Add acb_theta module for the numerical evaluation of theta functions (only available for Flint >= 3.1). (EC)
  • gh-218 gh-254 gh-255 An experimental interface for FLINT's generic rings has been added. This provides access to many of FLINT's types that are not yet wrapped by python-flint such as Gaussian integer, number fields, qqbar, calcium, as well as both univariate and multivariate polynomials and series over these rings (no matrices yet though). (OB and TH)
  • gh-129 gh-208 Use meson/meson-python instead of setuptools as the build system for parallel builds and better detection of build and dependency requirements. (OB)
  • gh-201 gh-202 The documentation has been updated and is now at readthedocs. (OB) gh-235 Nightly wheels for python-flint can now be installed from the [Anaconda Scientific Python Nightly Wheels index] (https://anaconda.org/scientific-python-nightly-wheels/python-flint). gh-259 Add PyPI wheels for Linux aarch64 (Linux on ARM CPU). (OB)

Compatibility break (0.7.0):

  • gh-189 As of python-flint 0.7.0 fmpq_poly.factor() now returns primitive rather than monic factors i.e. 2*x + 1 rather than x + 1/2. This ensures consistency between all poly types including between fmpq_poly and fmpq_mpoly. (OB)

Other changes (0.7.0):

  • gh-269 All univariate and multivariate polynomial types have is_zero, is_one and is_constant methods. All polynomial types now consistently handle negative powers where possible.
  • gh-261 Add fmpz_mat.fflu for fraction-free LU decomposition of an integer matrix.
  • gh-251 Add mpmath-style precision context managers for arb extraprec, extradps, workprec and workdps. (TH)
  • gh-250 Add fmpq.gcd() method.
  • gh-215 gh-219 The FLINT binding declarations are now fully generated automatically from the FLINT docs. (OB)
  • gh-203 gh-204 gh-205 gh-206 gh-207 gh-211 gh-212 gh-271 Various linting fixes and codebase improvements (FC and GP).
  • gh-189 All scalar and poly types now have sqrt. All poly types now have factor_squarefree and leading_coefficient methods. Exception types raised in a number of places were changed to DomainError for better consistency. (OB)
  • gh-196 Supported Python versions are 3.10-3.13 (3.9 dropped). CI Testing added for 3.13 free-threaded CPython.
  • gh-194 Add version checking for build requirements. (OB)
  • gh-180 Add equal_trunc, add_trunc, sub_trunc, mul_low, mul_mod and pow_trunc methods to fmpz_mod_poly. (GP)
  • gh-177 Remove old Py2 code for compatibility with Cython 3.1. (OB)
  • gh-176 Fix the error messages from fmpq constructor. (OB)
  • gh-174 Add pow_mod and compose_mod methods to nmod_poly and fmpz_mod_poly. Also add some missing methods to nmod_poly that other poly types already have. (GP)
  • gh-172 Add fmpz_is_square. (JR)
  • gh-168 Make comparisons consistent between different types. Add is_one and is_zero for all poly types. (OB)
  • gh-161 Add acb.lerch_phi to compute the Lerch transcendent. (OB)
  • gh-160 Add bits to arb and acb, add log_base to arb. (JR)
  • gh-148 Remove debug symbols to make smaller Linux binaries. (OB)
  • gh-144 Add rel_one_accuracy_bits to arb and acb. (EC)
  • gh-137 Add erfinv and erfcinv for arb. (JR)
  • gh-119 Add compatibility with Flint 3.1. (OB)

0.6.0

  • gh-112, gh-111, gh-110, gh-108: Add pyproject.toml and build dependencies. This means that python-flint can be built from source without --no-build-isolation.
  • gh-109: Use exact division for non-field domains. Now fmpz(6)/fmpz(3) returns an exact result fmpz(2) or raises an error if an exact result is not possible. Similar changes for fmpz_poly/fmpz, fmpz_mat/fmpz, and for polynomial division with fmpz_poly, fmpq_poly, nmod_poly and fmpz_mod_poly.
  • gh-106: Add fmpz_mod_mat for matrices of integers mod n where n is larger than word sized.
  • gh-104: Bump Flint from 3.0.0 to 3.0.1

0.5.0

Important compatibility changes:

  • gh-80, gh-94, gh-98: Switch from Flint 2.9 to Flint 3.
  • gh-100: Supports Python 3.12 by using setuptools instead of numpy.distutils.

New features:

  • gh-87: Adds fmpz_mod_poly type for polynomials over fmpz_mod.
  • gh-85: Adds discrete logarithms to fmpz_mod.
  • gh-83: Introduces the fmpz_mod type for multi-precision integer mods.

Bug fixes:

  • gh-93: Fixes a bug with pow(int, int, fmpz) which previously gave incorrect results.
  • gh-78, gh-79: minor fixes for the nmod type.

0.4.4

  • gh-75, gh-77: finish bulk of the work in refactoring python-flint into submodules
  • gh-72: The roots method of arb_poly is not supported. Use either the complex_roots method or acb_roots(p).roots() to get the old behaviour of returning the complex roots. The roots method on fmpz_poly and fmpq_poly now return integer and rational roots respectively. To access complex roots on these types, use the complex_roots method. For acb_poly, both roots and complex_roots behave the same
  • gh-71: Include files in sdist and fix issue gh-70
  • gh-67: Continue refactoring job to introduce submodules into python-flint

0.4.3

  • gh-63: The roots method of arb_poly, and nmod_poly is no longer supported. Use acb_roots(p).roots() to get the old behaviour of returning the roots as acb. Note that the roots method of fmpz_poly and fmpq_poly currently returns the complex roots of the polynomial.
  • gh-61: Start refactoring job to introduce submodules into python-flint

0.4.2

  • gh-57: Adds manylinux wheels

0.4.1

  • gh-47: Removes Linux wheels, updates instructions for building from source.

0.4.0

  • gh-45: Adds wheels for Windows, OSX and manylinux but the Linux wheels are broken.

License

Python-FLINT is licensed MIT. FLINT and Arb are LGPL v2.1+.

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_flint-0.8.0.tar.gz (408.6 kB view details)

Uploaded Source

Built Distributions

python_flint-0.8.0-pp311-pypy311_pp73-win_amd64.whl (10.2 MB view details)

Uploaded PyPyWindows x86-64

python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

python_flint-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

python_flint-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (8.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

python_flint-0.8.0-cp314-cp314t-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

python_flint-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.7 MB view details)

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

python_flint-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

python_flint-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

python_flint-0.8.0-cp314-cp314-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.14Windows x86-64

python_flint-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

python_flint-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_flint-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

python_flint-0.8.0-cp313-cp313t-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.13tWindows x86-64

python_flint-0.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.7 MB view details)

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

python_flint-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

python_flint-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

python_flint-0.8.0-cp313-cp313-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.13Windows x86-64

python_flint-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

python_flint-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_flint-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_flint-0.8.0-cp312-cp312-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.12Windows x86-64

python_flint-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

python_flint-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (7.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_flint-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_flint-0.8.0-cp311-cp311-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.11Windows x86-64

python_flint-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

python_flint-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.7 MB view details)

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

python_flint-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (7.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_flint-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file python_flint-0.8.0.tar.gz.

File metadata

  • Download URL: python_flint-0.8.0.tar.gz
  • Upload date:
  • Size: 408.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.11

File hashes

Hashes for python_flint-0.8.0.tar.gz
Algorithm Hash digest
SHA256 3da125cd780e09510b0fb5f455646013f2b49072ea43eea806f6af77b450fa39
MD5 6e51b78f69e7235dadbdb8892ea59399
BLAKE2b-256 21fa2ec5a03719fa9214ba139296ec1c5f663bb0f90c5e582fbda8ba751e7212

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0.tar.gz:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b1d6b9a9b4d039eb360270e941ea810c88e78b879db36cd464ccfca90dc5dbb0
MD5 61a4a451e152728c810582a069ce140c
BLAKE2b-256 ef2c20bdae1e8e177654f33c2d652c537285ec647e9c7774060a7ea37a1e4679

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a87be712c69658c2a60bcb9b4c37095485164378f4a979e8897f08ff095b99ac
MD5 da6e8d06acfce89ae4d5515b818740a8
BLAKE2b-256 91dfe8ddb1f51ff8d7c2754d568f992be25cecd9a7dfe5cbb12f46bf35c6ab7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1cf150a261563f7f9ba7c1179bdfee446a12b1bba92f226a4a7fbb223642260
MD5 3730e9eb177dbc73f3db32d228ba5a0a
BLAKE2b-256 2e07d357be778a3de340c26635bbe1309c0052829e0f5c096f3c6d9480b6bae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3bdd3eedf71d5f6016806a33e96337ca81fd355ac2c875a1b22fb07cbe6a6eb
MD5 fd90799daa42f66a1d7c85d3b3d05397
BLAKE2b-256 1530d693668949396beed414ccec5f61fcc8c4cde22d6eba36f2b619a56b963c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 109a9371a91e2041e0dae81a050d81d07c286755c8208dbd9df5bb663629c26e
MD5 aaed0e00b73a03f2690b9ef1385293b3
BLAKE2b-256 9f2b834aacf24bbf1e68dc11c4c0237528c03eb39b71cca8d504c5557c7a237e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cfd82f1f33b10a80e4613668b1e3cbd8f6b3830aa4057ef4c1f26065d3edbee7
MD5 ebf14df5c09262b93e5eb94df1915f3a
BLAKE2b-256 4936f5217bcf7fe765c459149a1eaf770ddba72d2853c0f3c07d2865029aec48

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314t-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c7a242d7f51c1a28968a0721be59edacd7a8859396b4f639da6b054a8eb3e578
MD5 dcea773caae0cc78a1d9548961e4b51a
BLAKE2b-256 9a38e1d7bbd89854207191d291ba250d9dab5082b37e088b13f65a50be98dcdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4dc97924e3e5bb0cc43b2723db39379c1b215502661dcc693f5e26d43d767fc
MD5 d490a93909514dbd8973db7bee1ac989
BLAKE2b-256 dd758bd586c1d96dca81b7ce6f3ade4dd02ca2c1c8a8e46a2d6db6fcbb966089

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38583e5ceb1e7b93ba557835055542f7e6a1d3d412bcc285d0f2bb44b076c419
MD5 9300e222eaef03f3548b5f99b930dbc2
BLAKE2b-256 b73d640ca9734e06d320e0e960bc7d6c4154c1e86ea6d0037d05821d8f1717af

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 126b211e10f3ed756ee14e9251905680242687ba71fb6e0f59d0662e050bcfb5
MD5 323098f142bf4cfbc54e1c9db2d77c6e
BLAKE2b-256 0eb1156a9b100417b86bf3f577063042346bed9b9a7003492f5971cda25e73f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 87d1493dc592b67451ffad48a2cbc85f3cdf3ddcd8ba2abf447c21ee5ef74030
MD5 1078de6046b277979f67ad5559a7bd7a
BLAKE2b-256 0c88da3a6cb961a48cf9662c28cee1dab7a9725b2a773b4edf6dbb67545f73b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 51501a44b18ed96a9faa5c13c85a568a747de427a5e447e1391f02ab2699871f
MD5 4d8b10bcc8cc650f29429da2b60633eb
BLAKE2b-256 de210f27529815ffffd43035d1f944012eaae33f1ed60b56057046ae5c7514f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc1054b7b68a1e19aa8f080e1b6b6d657c13ef98d89306f5fc008579efe6a791
MD5 517dae4209d863468a6cab615f2a3cf7
BLAKE2b-256 e4d06a531a031d97d019ee8dc3dc1ce41b4de3ae66decf7479ef507d722bb2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65247c1b96547049ca131c0254e1d7a330fc3f083b37e63e1085b091a93f507
MD5 354bd1fd41fa60b45f7b825ee0c5f42e
BLAKE2b-256 d981d038156d940af5675ef76cd22a1d7fd866f6c8359b52e627dad11a81a564

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a9431244f08004b70f5663ebf6bfc6ee9cde15d2f0871036d98e20e4d8c7cf9d
MD5 a71e4e622ba0c1956337e7d9eb44551f
BLAKE2b-256 ca5094d10a2d350f44af12dff1e9f79331df258bb92055b5e376d3ccafefd3a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e50bf6733ccf09e08da5bfafdaaa81a2d5511083838f39b88f3cc00c2dae6653
MD5 d9f5a968fd64c56c680f923f9bdec871
BLAKE2b-256 2e6b3ba93cbec54bccc623cb57e3aa1e779c3b78001cdb7c742540f7f035dff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313t-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ffea7c53f814864dd0d0286d897d72b67adfe0796e39ff8812f306704030bb1d
MD5 1473b2c518ee46b8c1816df05be69d02
BLAKE2b-256 4a6289a4b128d7b5525aa6be84cd4581327e61eb6e4334820ce75ab51a09edfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a820438d373de1b2b451c71820d35871610785bd9cfcbb843578fda9b1e522c1
MD5 bd3969e7b5cd2940e98d0f58d2c45a8c
BLAKE2b-256 7075dc6d711a0a0f3c77fcb7b384e58e6c7d92a1ab3c16d0a7a69cc803206e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7275c029f188668b24c2ff604d3bf6e29c59273da648f3a79c625c22bcb21910
MD5 091c27d82d5d2b5c38b5eb507bd42ae0
BLAKE2b-256 81ea586c22adfcd0796430ce4f5aca9cae1f8fd7c33665a69ca1c5384e999193

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3830438faf6ab04d44094327820205f61af12dedc58bafee91f25f011a64c164
MD5 1613b1fd07525b956061031a484d4365
BLAKE2b-256 5ab6e5c5ed2953594c0b77f7347cd07c8b92f3d8efd7fd339fbb95fa426ce1f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d68b3c9d71192aa18a92f1a4cc08913cffa805245ee44fafa0b20b769138518
MD5 7e544d53d4b44cb860d76121495acb39
BLAKE2b-256 e16c0557545ef27255abd424dee5398daef07ec84f796fa7a41edf7f336f07e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d2d9a7bf6e7523a7f529feae74ae8c8eefe5ccde8fa49a74a593bba9b049748e
MD5 fc479155268296d4c8455d91d260a66a
BLAKE2b-256 9f8285fe62cc7d22bb2050c4ae2d73efab8cad1376426e6638abc43acc88667d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d145b6088ac79e356359a6b295dcc86c09e4236c2c133142413cff5d6d5ab68
MD5 b7ba14e01898834bda93e962714d3356
BLAKE2b-256 0512f2c10e4dcfccd74d20b1f6983b3d28e84388207db9ddb1b7833ca4377461

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1609340b41ffa5dc06afa7dc137be857792d9c4b359e2108339a45bfcc896550
MD5 4320a47b5b622893fba49b187334bd51
BLAKE2b-256 78bcb50ef9332e46eeff516e2a170949a197a19341e1f8bc40462f416992caec

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0c1957c2ac79d365a37c23d2b3ce105b0c15e9adbfc0c20f731380c34d0b80fc
MD5 3189eb9bf44ad377ecc9a4eb8e6ea2c0
BLAKE2b-256 8170d6e6c79a4b310ad2f37d4b9b13ed248370671f8c40340094f652d2fa5e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fd8958674a9b09c35d2470c9e88ccdd4a63cb351b8595f6aa46639458f57623
MD5 110c52bbba67619625da1abe42ef1a33
BLAKE2b-256 2560a0973510633a9b16d6110c75372bad4aae702a00071fc40aafeca2586d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp312-cp312-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 af60dbed2b0e3bedef2875ff3a2b32afec12f7152595d65fcd674713ac09a208
MD5 dd0ef19009b1b07cbec2cb3ee4691d1b
BLAKE2b-256 6d33787db4e05bbda59a5850d9d7ef9a4ba61c82cde3830ab78d067c3088012b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e211b11e0434d9d91e0b93326e7f677751248ef5540bff68785d9690724fc546
MD5 3007ed393008985a38dcb935249118f3
BLAKE2b-256 518cdd74f15b76e1e58ab70231f6853f9527027412d4e133c637c5f5a99e0f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 884a75da741e4ebbfdf5c638629d9e8a34f5bbbbb315b815b08a7d664f7720b2
MD5 3ec423eca64ab4b9af912f10880ae7a5
BLAKE2b-256 7a598008087112a9dcbdb0ae21543c97d8f50be8a5763799fa50e3f0efad121f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e637105ea2be78c22c6d7b3766fc481c1fd83b6387d40c77667e9f3d7232fdc
MD5 ee0118a3d4f2be2d54e3fc9cf7b66e0a
BLAKE2b-256 1d90f6b55ff96a61227b71cd3f16eb3070b56d0bdd7a585c7611dd7bd3ad80d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a52f084051d5e1fd1279ec11435c9d389eaae5f9937015818cea4a97d715d17
MD5 458ee9b34c26fdf665910b693b71b9e8
BLAKE2b-256 c8721efb1b88319269e8cb6bba709cf95b9de54b6bc0129ad623b6dd6e630433

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp311-cp311-win_amd64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 782e0059c759d1321844dd28e1342057d094014b0dc0a5d42128f5115c82691c
MD5 946035a9426c1e225b9a0afc961d75db
BLAKE2b-256 3f7bd6021742b6637ae8f20241789d8bd85c2ae46e93b94cc94412b962359e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 372b80508afc683944971ea7a0198abcaecb09760819da6586b9915d01cb83c5
MD5 801902ab8e15a2f19aaaf019efd4b0f3
BLAKE2b-256 0ae3f646d147e23000d44bbcb537b282a6ce28ff4b1df0f8916d33a199f5bc4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82529bb66a300b0b88878448e198a7d9a04504bfb9c99723a2e1d900321acad7
MD5 97ccf0d41475d040d8fefbd8496acfb0
BLAKE2b-256 574b2e1c8f6da672a7cbd4f8739e466e2edf504bc814ba63c415373ad9b918c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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_flint-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_flint-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 204f8bb7c00a6b4540089b69d09c05665864b418e4dbdfd61bff5cc29db46cea
MD5 719e2228558eabcecd7915389c17f00f
BLAKE2b-256 79b79b211ab840f21188d9a0fe4f4dc5a33470aa1fa93880ad238c409734da8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_flint-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: buildwheel.yml on flintlib/python-flint

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page