Skip to main content

A quatint class, for using quaternions backed by integers and half-integers (Hurwitz integers).

Project description

quatint

Exact (integer-backed) quaternion arithmetic for the Hurwitz integers.

quatint provides a fast, mypyc-friendly hurwitzint type that behaves like a small, practical numeric object: addition/subtraction/multiplication/power, norms and conjugation, plus left/right Euclidean division, left/right gcd, and deterministic factorization utilities.

Why this exists

Python’s built-in numeric types don’t provide an exact, integer-backed quaternion type—especially not one that can represent the Hurwitz order (a + b i + c j + d k) / 2 without floating point.

quatint keeps everything as integers under the hood while still letting you work with both:

  • Lipschitz integers: $a, b, c, d ∈ Z$
  • Hurwitz “half” integers: $(a + b i + c j + d k)/2$ with a parity constraint

Key features

  • Exact arithmetic (no floats required for quaternion values)
  • Hurwitz order representation with parity enforcement
  • Non-commutative multiplication
  • Reduced norm $N(q) ∈ Z$ and quaternion conjugation
  • Euclidean division (norm-Euclidean) via:
    • divmod(a, b) for left-quotient division (a = q*b + r)
    • a.rdivmod(b) (or quatint.rdivmod(a, b)) for right-quotient division (a = b*q + r)
  • Left/right gcd (gcd_left, gcd_right) built on the corresponding division
  • Deterministic factorization into content, unit, and Hurwitz primes (by prime norms)

Installation

python -m pip install quatint

This project is designed to compile cleanly with mypyc for speed (CI/test setups often ensure the compiled artifact is what’s running).

Quick start

from quatint import hurwitzint

a = hurwitzint(1, 2, 3, 4)
b = hurwitzint(2, 3, 4, 5)

print(a)         # (1+2i+3j+4k)
print(a * b)     # quaternion product (non-commutative)
print(b * a)     # generally different

Half-integers (Hurwitz elements)

Use half=True to provide numerator components of a /2 element:

from quatint import hurwitzint

h = hurwitzint(1, 3, 5, 7, half=True)
print(h)  # (1+3i+5j+7k)/2

Division (left-quotient)

divmod(a, b) defines quotient on the left:

from quatint import hurwitzint

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

q, r = divmod(a, b)
assert q * b + r == a

Right-division (right-quotient)

Use rdivmod (method or helper) to define quotient on the right:

from quatint import hurwitzint, rdivmod

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

q, r = rdivmod(a, b)
assert b * q + r == a

GCD (left and right)

Because multiplication is non-commutative, there are two natural gcd notions:

from quatint import hurwitzint

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

gl = a.gcd_left(b)    # common left divisor (a = gl*x, b = gl*y)
gr = a.gcd_right(b)   # common right divisor (a = x*gr, b = y*gr)

Factorization

Factorization returns a compact normal form:

  • content: maximal positive integer scalar dividing the element (in the Hurwitz sense)
  • unit: a norm-1 Hurwitz unit (deterministically chosen)
  • primes: Hurwitz primes (each with prime rational norm), normalized via unit migration
from quatint import hurwitzint

n = hurwitzint(2, 3, 4, 53)

fr = n.factor_right()
assert fr.prod_right() == n

fl = n.factor_left()
assert fl.prod_left() == n

Representation & guarantees

Internal representation

Values are stored in numerator units:

(A + B i + C j + D k) / 2

This means:

  • Lipschitz integers are stored with even numerators.
  • True Hurwitz half-integers are stored with odd numerators.
  • The constructor enforces the parity constraint.

Scalar coercions

int and float inputs are accepted as scalars and converted via int(...) (i.e., truncation semantics). Quaternion values themselves remain exact.

Public API (high level)

  • hurwitzint(a=0, b=0, c=0, d=0, *, half=False)
  • hurwitzint.conjugate()
  • abs(h) → reduced norm N(h) (an int)
  • divmod(a, b) → left-quotient Euclidean division
  • a.rdivmod(b) / rdivmod(a, b) → right-quotient Euclidean division
  • a.gcd_left(b) / gcd_left(a, b)
  • a.gcd_right(b) / gcd_right(a, b)
  • a.factor_left() / a.factor_right()HurwitzFactorization
  • HurwitzFactorization.prod_left() / .prod_right()

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

quatint-0.0.7-cp314-cp314-win_arm64.whl (85.0 kB view details)

Uploaded CPython 3.14Windows ARM64

quatint-0.0.7-cp314-cp314-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.14Windows x86-64

quatint-0.0.7-cp314-cp314-win32.whl (84.1 kB view details)

Uploaded CPython 3.14Windows x86

quatint-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (285.0 kB view details)

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

quatint-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (270.5 kB view details)

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

quatint-0.0.7-cp314-cp314-macosx_11_0_arm64.whl (149.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quatint-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quatint-0.0.7-cp313-cp313-win_arm64.whl (84.2 kB view details)

Uploaded CPython 3.13Windows ARM64

quatint-0.0.7-cp313-cp313-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.13Windows x86-64

quatint-0.0.7-cp313-cp313-win32.whl (83.5 kB view details)

Uploaded CPython 3.13Windows x86

quatint-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (285.4 kB view details)

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

quatint-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (270.0 kB view details)

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

quatint-0.0.7-cp313-cp313-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quatint-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl (157.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quatint-0.0.7-cp312-cp312-win_arm64.whl (84.1 kB view details)

Uploaded CPython 3.12Windows ARM64

quatint-0.0.7-cp312-cp312-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.12Windows x86-64

quatint-0.0.7-cp312-cp312-win32.whl (83.9 kB view details)

Uploaded CPython 3.12Windows x86

quatint-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.4 kB view details)

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

quatint-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (272.3 kB view details)

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

quatint-0.0.7-cp312-cp312-macosx_11_0_arm64.whl (150.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quatint-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl (158.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quatint-0.0.7-cp311-cp311-win_arm64.whl (83.0 kB view details)

Uploaded CPython 3.11Windows ARM64

quatint-0.0.7-cp311-cp311-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.11Windows x86-64

quatint-0.0.7-cp311-cp311-win32.whl (83.3 kB view details)

Uploaded CPython 3.11Windows x86

quatint-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (279.2 kB view details)

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

quatint-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (265.8 kB view details)

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

quatint-0.0.7-cp311-cp311-macosx_11_0_arm64.whl (148.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quatint-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quatint-0.0.7-cp310-cp310-win_arm64.whl (83.3 kB view details)

Uploaded CPython 3.10Windows ARM64

quatint-0.0.7-cp310-cp310-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.10Windows x86-64

quatint-0.0.7-cp310-cp310-win32.whl (83.6 kB view details)

Uploaded CPython 3.10Windows x86

quatint-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (278.1 kB view details)

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

quatint-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (265.9 kB view details)

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

quatint-0.0.7-cp310-cp310-macosx_11_0_arm64.whl (150.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quatint-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quatint-0.0.7-cp39-cp39-win_arm64.whl (83.3 kB view details)

Uploaded CPython 3.9Windows ARM64

quatint-0.0.7-cp39-cp39-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.9Windows x86-64

quatint-0.0.7-cp39-cp39-win32.whl (83.5 kB view details)

Uploaded CPython 3.9Windows x86

quatint-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (277.7 kB view details)

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

quatint-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (265.4 kB view details)

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

quatint-0.0.7-cp39-cp39-macosx_11_0_arm64.whl (150.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quatint-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file quatint-0.0.7-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d624f01cc8e378b0ca8c5b46b4b0f797262f6c674ce728f4fd577e433b2003e8
MD5 2965afb9d142ba5cfece5cb044c3154d
BLAKE2b-256 f50e1dd2030ffbde61d45dc8b130a6f35bafcf37a0a47d7e0f1a9c977be26a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edde3c13b02f3a7de0bb9fd8e663acf00878fa0c38f55ab9253bc1102e41153d
MD5 53d505210d70a55eff17fd79e0c2a4b9
BLAKE2b-256 fdfec453c4fe1b52a72476e4458c839839ff603c74efec731b6ad15af4561655

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 91a363504e1779adb9c5f069d311328d8ad75c4b42d7b817844d5b22a1b71006
MD5 56b1e0bafeca66a0b0542fb4c15bf52f
BLAKE2b-256 a43e3664ffe3a07a561956e05036c1f1dfd9f700f054adec6beed60ceb84e629

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96f0b80afbc09fcd1601dba75c8c9914c974c39ea8f445af6ac4b36a94e2514c
MD5 cd075d7b6eed8c561ddafc4b88a8c5dd
BLAKE2b-256 27d6033a610b525e39937349f2d481b5e5940f7b70c0c33af70ea31c673e59b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4da74184caef9846d85c8fef86839de2f4978469ca31af68c58167e17f69722
MD5 a6d310487e90c4815e1b685b447c1230
BLAKE2b-256 00b2a0522d137831168c66f124492e74f54b48fed174269d3e2e069f5edd0fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 076dccf0625896ac6f99888a3fd1fad1943579ba98167c472ac899f363f11074
MD5 284c568bc0dbb8f6cd748b0df1c9fbbc
BLAKE2b-256 e1e34a6183d2f792bbdba038d30cb849e538ea438a6bfa393a74fc4990b96b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 71d2e4b736614e71e4a01a72452b3bddd34b8ae1b6529f6beb258d86a53baddc
MD5 5aca05bf902b2684aeb5a7140cab6157
BLAKE2b-256 03da3d83a990f8b085d864c2bbee03fcf033307e33df4d3b941da96d62387b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 84c74a1225a8dae24f740dbd01b72d705a015f6fd1ce786fe2e2b776f54bba9c
MD5 0c8ff2d925bc4a46c2fdd08442196882
BLAKE2b-256 17752aaf81b1032937fd2c89b6a4805d6e56845560ae18c8dd82cf0863f8b23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e574747e7d1ebb055ed6cc69ebd563913a1d8254568555fa26df0587f06a027f
MD5 22f08d141a51926291fdff21f32b76c7
BLAKE2b-256 164c5c45a4b1a5131543ee30704cdc7a61f382947f9456e5f7fb0b09a09a8c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 83.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 83d70dd08b1fc09536065b9eb0e98e84676ccd18c0a5c6b99ae54a494c9c640d
MD5 5f8b7d3fe3b5067f45ddfa9b96a7ab47
BLAKE2b-256 1b01604dd45e253675b73190b06af933711afd7db100ade2f44a66598859edb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a859bc35d67e701894c6d0f6a4ed9f187f781f58641b2309290bf4cacb2f451
MD5 46507a7940abc5616369fe40e512c1c0
BLAKE2b-256 6baa5a695368c174ebea8c516c10a6a8a5b338dbc2a24c47c8d31ca5c1e16d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c78b1319fa81889ac22155e5ccc22839bdc5295fb024e84ba5cbda1664eb2019
MD5 9f3465a5e43a992c964fde94ea6e7f8d
BLAKE2b-256 2e8dd7563d5db5eb06e08cf206247de082188c12f19961abfba86ed1605d73c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d2450649bf3d631045a4a0aefe7faf51a71bef2e36d84a5c530e134c10abd5
MD5 df6410f1971a0fcdd449b1d3148ece59
BLAKE2b-256 cfae6b17b78cb7ce48a49b9b5dd447ef41e81b9fcf7a6891684dbe0b8d74ecdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd55dbe18b3c435500028437339d2cc3593118f669942d3888cdb12d360b4990
MD5 02a3d7b803326cdd2336acd1ab318894
BLAKE2b-256 f02a89df8efa4b20c1dff16626d88ce7c99d95a2a8ab5e28aa39c8d2507dd7ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d761048d5168d1c46d1529405fc4b7161f944a4e248e29a1f9abb0fc93d2b58c
MD5 baa01360d9c934e90ff43ae482b951d3
BLAKE2b-256 ac4f9906787ac481028dd3cdff40f9223b3600c224f1869c14a8156678353648

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6544da697d4bf5e3608b0d5823ad8640b2e355a63be25eb8690a9318c9800049
MD5 28858f5c12d1d03e6c64a5d62e9f0b48
BLAKE2b-256 dc7e55b648bdbd93cfadb2bc522fbcd7a090dd142119d477155a2cf9497dcafc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 492586d79a5980e8257edff627f6011b54616e1225657db447ea9e0fd6491645
MD5 b72f4f15d851def2f75618f1c841bbe7
BLAKE2b-256 6cec8949ea2d5d0f3831dfcff217ea066b1fc2a10011225cbb04587d04877e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc1df64fdaeb2b56ac6c7106c0abbd1ed60135b40af2c412a8937228aa70967e
MD5 2fa658822af6d95c05f86fa6015cfaf5
BLAKE2b-256 a7b9c7cb1a63344b4ce10fe6928e4f8fac24cc54447021211c3d7aa0d80b0863

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5e951387d4ceb415b2085f467013acc2a6bc384df13c005cb3c2dce0cefbd2d
MD5 949ce8188c6c87e1828ea3e279a44022
BLAKE2b-256 b67a51cfb1b33cfcb72ff77d80da6e0136299c4a1bdca5f2988a173c05425548

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 524d9a1b86a99b1f9147de4efea331428d7a489d45b895cf085d4a9ab5933a3d
MD5 3180753e096477ae44b7297097712aa7
BLAKE2b-256 27c1c3c5d6f37588a2ab6ee579e8cf0bdc52d7958620ca44d4dac21c2b574560

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 79950491a0dfe1f1e4ff016a1d3e6e85c906cfc854f1c37a5dd5715a8d77d011
MD5 9c63ae636cfd424a9e2c389cd938c658
BLAKE2b-256 ebae1e663370dba93da9ef612316447696d6e85e4c6816934e3f9a49b212bc18

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3393ebf2b2e149b4ffe7f901f335acdccfdc045833f1c3874597b498f7d5be8e
MD5 af4f5617d4b474a45ebf22e32f205617
BLAKE2b-256 6e4058545b987a69458b42c22fee9e713573115a9a082d4a15b823cac95cb1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for quatint-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed2c117dfec032a9a44c3a5a900c4ac9b13d7cb3bd8bffd24e3101095590494e
MD5 16f20514f8925bba20d9842ce23ca331
BLAKE2b-256 b9777df0312304190e561ea716882282e3a71221132c53a0908b671e78a0ce22

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 38a2fd4c6bf7317a0ba8a2a9329770ff0bb43e2551ccbe414accf473680e1166
MD5 41df588cdd138fb43d66194fb52c0a31
BLAKE2b-256 8612a1c043acbfdf1d2bf56566345ea707c2b2f3061708d6ab007c9fdef23138

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd90c9b185e5e2f181422c3c661bcb9f1f3099a22569f8248dae96509dfef772
MD5 0b66be643984fce53640c7e2f6dd9319
BLAKE2b-256 50caae1aba5dfa8350b181ed35249ae010ac072198b07151a8d36e010c44c8eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ef21f5f216e685a563fb74065629ccd21da704a4de960ad4a46bda9606fd579
MD5 523c86ffc3fc71414db809648e8df68b
BLAKE2b-256 39450092b65281c4c76f69ba63e0ceafa9495c95755270bbc1855d96aea17328

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b02faf3c15b1dff74e533a878c629277abcc99a762ea0bd84f706c825b51afb
MD5 8da0b9fe7ad8c64e4822773d17775068
BLAKE2b-256 5169379b37f3ef306709787507ce4d3e39b25a51be0366688f9fb878565c5a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 925f62a14ed02aa1ca34fac980c654ffe9fcaa5636077b759367f290407a7684
MD5 285ab4553da26b791866552c78364f1e
BLAKE2b-256 62b506d8112af4ac6de060f01655947f813412154c25b8f2c59e3af1d611eebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2cf90e139cd409b69a0ff6b5ee52bf7c9bb3055f6aca7e04befec8ad11cc966f
MD5 fe6806fd6749428b3800e326c501def4
BLAKE2b-256 0ebcb7ea74deccb40650f2ac72e6bbfdde5745dc77445560df619491b19cc726

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a1e9459c176192fbb6f4686f780f872af1d6914852d48f333fed09de594d3d6
MD5 0cf19b9212bf5872adf8daf68b9eb64c
BLAKE2b-256 d5f3382c79f1b6a032f36cc834ef77ad475cc2fdbb0f73e44a6105af243d7e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 83.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f78d6e8a96831599384c7d4911a60d20c3301b736417dbc18d64e6d37508cc87
MD5 70601643ff5303f4b1fbd244e87f8c58
BLAKE2b-256 e281c3970fb2040bc97b48a5367cfcfb028dd14362d7f1c55ba9ed4975e41022

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4511fa4488c291702c11239078f073af45642796846f9c196e4b28e09789d3c1
MD5 c32b63c002bf3549a91a5e9fbc096ea3
BLAKE2b-256 33e2796068f7d17c28eea7fca59f8e5535815d1b141aa81e70771bf7b23d7a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a225d2307c671de63e4d282e1148f3ce769efdf9fbb828d88d9d378ae7b7a91
MD5 1f02f03b1005bded675cc13c251b0715
BLAKE2b-256 311b1123d19c160d7ee208818e5268eb39826645496f138eeab534ded300d795

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2933e027ef3060b0a048142fb82bddd6cd19fd7378719dba8a879747859745b6
MD5 3d51445b5d336ca5b9567859b047aa57
BLAKE2b-256 fb2c31dae26231281d420a557093ed1db4dc1f479528e6ca3320984d02fbe66c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3613c474c45c07ada42c428abeef00836c1c85f3909d0f9815dd32c494d9a010
MD5 f76d33f9d6b56d15727c8bc6992fb5fb
BLAKE2b-256 6fc30244314ee67988ea076524a9138644b280f169e1cecf44ee68a1d43e1954

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.7-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 83.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 31c5146e8a53202a5ec8e474b2ca15d6b9ed80e12df9c008a7c04be6a3cc9adc
MD5 6357b441f065f8a6eb83486e01a8fb88
BLAKE2b-256 71b90b1405aca02a1494977172a8bc64b4375d9eabcba26dfd7053e881281b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 95.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0312a0c199f0f045155a90dbb2dc1c5b2f993412473f8c8bcb2be121beba9c4e
MD5 fc02589ec0d011eae1c0a71465728551
BLAKE2b-256 a95e826a533be2b3c4df0c89a18d7bd9aac77985e4ac7cd9fae3fc177a323032

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: quatint-0.0.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 83.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 38aa7418aa1d27881c3218c156024ae467ef4d876af11de2d8b3da52b6f46d6f
MD5 7a8920589cc6e06e22019e043017d64d
BLAKE2b-256 73cac74726cfab6e7ca6806b01a38ddd5e30f98848337889d6e1a639f28f004d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8283994d5966cae012b95915609576a5a765290ea5e723c248b685c0a49b12e
MD5 3cd5e0a3b9174401ddd061ccd0038026
BLAKE2b-256 001607a369502249c5cff880d9c3621a7530b4fd7aa937d5be2dca3930b459ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72fe73d16180e1356adaddeaa2fa283aa3ee4cd38839e140b182f090a17d1f97
MD5 c52be9af4eb85071c43ea7943643fab2
BLAKE2b-256 a836711d8e6b4a5e03b25136f85d33bcb6f5420fdb3326368ebd0a459687d590

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d8e58e95a77e5bfef1d268b97d8ab56e57029f720b51b917df4ff14fdfa7dda
MD5 f0c28b256724e6c5140b89420fd0ad80
BLAKE2b-256 2fe3724da19c5a073cf6bc0b1cff7b5697fa9b9d68ebf7faeb2452ee3a2ebe80

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bcf0f591f0b641abefb8badf99d24ea5697706cb09030108bc227c3f986a9c05
MD5 2773264560e4867b882cc934016ff9a8
BLAKE2b-256 a07089461939e675b53fbe2453e5c98088e94c8d516bf8f392decc7ac38acc0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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