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.3.tar.gz (383.0 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.3-cp314-cp314t-win_amd64.whl (90.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

floatium-0.14.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.2 kB view details)

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

floatium-0.14.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

floatium-0.14.3-cp314-cp314-win_amd64.whl (90.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

floatium-0.14.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.1 kB view details)

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

floatium-0.14.3-cp314-cp314-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

floatium-0.14.3-cp314-cp314-macosx_10_15_x86_64.whl (90.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

floatium-0.14.3-cp313-cp313t-win_amd64.whl (91.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

floatium-0.14.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.2 kB view details)

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

floatium-0.14.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.5 kB view details)

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

floatium-0.14.3-cp313-cp313t-macosx_11_0_arm64.whl (90.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

floatium-0.14.3-cp313-cp313t-macosx_10_13_x86_64.whl (91.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

floatium-0.14.3-cp313-cp313-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

floatium-0.14.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.1 kB view details)

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

floatium-0.14.3-cp313-cp313-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

floatium-0.14.3-cp312-cp312-win_amd64.whl (90.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

floatium-0.14.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (96.0 kB view details)

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

floatium-0.14.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.1 kB view details)

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

floatium-0.14.3-cp312-cp312-macosx_11_0_arm64.whl (90.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

floatium-0.14.3-cp312-cp312-macosx_10_13_x86_64.whl (90.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

floatium-0.14.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (95.9 kB view details)

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

floatium-0.14.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (96.0 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

floatium-0.14.3-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.3.tar.gz.

File metadata

  • Download URL: floatium-0.14.3.tar.gz
  • Upload date:
  • Size: 383.0 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.3.tar.gz
Algorithm Hash digest
SHA256 0bbf842889e320efee11e2e6d5e570b0519b51123b527d6e66c61a4b48eb5266
MD5 1adfbfce9a5c7c3bda6aae6df2c4ac04
BLAKE2b-256 ab5e7902ffc4451ec0026ae8f2f426207910793d005a5e9475685abead72c3d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.8 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d591e16802e95dc656134de7eac3d214a95920fbc87d440222256278722fc803
MD5 4b132503624f8af8bb8f5c0d104407c1
BLAKE2b-256 de8f32fec2382fe5c7b01af1b2ab707a70dcf5fa1378c9e3d3d72a327fe43eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7bbc56fcfb4bb32b44ffccdc4b596d4cb1d0c3433164cd745340522e0163308
MD5 b708e0e54b86285bc2c01f645c7fa582
BLAKE2b-256 850b8e0fe31ed3060bcd5eda7b3072f5ce056bdb13f127171f42b6072004cc77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a05960ef3ced669451509229f31e4301655ca7e77d5132b320771725ea1193d
MD5 db2770d2f6e8153360f12821646b7f85
BLAKE2b-256 637dd4149743be40d28a7552637f3cac33eb60dfe27563ca0b4984a1b6e2692b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00c6231b9d20a23fd3547b7ac038bddd72578c968c7622e1a2afa6ac1a8582aa
MD5 8059db3bff1da1ea4d8a3fceff6c2bd8
BLAKE2b-256 9a8c785e785f06b297130bc0f46480bcf83562eeaaca946c2c12b749a13b57c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 389a8364ee726bf5c048c017e901d7541fef913a23088bf12f1f9acf37254350
MD5 112f95388b9ed6bf0fa65e808c0b4413
BLAKE2b-256 5e9df9b5e6a59ffa93e4f12ce92e51384b50aceb4401aef4f8912e83e58bedfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f1d09150092484531ef2cf483cfaa66f4a5429b74b0b8a57cd259050745443c
MD5 2d98c19db097f57999ac5a37e0da7b83
BLAKE2b-256 61cd85a095206c64563981e4c9e6803a81b4f9e3fb870f4036cee9df933452ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9128efd9611508e5776d1ad15a809d1024a71bf65c7ee5c5c676fcf073c90e1b
MD5 dfbb75411329d0d408273fa02a928a2d
BLAKE2b-256 89a2197dc200b85f5cb2c7ed2a8ea5ebcc4f2af07ee5a6a6c672faae1a819ce3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.5 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 53814ad3e8ff6207b9ea2f138d0e945eed03bea65afbf9142eeee74fa6d4f886
MD5 9870ca8a1999737c8ade1e7421bd413d
BLAKE2b-256 f26433d7ba22142b0aea47cccbfe930598fe2a5dc6cec6eded6e79c3188b456c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20e1d3806290a27a2c19421fc9726a08db1ae8ef0dfc781cc1bacb08f768d664
MD5 c33faa9598f8d7a927e02a503d72afcc
BLAKE2b-256 3567d2f1f6e4747724c62ad35dd5647f0f980b65dadd181466f3d37757986f2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3578cd86b1fa002083e49e6ef8531758eb71fab9d59b3149399c0e5dae1e805e
MD5 46fa7c42574a394fcfab79d7dfd7d11a
BLAKE2b-256 b7b5146d2e7d6b2ab0185e3ca572b571ef6de7755ae6974dae6f0c434698b746

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14c66791fb72ef0cc15b8a1f7915319a05d2fcbb227d1d6cf00f77ff2f92d642
MD5 e0f53081a5a4cd0f914f62c934511ca3
BLAKE2b-256 5836cf644c20e61df9b9c2ed257561dae1419df0e118a225367f2a5923c0142a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f67d98bdb75ee0fc5a0698da1b8a51863d96f3a80935ed0e7feb482ec3a30b5e
MD5 bf27b9d8cbda51b5865e1f10fcc6328d
BLAKE2b-256 9d763ec1a00785fc41bb4e8bdd04279bde6f72f61dbf0ed5be819c2067d35ce6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f50991f33f44e3a084fbb89f59c3405459752bc7e5029be457cbf01dd6112eae
MD5 ca79185134120a7e03ce8da85f0af142
BLAKE2b-256 fbd3a5e639f7b28a550ac64dc46227483fdc485fc8e7cf8c045f003bb298dde1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d22208c3580a499392da8f8ed3eeb491283a006cd86314dc983525a2ff8c7507
MD5 d45cef15c7e5e0f9454b5c33dd3e2e22
BLAKE2b-256 9a5a8596852ea2aa4166c5213641b0e2961a3d2747d557e77aebac06193af389

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 91.2 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.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3fe6a8c1d4b3a481cd8497c9c7b3ffd9a64c6b9f349c2506a59b3d48bc348245
MD5 7eab306cce66cb7e66e84865bb5a4412
BLAKE2b-256 59fb690c0727470c42f68d67e96a9ed1e9f388deed1561b5a541e20613dbde2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7e0486fae3e35526e33d96598c5dd5a8237f3a2576d8af27f3502355bdd97d6
MD5 6a5fcaa1a35ca85030b72fd54cc08ba6
BLAKE2b-256 bca9ab43073c37ef6928cff71fe33816741d3abd2c06b986b5a3a1bd3fd905ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95428161791fab843f40a1f26159201bcba466799514541e000504925d812957
MD5 28c8a2e96a4fb0808e914691ff855e0e
BLAKE2b-256 ad9746e36cf6e563aee895b2aad2c181dc2a4286872c7d063534e1d34905ddad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd56cd85b255921e5bc4df13ef36a43e47a2cc896c2e795c0aec354e7749ddba
MD5 8f8e7fc29e17bda0180a8d917d1bf3e6
BLAKE2b-256 d4e9533b5f8aa5338d63a122bfcff17dabe5c2c76262d1e9c6761e67de2ced06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3c451a6e449a437a01c5795086cc49527173fcdec518761842b46d5aa54c0a4
MD5 39fd22cf39abb4c2b7add1628d115f47
BLAKE2b-256 e1ce9ca438ff448cdfe7c0e0afe06c7e8a5d0e6f808a8c43aefabf06c9487e0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21d7907bd763318ea88d74c1e29b18d359674e381b1b2d6c1c73dbfdd0b9edbc
MD5 f5cfecd9e2b4d686976ee0519cd828fb
BLAKE2b-256 8ef7dcb3c2d5d19e0c8ee5743660f0335a40efd2b675dfeef7b596149cfb3d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 24e6d0923390ad9523bb87afa0914e93460f1e56e772c4d8b23bcfd8fa2ea937
MD5 7ad9da845df819b7af5264dab1f42084
BLAKE2b-256 01c878d6f3e29f2351bfe24ddaacd6c42f1af95ea264e5c21916f1a572ddf431

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 90.9 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ae3c610882315f752f782f3f1969d936f26cb0d351474781255a1d10fce87d90
MD5 7c5766157b9f15e1aecfa4f886bcbb88
BLAKE2b-256 76dc6b3a6c120bbee64e3f7ece26d112490202be9b1dab4adec1c869017954d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 396f5328cc158ac1c54d04dd0bedede1eae99201e658b05acfdedf688808c4e0
MD5 580f24ed02eaffbea6d9a14f69b2c35b
BLAKE2b-256 3ec070a2416b4e8e7490ea925b1786eead6f3ffcd1a078350db973dd462165b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8caea1759b2a5189bfb8d43b73bb520b0ebbcf9d718925188e0e4f5ff0951a8
MD5 bce2f569e2188717228a682c03c87e7f
BLAKE2b-256 964bfe81512cfe68e2af3e418e87070cf765c69f87738f9b3ad59f0f8b997a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b937cb52866883b61ef3c493578885800541379dc9ef2b0a8d02129acf088404
MD5 58c3957c5814d5b72ec04d732fe9bfb1
BLAKE2b-256 9ad186e1d5e1fe7b384d3009755eaa1a12af30bb05625ae2f5ce88db805e29f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e6f89778982c0190bfb2dbf299f3478d5e21f38dd5cd6d87a9f938cc93628fb
MD5 57681f561e804e70a724bafeb033541f
BLAKE2b-256 da27edd8337ee3511574ce926c2ec1868640aca8ba219ee2a9f476d3f848d321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc1a00b6c4f041b4709a8641e16735d968e704ddf466646a024523f7a07349e7
MD5 82301ac22db92b4f8065c3266bac1dd6
BLAKE2b-256 118fec80614d82257dc96f96be007030cbc7678dab2fc1e0d8f039296d83754e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d906a0d3ee8242347324603cfd3f33b88020dfa2880286070883cb7487e8ada
MD5 d8cb13b4c3d4788889a5adf09920a286
BLAKE2b-256 c67eea59dbcf059b53bb33f5eff0d48e3be1b1e30b23f0aeec6f39e1214764c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 90.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a8a347e71fa82fc5102c9341d0032bc721ce7cff58c7753cd0da016380d34bf4
MD5 156993dffb5098f664b1f7cdef5c4d8e
BLAKE2b-256 e84f1b2c5a36c241b8e61cf3c1e1e38813d12517cd1e13a8037544d5c6e0274c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4697c2b31f26d157726dbf1dfa37c409a7cda8bdb55edebfcae744a10d15d86b
MD5 af00ac3ac5c22dc88cfdf31b0d8a9f49
BLAKE2b-256 9318f657bc1cefd11cd29e7e52c21d4b119170d788435378876cfb07f3520bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ba6cc300928c799be0b9a02c9fe0eaffd48f63dc1d20edb090cf151933a02ec
MD5 032e07752fb2dc8548084922505beff3
BLAKE2b-256 64c8be0c78ba1dc12719c5bd466b3b424b107ea742726c29fc8af2521164a04d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5301466cbc49a1351d95151cc7e56e7037c3597c930ecefe4466d9f7c388e91b
MD5 7a21e81c6129d5ffdbf0360249a75f5d
BLAKE2b-256 68eb00d14d459d6144636be7b9b4d264574a04f95cd61657b608adfac72a549c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe2d94997d22d68c9717d315e5d14eb4b88972900270d68a78d21e1ef0586166
MD5 afb332105045f8ed4f8ba61e14165391
BLAKE2b-256 2d9e374945f5570405bfb073b91f178225716b556faf748329516aa8650e85e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38176d6465f1d1ee4b60803e80b569002d3e4c16149977812963b8c4c3e6d720
MD5 ce1b4e4892e08a3b178a01f254bbe853
BLAKE2b-256 80bd9b5f3256c33718bd913ad989117408e863a624038b2dc78f91ac8e462549

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 da1c2e35df637980dfaeff6169737cece0a2dcdca5d36fa15a2fc6883b688ab1
MD5 ce64d61efd2351041095a082f97af7c3
BLAKE2b-256 04868c9c15ab981b576eb47660270e6eb988965bcbc7fbadcf6bcb05e1a7eac3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: floatium-0.14.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89cf43ee1ff1ea2dae2974104136ff6c4493458912346f5e5def7f59ee0a0b62
MD5 38177c1ff6801e3a6a4d32b0b91d0a6c
BLAKE2b-256 736ece371c0b0e3f763509531523cc3c4f01594d95f3d72e77d58c828848bb3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0f51e9074546bb22bbfd50fc3352e72ef42961e0512c2786fdf6ba9fec1a4ed
MD5 4e292060ffffe80a9fc0a535e8199766
BLAKE2b-256 8c1576fddec772aa0248aeb85ac498fc88e639b9d4193e7fb53b4ff3475cf85f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 710ec375401aac2007139a2278db013e3dfed3e1c6ee03c58c0fca1c2db0fe9b
MD5 662af2c36838831ea957929b21649dad
BLAKE2b-256 36d1e1a3f29b76b219638292263c3c389cc6951491f781702629c0a7d415cc30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4062dd5ef3487fd8011e4cd296a1f47fdc77ebaf44cc0f405f1e6ec47ea70e48
MD5 0f20d8e3771c0f5f9aa5848e1ce06302
BLAKE2b-256 f2b8ba8dbf7083d2308ecf364a4e6fba546209f0109a28f44d470aa668545e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b0a00b8babee7b35243120baacc404216021ec8659a370e984f6a98ab1964e5
MD5 85a8db86d037f0ca6e0bb11aa843324a
BLAKE2b-256 9eb992dd530e0d546d22097f1b806c278e6d9c4415fb4916b2ed4586638f7c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0199062754f4cebef07a772f2da2c45ba7e4975c399666d8bdee139383b10e73
MD5 1e4d8b641ecd7f223b21759e18c7ba86
BLAKE2b-256 814c09f691f48884b265b5ab441d6cdc317ad487726c102976ef77024e57abd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for floatium-0.14.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 731dcadf84ebce3be5bac12ab1e44ab9c6465ad80c9b6a8344bff62f71e903ae
MD5 c6e2cd8ed4504b77a0d3547c2864e7aa
BLAKE2b-256 8546749a0a2567a84ca3025a4a704ea893554ead3c840d1cd80d473371473c3b

See more details on using hashes here.

Provenance

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