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.

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.

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.2.tar.gz (381.4 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.2-cp314-cp314t-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

floatium-0.14.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

floatium-0.14.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.0 kB view details)

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

floatium-0.14.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.3 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

floatium-0.14.2-cp314-cp314-win_amd64.whl (90.4 kB view details)

Uploaded CPython 3.14Windows x86-64

floatium-0.14.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

floatium-0.14.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (95.8 kB view details)

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

floatium-0.14.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

floatium-0.14.2-cp314-cp314-macosx_11_0_arm64.whl (89.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

floatium-0.14.2-cp314-cp314-macosx_10_15_x86_64.whl (90.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

floatium-0.14.2-cp313-cp313t-win_amd64.whl (91.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

floatium-0.14.2-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.2-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

floatium-0.14.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.0 kB view details)

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

floatium-0.14.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.3 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

floatium-0.14.2-cp313-cp313-win_amd64.whl (90.8 kB view details)

Uploaded CPython 3.13Windows x86-64

floatium-0.14.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

floatium-0.14.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (95.8 kB view details)

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

floatium-0.14.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

floatium-0.14.2-cp313-cp313-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

floatium-0.14.2-cp313-cp313-macosx_10_13_x86_64.whl (90.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

floatium-0.14.2-cp312-cp312-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.12Windows x86-64

floatium-0.14.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

floatium-0.14.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (95.8 kB view details)

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

floatium-0.14.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

floatium-0.14.2-cp312-cp312-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

floatium-0.14.2-cp312-cp312-macosx_10_13_x86_64.whl (90.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

floatium-0.14.2-cp311-cp311-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.11Windows x86-64

floatium-0.14.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

floatium-0.14.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (95.7 kB view details)

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

floatium-0.14.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (95.9 kB view details)

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

floatium-0.14.2-cp311-cp311-macosx_11_0_arm64.whl (89.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

floatium-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl (90.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: floatium-0.14.2.tar.gz
  • Upload date:
  • Size: 381.4 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.2.tar.gz
Algorithm Hash digest
SHA256 6213a76e6977802eef96916bf5a941c1a7fdb9c7d1cc491579442de69f8fb3a5
MD5 df2e4b79ef2d3a4ae7738002cbe08d2f
BLAKE2b-256 2caa7e7f97dae05fc44ec9129e4c2191065371886fc8a1c280a86c2eb963f770

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.7 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 63adfd7667370227295f63cfae43736be122f3abaf26231cad4f5e17c4705a32
MD5 1deceee3050f58f99793d8193d1d1a7f
BLAKE2b-256 46b45bc2965470be549ec0eb3510a5935149959ce3850c9bc65bfeb46c55f9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eddcc6e0892b05bd3f553f28039d1e070e9fc8733c594dff646e86807390a4e4
MD5 f5da2c672fd874b076987da3e682f582
BLAKE2b-256 0c86b3321d33723509763209e5146800fc2b741eea4e63287cd6e7971b27c9f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f320e9e088658fabca963d3030dfbbbf52d981205931489c3d1cd8479e8aea9b
MD5 b9e0ec24e6f15d19d28905994df5d2b5
BLAKE2b-256 22317ddba019096f265b3a4a7c4e426c8fd56a0e513f36b19d7675eb3b89497b

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8855de07b7ca0f4c8cfe2e5674012b496744258ba036c9be3832025feaec0a8
MD5 eaa32593f165084d27faa2d40745652b
BLAKE2b-256 fceb1f235a5857d1d0a91bc699263a48445ba300fe6df06ea2a61286d7089739

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d03211bec8639e8d65d10865e6cee4b4070737e9332ee5fd1240f3ebf854546
MD5 9f8218a1efaa9168a25b09d2ed0e9ecc
BLAKE2b-256 aac95f6f522950cbff425cca9d8db45ffe6b5f86b043ccf5f6eb3a823f5a2e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06660f39e15af0e51903ceef13c7522b72d1bdd2a2958869d8791c511b3567e
MD5 12f82f76b487b74516c8794f08cd1639
BLAKE2b-256 b7ef306197d1d7d92f4c66f99447c814a1ad6d77a8c53d3ac24cf2ba4dd3043a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c562aba9c00254250283413261d2ec25ad26263f9f4ebc99882df2e96a213b6
MD5 4a5555f4659e8be6bca543178c799614
BLAKE2b-256 58f0e9b9a0f877a1308a018950efec39a39179bccbe4284ced0ceb38896b30b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e0b412638d74d85eb5b1b53be89148de71e5535745d9c2221d7428157b38d97
MD5 a378dfdb7b4411f8eb08d051d0914114
BLAKE2b-256 83cd389b40b2e638e153e87eb7c89d1cc7e3d5743dbbe3e07d1f99390cd1bfee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c889a308a843fa3ddcf100f202bdc6432d8281d0823848df363599487039b926
MD5 06c118908bc05153d429a954c42dbed1
BLAKE2b-256 c3810159c7306eb88279ab8eba91c6ccd64a32289f1b96ce15618d81b154b243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7602410128096ba01e4da29c99161717fa1a2cc97040e6620936f65f6c292c34
MD5 3687274fb44012a3fe9cdfb581816eed
BLAKE2b-256 38ab120c6429cc99fade7bc6e95b2fb6c7821bc973d3e1bc29f2449880a7a11a

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9d5ee15293cf5ac1c3e3be7bd71803852c120163e6922fd4ef81a2d22aecade
MD5 6ab7fc406b9a8b12379eb1120c5a75c3
BLAKE2b-256 9f847e825f176eeccf61e001766519ff7b2488e793006668ce5f390fa198e088

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7a520b8a0658ea3ba09f117de9b67ffc6142e4ade8de8cf710fb8a2f1368dde
MD5 3173a744d2cb28b27d05893133ee1c15
BLAKE2b-256 418d0ebfb56680f8537ded7448e18f2ff202fada2972bd200b325322862c7924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59047abdc9da75fe3155d2c64c310827009b764852c97d2204441b5f5a5972b9
MD5 d61063e39dc88bfeccdc46379f60b906
BLAKE2b-256 70eebe18c363d4c22ac622756ff6b1cec5cc26ebf5df890b1e4218bb9ceb982e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d72cfbddaf41aa34587741d0feb8f5a9c0586cd0564be1f13e10632aa295d58
MD5 83ac64d08026d2e6ed9b0fb7ae6ccad6
BLAKE2b-256 0bf762965cc5a421e2552a8ff001f7c5bbe00fda35bf2ea853d0789a085ad2e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 91.1 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c805d97a687ec601b8fbd8a943cd630883226aa1a38888d1dc4d651c4d80f202
MD5 4b4d99ad87ce5861aeeeb1860f575a62
BLAKE2b-256 59d3b8a17371cd540d6cb82452a9ffa96d1d839369f47e1cd719e0c3dfd66a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6f91ad5faca3dd161b42debf3f12b8e7cde0d34a14046aeb4f32ee692daab93
MD5 fa31fa410837cf88af2ddd0359d90514
BLAKE2b-256 3426c612659fa6c842c82775580386bf4c82b02b8f3fdbaff237cd2e4f9faa79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c656083c96f375098ff1bfed5d4d09f77f5539d4f34db731cd8d8da5c2273e4c
MD5 1c703cde6878116698423fa4133ff51c
BLAKE2b-256 75b01e0951e01dee62b7dc739ba271bbae2ed622e3c711283b4f00f708b930d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6be5646dee9eefc686839b0d88b6f01ac5d4e82489658cb6ffd069f265bc0849
MD5 94ab4b4dcabf66ee57d47a173bf4262c
BLAKE2b-256 a68a201d79b1ea83eddbb2c3cb9775e8101cf9045699baa467484997cfce3a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b969421b707afd264e8a791d142ddef78e9d002d9a927261848bfb5deb7bfc8c
MD5 1c1f4a5e576287269cd9850083bd1eb7
BLAKE2b-256 bc6c8aecb785378fd083e42624bfbb687698cf6d5663e1695913b08766457027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4651beca02ec892c5c9b4add98aedd82d0788a2ae3df3f06a8cd2b7b95356ab2
MD5 9be100efad7520857a9a3ad535cb0837
BLAKE2b-256 0b6356b1ada3767ebea9b79d835daa19bd337baa56504856486e9680f7bfb7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ea50bfcab46278aa378994ae8c5688c14fb2278c1a2c1319d1d6eb912ca46080
MD5 0d9e6ae0619b37890f7be54b46791319
BLAKE2b-256 8b360ca103014f1617fe6a7b77871e1a7b9d92fad44aa39bbd5cf3e332fd1e0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 90.8 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95bb315f5df357e5f9a8475605a6acfbc9d2abd71f8b39622f3b9039c31258dd
MD5 8f6689d3c0d76a4e8c39ee49c9646385
BLAKE2b-256 0f1ee0549ae62c717c419ad99cfabe503277edbe26b970cdfeaf4c02b4d70764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c40d4ca02f611b5947e4613cdbac9024252fd5c3012ab65dbf46376ab0c82539
MD5 f66415450d8aedb926b4cdc1b4df4209
BLAKE2b-256 1077718052f559345487f97071e82d8bd6963270ac9efe7532ee343f9f13a711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22d42ac04eb7aee7fec80b4cb6937763b2cf1fa7f3f8787fb6feab29c3450665
MD5 9ef0e173f816cee15e997ccc425973e1
BLAKE2b-256 bd800efe72c6aa26bb5648274b3797f338ad1e0925451db349f6689754eb2612

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9767174e198ab32c9256a8f599b007ba11ff13ded99b6c2522fb7e932832406f
MD5 56935c9fe087ed550fd5859b01404194
BLAKE2b-256 757d2ea570d762c027cc974570fbb47dd1df56881ac9fbe726b5e064c8b68452

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b82e2305956bc594c9d18fbe8e458e84633c89bc8869f16f7c1cfe9a6d37a90
MD5 ed6c7b801ef92dcb81f6a667eab8b52b
BLAKE2b-256 92d19257c7f2f7d9350d4cd6a001da0cc690bac384324552a5308c087f65424e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c9edce649777d9e46d74e419956c2fcdf07039c60f5b50e0a7de20fa38b698e
MD5 7423ee90355876dbe56fdee750593d43
BLAKE2b-256 7b6611be3f3d0cd61f3677e815ddd0b8545adceb8a7389be25cb49c8730a7876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c658e976cd63c12fc106533bed043132d0286cef01ab14c7e569a8014007e66
MD5 622bdda865fe46c8695e638f03ecb617
BLAKE2b-256 13ace6cd7ce32190e5d659399616b283c32fd4b4e85796ce09650a5387310747

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c64a60084027d5e384b2ec0ef9de15f9c2783252b610fc082b3a67d98b10e5bf
MD5 79b687c78d3d16d4a65fe47716f543aa
BLAKE2b-256 5c19f6d859d34a665193c42183a7d9078ec960747eb2c76efea05462a6d028ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edefe8c9735adf248116f4d0df45dc7639cc0c548af2f517d954492f7c356426
MD5 2a0897f73837ffffb1331dfd9b288a93
BLAKE2b-256 216b53f60121d6bf2f39175d2e3a20ed5c0a5b0a2272b76a9c1240ec8943942a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba7057322e077e8f7d25362858e0a16b97171c406d0895b3293a700dcf1c533f
MD5 51a8ae92f391306fc3a314a24dd660cc
BLAKE2b-256 5d5c3b49f7fa273befdbfc37aadfd6a5b56b65e82be11b790df5183e37ff7ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc09f026e93d097c222f3f910fb89233d8027bbc893c514cbc54c9889017315e
MD5 45939e3c4c987099144e734be8d9e7a9
BLAKE2b-256 24f74d69a6be44a90c89d6a6efd5f9322a11312a54ac74a1622cd810ae7daf65

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16ed04a8ceeeb82ea3164eccd9aeed0420969eb25152689f1f094f2332d478fa
MD5 2803db4f2f1f725e1bb65536e9f22646
BLAKE2b-256 bf333ee1caf19a6eb68a13023d73a0681827980ce9e60092a9434bc3f5c14056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de7e7ca4d27541e6bfdbbf4051420cb91f2a366bfef09d9565bc6d41117c225f
MD5 a2748f34df49afed44691efa75ac7b12
BLAKE2b-256 db290be5a2aed0662c5c9a42f94f0fca8554254eff666dea8a21266fb0de86c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bc082bb3fb23dafcc218815afdb0668812e5f0a8cb166393c69cc073a3b09deb
MD5 7450e69aa94c0397338be27b570c9b93
BLAKE2b-256 9bcf280859c5bc143f7ead9e03ff0d818271afafb0f5016ba38fdf0f161e02ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 90.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b8a874970a45d73d02c069874a96f7a15d0272039468b917ac4c69d64d9253b
MD5 75c177ba38d2c11c3384b5d056f32f2f
BLAKE2b-256 242450f5c689ab0a55fc0956fff1d536f4c11dfa8dfa99c813b1cf6261513da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0d95fcf6fa68041caacd76f955cf7955916414d694733a8c5b69df9f7be7c7b
MD5 cfce9952a549f32499b14aa9f0cfa1db
BLAKE2b-256 f6db2e3d9bbc0a7ad390f278041bd439f7e22e0daaa70b86223f019446edfb2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26f1f1f1ad38aba0849b11dca0a6a554f4e5900b831212f82f5ae70fdf4e5fdb
MD5 fa4ac082c67d1d054d9427329b50d4e4
BLAKE2b-256 648c7a5106af17c39dde25175aa78afbcdd58ab93d6955e6b118b4b54d0dc3cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04f1409e6aa4d28edcca3fa2a43085cbdb85944a8305802e9e4eadb650fed14c
MD5 1b88d87ff6e79052804057cfd09db993
BLAKE2b-256 4c2e56a71b1b0fd8e3716914360bc2abbaa590f61a6eccb00de38de6e6f5819e

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe8afd5f0ed8acdfc5f390b1035fb9310b0f0e37716e5e99b50b9bfe17738a21
MD5 b0a79b46fb61f339a48941e18ec216a5
BLAKE2b-256 8b2399609e66a2e6fb9ee8522aa7e9dd3eacfa33f2153e376f2aff91112990c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc058b9f0def89cbcb2ec689680ef74f869d140729f7d8123312e4799528590a
MD5 f62bd528d39c3755edbbaf96e6c53aee
BLAKE2b-256 ffac8a7b2e3e5b99ea0c087c5b7cb70cc02ce6a01815807ec66f53d2a416b3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a35334bde7624df3e14b7905c4859a70e065c8a525590483c93ee5d2136c6fbe
MD5 7c1329396f4cebcc638adc3449f5abd3
BLAKE2b-256 2b65f4fb9ac08294b7ed44572850a451cd803d4c9314070dd61b1684dcb64d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for floatium-0.14.2-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