Skip to main content

Drop-in replacement for CPython float formatting/parsing, backed by {fmt} and fast_float. Demonstrator for a forthcoming CPython PEP.

Project description

floatium

PyPI Python versions License

Experimental drop-in replacement for CPython's float formatting and parsing, backed by the {fmt} and fast_float C++ libraries.

After pip install floatium, every subsequent Python process uses {fmt}'s Dragonbox for repr(float) / str(float) / float.__format__ and fast_float for float("..."). Existing code, existing tests, existing output — just faster. Works with an unmodified stock CPython; no interpreter rebuild required.

Installation

pip install floatium

Source builds require a C++17 compiler (GCC 9+, Clang 12+, or MSVC 2019+) and CMake ≥ 3.20:

git clone https://github.com/eendebakpt/floatium
cd floatium
pip install -e '.[test]'

No system libraries are required; {fmt}, fast_float, Ryu, and Wuffs are all vendored. See INTERNALS.md for the build options and backend matrix.

Why this package exists

CPython's float formatting has gone through Python/dtoa.c — David Gay's 1991 reference implementation — for three decades. The code is ~2,800 lines of hand-tuned C and slower than modern alternatives. Its parsing counterpart (_Py_dg_strtod in the same file) has similar constraints.

Floatium demonstrates what replacing both sides looks like, as a pip package against stock CPython. Output is bit-identical to stock on every input we've tested (see PARITY.md — currently zero divergences against CPython 3.15's stdlib test suite).

Benchmarks

Numbers below are from a release CPython 3.14.3 build (python -m bench.bench_ns_per_op, median of fastest third of samples, lower is better) using floatium's default fmt_opt format backend + fast_float parse backend:

Corpus Operation Stock (ns) floatium (ns) Speedup
random_uniform repr(x) 284 96 2.95×
random_uniform f"{x:.4f}" 119 103 1.16×
random_uniform float(s) 121 44 2.79×
random_bits repr(x) 820 134 6.11×
random_bits f"{x:.4f}" 1,933 196 9.86×
random_bits float(s) 275 61 4.52×
financial repr(x) 171 80 2.14×
financial f"{x:.4f}" 145 101 1.43×
financial float(s) 37 36 1.01×
scientific repr(x) 640 135 4.74×
scientific f"{x:.4f}" 1,081 161 6.71×
scientific float(s) 212 58 3.64×
integer_valued repr(x) 143 88 1.62×
integer_valued f"{x:.4f}" 169 106 1.60×
integer_valued float(s) 43 42 1.02×

Wins are largest on hard inputs. random_bits and scientific corpora — values whose decimal expansion stresses dtoa's big-integer path — see 6–10× on repr / f"{x:.4f}" and 3.6–4.5× on float(s). On financial and integer_valued, parse stays near 1× because the inputs are short, integer-valued strings where dtoa's fast path and fast_float's Eisel–Lemire path both finish in tens of nanoseconds — there's not enough work to amortize either parser's setup cost.

The table above is the default configuration. For the full per-backend matrix — fmt_opt / fmt / ryu_opt formatting and fast_float / wuffs / stock parsing — see BENCHMARKS.md.

Run locally with:

python -m bench.bench_ns_per_op --markdown        # quick ns/op table
bench/run_all.sh                                  # full pyperf sweep

Usage

Autopatch (default)

Once floatium is installed, every Python process automatically uses the replacement at startup — no env var, no import needed in your code:

python -c "import json; print(json.dumps([0.1, 0.2, 1e100]))"
# [0.1, 0.2, 1e+100]

The mechanism is a .pth file placed in site-packages/ at install time. site.py executes it during interpreter startup, before user code, and the hook calls install() unless you've opted out.

Disable autopatch in this environment with the CLI:

python -m floatium disable    # writes a marker file in site-packages
python -m floatium enable     # remove the marker (the default state)
python -m floatium status     # show whether autopatch is on

For temporary or per-process opt-out, set FLOATIUM_AUTOPATCH=0 in the environment. It wins over the marker file and is the right knob for CI, tooling, and ad-hoc subprocesses.

Explicit

import floatium

floatium.install()          # patch PyFloat_Type slots
assert repr(0.1) == "0.1"
floatium.uninstall()        # restore

Scoped

import floatium

with floatium.enabled():            # ensure patched in the block
    do_something_float_heavy()

with floatium.enabled(False):       # ensure UN-patched in the block
    stock_value = float(s)          # measured against stock CPython

enabled(True) (the default) installs floatium for the block and restores the entry state on exit. enabled(False) is the inverse: it unpatches for the block, useful when autopatch is on globally but you want to hand a single hot section to stock CPython.

What it patches

Surface How
repr(x), str(x), f"{x}" PyFloat_Type.tp_repr pointer swap
f"{x:.2f}", format(x, spec) __format__ entry in PyFloat_Type.tp_dict
"{}".format(x) via __format__
float("1.5") PyFloat_Type.tp_new + tp_vectorcall swap
json.dumps([x]) via __repr__

"%g" % x is not patched — see PARITY.md.

For the full backend matrix (which format backend / parse backend combinations are available and how to A/B them), see INTERNALS.md.

Running CPython's test suite against floatium

tools/run_stdlib_tests.py runs a curated set of CPython's own stdlib regression tests with floatium autopatched. Zero divergences on the default set as of the last update; see PARITY.md for the current status.

python tools/run_stdlib_tests.py
# ==> running: python -m test test_float test_strtod test_fstring ...
# == Tests result: SUCCESS ==
# All 12 tests OK.

Limitations

See PARITY.md for the full list. Summary:

  • "%g" % x is not patched. The % operator calls PyOS_double_to_string directly from libpython; no pip package can intercept that without LD_PRELOAD.
  • Patching is process-global. One install() per process; affects all threads, all modules.
  • Py_TPFLAGS_IMMUTABLETYPE bypass. We write directly to PyFloat_Type slots, bypassing the public type-attribute API that honors the flag. This is a known-stable internal technique (CPython itself does it during bootstrap) but explicitly not part of the stable ABI.
  • Free-threaded builds. Supported; patching must happen at import time (the only safe window). Method-cache invalidation uses PyType_Modified() except on 3.15 debug builds (where that call asserts on static types), in which case the wrapper falls back to writing tp_version_tag = 0 directly.
  • float("1_000.5") and float("inf") take the fallback path. Both parse correctly (output is bit-identical to stock) but don't benefit from fast_float's speed.

License

  • floatium wrapper code: MIT.
  • {fmt} (vendored in third_party/fmt/): MIT.
  • fast_float (vendored in third_party/fast_float/): Apache-2.0 OR MIT OR Boost-1.0.
  • Ryu (vendored in third_party/ryu/): Apache-2.0 OR Boost-1.0.
  • Wuffs (vendored in third_party/wuffs/): Apache-2.0 OR MIT.
  • src/format_short.cc is a port of code from CPython Python/pystrtod.c, which is under the PSF License. The port preserves the original attribution and is compatible with downstream MIT redistribution under the PSF license's permissive terms.
  • Name and vectorcall patching inspired by copium (MIT).

See LICENSE and the per-directory LICENSE* files.

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

floatium-0.14.4.tar.gz (383.1 kB view details)

Uploaded Source

Built Distributions

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

floatium-0.14.4-cp314-cp314t-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

floatium-0.14.4-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

floatium-0.14.4-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

floatium-0.14.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.3 kB view details)

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

floatium-0.14.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.5 kB view details)

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

floatium-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl (90.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

floatium-0.14.4-cp314-cp314t-macosx_10_15_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

floatium-0.14.4-cp314-cp314-win_amd64.whl (90.6 kB view details)

Uploaded CPython 3.14Windows x86-64

floatium-0.14.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

floatium-0.14.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

floatium-0.14.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.1 kB view details)

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

floatium-0.14.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.2 kB view details)

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

floatium-0.14.4-cp314-cp314-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

floatium-0.14.4-cp314-cp314-macosx_10_15_x86_64.whl (91.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

floatium-0.14.4-cp313-cp313t-win_amd64.whl (91.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

floatium-0.14.4-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

floatium-0.14.4-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

floatium-0.14.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.3 kB view details)

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

floatium-0.14.4-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.6 kB view details)

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

floatium-0.14.4-cp313-cp313t-macosx_11_0_arm64.whl (90.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

floatium-0.14.4-cp313-cp313t-macosx_10_13_x86_64.whl (91.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

floatium-0.14.4-cp313-cp313-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.13Windows x86-64

floatium-0.14.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

floatium-0.14.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

floatium-0.14.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.1 kB view details)

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

floatium-0.14.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.2 kB view details)

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

floatium-0.14.4-cp313-cp313-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

floatium-0.14.4-cp313-cp313-macosx_10_13_x86_64.whl (90.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

floatium-0.14.4-cp312-cp312-win_amd64.whl (91.0 kB view details)

Uploaded CPython 3.12Windows x86-64

floatium-0.14.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

floatium-0.14.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

floatium-0.14.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.1 kB view details)

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

floatium-0.14.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.2 kB view details)

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

floatium-0.14.4-cp312-cp312-macosx_11_0_arm64.whl (90.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

floatium-0.14.4-cp312-cp312-macosx_10_13_x86_64.whl (90.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

floatium-0.14.4-cp311-cp311-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.11Windows x86-64

floatium-0.14.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

floatium-0.14.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

floatium-0.14.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.0 kB view details)

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

floatium-0.14.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.1 kB view details)

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

floatium-0.14.4-cp311-cp311-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

floatium-0.14.4-cp311-cp311-macosx_10_9_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file floatium-0.14.4.tar.gz.

File metadata

  • Download URL: floatium-0.14.4.tar.gz
  • Upload date:
  • Size: 383.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for floatium-0.14.4.tar.gz
Algorithm Hash digest
SHA256 e38cbdcbc1a4db0403e21a76504336ac20a5eb1fe6225ea7518da30ad0547971
MD5 56902b81ea132362ee640c2d2d478f21
BLAKE2b-256 e1b6cc58fa06d0419feebe78183ae35244189a6cad95c0c3de53c3df0d84e388

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4.tar.gz:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: floatium-0.14.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.9 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 floatium-0.14.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0c7065009e9acca8be442c3acfb2621b5392d841d99cde6ee6b62038ddd965ee
MD5 7a149b90a6143c751099350a39c7e582
BLAKE2b-256 60dde95c9cfbaabeb9ae922aa3d37ecb1ac50ce566891b752fd7beb055e49ac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b80a0b8bf29cb8aa16ab5afbdd313110335c3a828654896254830f3eb507c086
MD5 23611c07657cfe49138397545cde124c
BLAKE2b-256 fd296810968bbbf6529bc26d07c45bda9b31194e7fae3d4009a0b5709ec5facc

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 066fe5e0c81aa3be43337b0fc823086f47aa4da87e33e03ba94c37cd1afef072
MD5 f5ec9e4f9edb3b118dd07fab17a5ab16
BLAKE2b-256 eedc4941d90728d88e441ad5ed164c2d1ad090c65cf1a600efa7fad103ed081c

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aab99d72c56b037a04f6e0867d8798db630748ebdbb6a13da59a45617d586196
MD5 0b1ac12da82b35906877baa75d3112f0
BLAKE2b-256 a2b4d97598fc259b89e9247097b31ae13339af685763e6593faafc84740ade99

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bb1cb6a5d63396b295ad1b50036c76915cf481b84bbe36c1b670a38c33be0bc
MD5 40ac0debcb02e4912252f639a3d33b04
BLAKE2b-256 91d224c067a95bed3e4e152b3c8d60a60737b45b2e9f5b6c038b9827986b0c63

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30d3000f73ddff9f0513dbb1ccac620f712b0b9f35dfa87d30f575079e4f6fb
MD5 0f391cf65540d0dbaca626249e1572ee
BLAKE2b-256 0c543227abbc387de3bacad041d7b1edb07c18c2dc81528b7d88f5f081e3097e

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9f84b17d67d4885a9411d9310f87c531a97c43294e5bcffb64381a3e82edb21d
MD5 414addaa47e432f8dba2e8b0db7c2ceb
BLAKE2b-256 144f2ec9055b8ead9fd26841493ff9cda2da0be12a477660116256a4310d511f

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: floatium-0.14.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.6 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 floatium-0.14.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 722877a244634dad4562c9c53b1d53b6c09c79af4bf11b26c66f1f046ebe85b9
MD5 09c11c666e5c2685b89f1751856788c9
BLAKE2b-256 925739fad2b66e6cf7d4fc7622c4e2c1f181ad4bf7590fa0535dbfaa22a17dec

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91111d8b9a6002f22aa578bb8263bc0d07f1bddf875dfc9425b4f45513dca5b7
MD5 aab8331d8a592c1ee70e467763fc5b03
BLAKE2b-256 9d46b6233e91f0bc67f2ba6084daaecd7ea478ae3b2a73866169e6d7c71e5b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 549d9c995bb7c37513e638d11a67bfecf8cf61ecd172ed560b1ede13a118a9e6
MD5 03b0bb07d9c552fed9dbebaca28d9936
BLAKE2b-256 ddf474674a83405e6b349953a31f2300dcb723ec1c4e6109cd1149c399f8cbd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3faf83ca5dfb4f7f471541c75537015bd07a6531d29176ab3f302b861a769846
MD5 a662162c4f54fe3c6ed27668257931d8
BLAKE2b-256 35a7f938a6b7ff224bca4da6180d37bc4b8b4957eae25919f1be62160debd8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81dfc4c8e3375afd191fd74283a999fa7893f0f3aa8bc3cedff79c8ddd108a67
MD5 ac068d9de79cecf09a33f2afd8f4ee6b
BLAKE2b-256 18204098b15bc5f68a24013ee82816160c1339647ed466222671c73b1e64ea51

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 878e11c75e411b9c04d87c526688f06525221762055b114b45f22a1263dbd826
MD5 e566184013d6eb605d48ef67471288be
BLAKE2b-256 794c2cbd473dea61a7ec80ad9a208d85817814a0a03d5a1148394f33005876f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd304439fc142bd2b3f110c04aafd84ad80bdd59a6d8b39e8abfb990f1be170b
MD5 aadfaec6043c8769b68a83872aeb6131
BLAKE2b-256 4db85da9cb62b4e5bfc08c592d0393acd030682d3846f48743ddb126942c6f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: floatium-0.14.4-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 91.3 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 floatium-0.14.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5dad0d6203be426611078c2a04136d79dfe416be439839b7bd559c5d414c2a54
MD5 cb605bca487ed91cf6dfb09c6b607ef9
BLAKE2b-256 ab37199d80fe6fd4b7164477b3eb89e2150c68e4edc1bb978cbb52c49c39dc3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de55378ee5f09448af5fd2db301954ae35ea31bcde10a21571f33fe16641fcbd
MD5 733d879227de9f19d27e9fc3dc8e1195
BLAKE2b-256 bb23e3769f30296f71d16a859fdaf9b42c7bfeee1ca44c34f3859758b9e5e91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 391bbc0c0d59d113f15d82bf4bcc553d0eb3dce7c2c7fb094f6d4b15edc84a39
MD5 0f8b5bdd8f543ac3cd501a8d5990329b
BLAKE2b-256 c86528f62b7d0f3354c0b7583dfdad2486810151bb679158a6a68359f3eb2bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d163080c53e5a61a897918f5e3c6f875e81e0069de93cd5422fbd4e6a27adf9
MD5 77b4456a39957e4ea0a66e67d5e6f729
BLAKE2b-256 6c50d00ae4b43a156b8fab9a791d1e06d7babac6d69c443acbb997efb266b117

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd68ae1d22fc1813900aa3783e928944180112adbb2faa165bd05cd416369fa2
MD5 6cfa3805dddc7374bef01326487d26df
BLAKE2b-256 261c8195ecf36fe63b6e6dad174c8908cd5eb9c340674d6a31b01096897311c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4447824a5aa39bf9c48bcb469416e3b1881fbfeb07f6796402caefab0f3bccae
MD5 ccc6af8638feb20d0da0741cbd472d6b
BLAKE2b-256 2ae7d1feb291cdd7c15bfb68aaae58df632b29a68c5ef83af8cd6208bb0834af

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7bebb30995331b97e3afc302e8f48e0c192cc94128b10215a09391b35aee0392
MD5 fe87154191cb13e2eed01af870c480a0
BLAKE2b-256 ed6b653bc3c440ea2db941284cfa9a8156fd750c6023e6b77d3fe2bcfbc6a722

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for floatium-0.14.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03c6fc1bf094871b7a2ec3093d299fd634a3ec6f409417a14b449b6fde44144c
MD5 f7451929a95dc9fe79571ed2f8f0200e
BLAKE2b-256 b0e4eba3245e3b22c0d228f25d107d528306860ae1f8511c8e0e82b601e2d334

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b64243118e4ee05aa84ee3eb29ba4ab7eea5a968e15788b4d920f98a24a2036e
MD5 cbd3903f1f4ba30c0bff4c5f56d7af35
BLAKE2b-256 663f69290886d297c9cc87421d2d4f4bbe37f8538824a6c8fc36f22b15aca81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e79ba795629c4bb6937cbb9328088d1aba2463142291e2dfd6f9adf7bce978fe
MD5 6eb8b881de8956590830d7e87bf85288
BLAKE2b-256 49743a5b91d5a5df583119bf688685b0410caf967a93865a7bd31a2dd2bdf2bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09819a79ba9a76f78a0b2254a30406544382dc3a41d9fae351538a55d29b1bb1
MD5 a435a73b9ce5de843740b3bc65ad1b18
BLAKE2b-256 f0dd7423e6b66e0655f9e36074cb9048baae0507a9c54c113148105d68426c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5599ab0af9e665f01f32367e3dbcd3fed3a632a5b22611051f1717ff291131ee
MD5 5e17645fb9b00b6dca21caf93cd3d664
BLAKE2b-256 3ba1dac9eccf92fa64c32c78757363a91c8a6427f5cd8fe3e224a7728178855a

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 053ea1959ea3620ea6c7d1fb1a5b15a9e9a706a66aaee90c5a72c1ded6ce7613
MD5 23677a4775e1d2bc8f7273e5ce830197
BLAKE2b-256 c627a8c0e993bf6aa460d533bf02851eb2d598465b4317edf2f1fda484f9d2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cfb6e2df0922b4ae3c3203c67bbd88131e8d9617d57b799ede1a5a52b09142bc
MD5 b47b174ae8f1816949144b404cdab631
BLAKE2b-256 94608bab9b22789bcf262346d78a6106a71f769f0814f0e21fd2d99551df0f05

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: floatium-0.14.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 91.0 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 floatium-0.14.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f5444ca3b48203608ec39d9859e0428cb5cce76ab4c2fe4434525f25a96935e3
MD5 f847e701d1c886afff3baca6371319ed
BLAKE2b-256 7dcce952211a226d3426d9e46d0c1ff9c5ccf3d7689699cb52cf049928c5f5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50ab51b524afbfed4c4902ec3615ed229d891ee6a688be9fbd0762ae2055017a
MD5 22db05f9f7405718d97c19ba9af0c55d
BLAKE2b-256 03628d7091409fe3494faa0cc7e435c74bb4d7c2e9858da49d8cabfdb7229bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1473dea74f7408cba5ba8d1d3d87fcab341a8b4c654487db32fc638c40d9b1c1
MD5 f147c7062b2f1127ce86d5e7c467deb7
BLAKE2b-256 efdb856c24eb73ce37e93477364306d99b8393be7ecd50ebd4af0a1ca718160e

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75dddce0650f3cbff0dd7dad996f32c8a63f225f3e15247108905199d96d7264
MD5 83106e2b44d6949fd0c8c9df59a46a2a
BLAKE2b-256 f388269f63e5b61e880b02651c7ffb8627acc51c6d32b2fac5840eee5077f859

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dc6cab1ba102df1cbf14750ddcd5b943ec4e8da426aa34b5ece605eb6292bb1
MD5 212eea886fe1747757a8d2adfcd94a75
BLAKE2b-256 2e93553e2e85cc6316b24a0f121f6f5fb0e5028b7801f8dffa8742a0eb9ec19b

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d1f6740728952d0ae038016ef6eeb678135220d576ca9b0c8fea115aeda9680
MD5 aefb63ccabe50bff3b9a46067cd712ed
BLAKE2b-256 9b89a3de7668dcc68f7e9070a452865807f4ec6415344f34e2d1b9e6250172df

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0cf3a75dd5ff2b10ea9eae9498e79ea2559aa2c308968648da3cac5069b16e2
MD5 4695dbaa880188733fda62654c3953fc
BLAKE2b-256 57069214a847d63355ebd15fea376d18e2199facd4b463f47b0aaed97ddb0803

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: floatium-0.14.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.9 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 floatium-0.14.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60b06142b50500f20999a0486518c9d97d2d6bd977d8d5346d26cb65048a2613
MD5 8def3d0493649d62a917950d7c445a5a
BLAKE2b-256 0c4576c77125066f4d49f9e0eb2e26e7e962fdeddae84949f3291094f16cce02

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f34dfad26eb8c7cd56f617abd27c6ba97af54aed87331af8abbe3e5682aa8264
MD5 54314b32fc113f3eca3ac13f75ea8984
BLAKE2b-256 caf4e74207b0352cebcaf49925f6b42ab4ba6a9eea71aecb7bd95547c96dcfcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b4d40ee8dc03b4a0034ca6db31f7436222729ba0fbd185cf925172a5c0108ac
MD5 67a4e4fbf9ced38e38edf719870775f0
BLAKE2b-256 8bf22633f3b158d8ac28102fb6e14a39315dfc429926f917c06bfc4f844a33cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86595eae20b0edd54cd19a88c8b1dcca088d3a23f13a9b73473ac2c6a668a201
MD5 0f926bf33e89faf4b9da2f7ceeae8e37
BLAKE2b-256 8f2ff07aac781a4d38703334be6695bc951ab67b418459c4e5e6458acc6a70f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 644b1a1d4f8b215adf0d7ffdd9a2dbf23ab3c2c3393334b5074694d6cfb22214
MD5 abac1ccb51f58de53e5201e9f496c90f
BLAKE2b-256 f5b5faccff08ea9dec515f903d4e74964da8348a69efe87c2841e9741215588b

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bd398973bb48a3bd9c224663349b78a838367616610c60267820ecf6eea732c
MD5 a501dbc012ffeac5276791b415ae0d21
BLAKE2b-256 3be9b08a8be6a62a4bfb11e3672b3167d4f656fd0c8957d3c61880a78fb8c962

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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

File details

Details for the file floatium-0.14.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 181da252a7a90bac10e0cccda9ac1fb2921fc21ca82cca5259b1e74d722cfd89
MD5 7fe5ae4c8456de22e8a4753459772394
BLAKE2b-256 00bc64c1d01f1b286fc2909365da150f9d2fdda536690df7b73ed2631cc9c7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on eendebakpt/floatium

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