Skip to main content

pluot

pluots

blog post  ✦  docs  ✦  example  ✦  crate  ✦  pypi  ✦  npm  ✦  paper

Implement a data visualization once, then render it in multiple contexts (across languages, static or interactive, bitmap or vector).

Rust, Python, R, and JavaScript (including in a web browser) are currently supported.

:test_tube: Pluot is new and experimental.

Features

  • Small: The bundle size (i.e., the WASM binary size) is small (currently less than 5MB) to make it feasible to integrate into web applications.
  • Scalable: Scales to out-of-memory dataset sizes using partial reads of arrays/columns and data tiling/aggregation strategies (currently using Zarr via zarrs to achieve this).
  • Language bindings: Usable from multiple languages, including JavaScript/TypeScript (via WASM), Python (via PyO3/maturin bindings), and R (via extendr bindings).
  • Bitmap or Vector Outputs: Plotting functions can implement bitmap and vector equivalent drawing logic, to support publication-quality graphics export.
  • Layer-based API: Compose the built-in layers to create complex plots, or build your own layers with full control over the WebGPU shaders, buffers, and draw calls. Usage of WebGPU compute (GPGPU) operations prior to each layer's draw call is also supported (regardless of whether bitmap or vector output format).

⚠️ Currently focusing on 2D, before eventually supporting polar, ternary, and 3D.

Examples

Static or interactive plots
Bitmap or vector graphics

Static plots
Web-based plots
Scalable to millions of points

Web-based plots

Open example
Python notebooks
Render static plots or use Jupyter widget built with Anywidget

Python notebooks

View source
React component
Use React or plain JS

React component

Open example
Rust-based GUIs
Examples with Slint and Egui; Framework-agnostic

Rust GUIs

View source
Scientific data formats
Support for OME-Zarr and AnnData

AnnData example

Open example

How it works

Pluot uses Rust :crab: and WebGPU via wgpu to quickly render plots to an array of pixels (or an SVG string), decoupled from any windowing system or interpreted language runtime. On each "frame" of an interaction or animation, we re-render with updated plotting parameters.

When the language bindings are used, you can think of this as a form of "remote rendering", which is actually happening locally; rather than the "remote" being a far-away server, it is just across the language binding boundary.

Why would I want to use this? Why not just use JS+WebGPU directly?

The main reasons are:

  • Portability: render plots from multiple languages, without the overhead of an interpreted programming language runtime
  • Reproducibility: explore data using an interactive tool (e.g., web or desktop GUI) to identify plotting parameters of interest, and then use the same parameter values in a scripting language to reproduce the visualization as a static plot (e.g., a Python script in a Snakemake pipeline)

Using WebGPU via JavaScript would couple things to JavaScript, which we do not want for a library that should be usable in multiple languages, including without a JS runtime. Our approach enables our CPU-based operations to benefit from the performance characteristics of Rust (or, in web contexts, at least those of Rust-via-WASM).

You can likely achieve better performance by using WebGPU directly via JavaScript. The question is whether the performance of this Rust-based approach is good enough, and whether the benefits are worth the potential performance tradeoffs for your use case.

Development

Further developer documentation, including troubleshooting tips, can be found in dev-docs.

Set up environment

After cloning the repository, pull down the submodule containing font files.

git submodule update --init --recursive
cd bindings-js/core && pnpm run copy-fonts && cd -

Install Rust tools with Rustup.

# Install rustup
cargo install wasm-pack
cargo install cargo-edit
cargo build

# Install pnpm
# may need to run `wasm-pack build crates/pluot --target web` first
pnpm install

# Install uv

# Generate/download sample data
# See data/README.md

uv sync --extra dev

Build for WASM

# Install nightly version of wasm-bindgen CLI (potentially not needed anymore)
# Reference: https://github.com/wasm-bindgen/wasm-bindgen/issues/4446#issuecomment-3172624621
cargo install --git https://github.com/rustwasm/wasm-bindgen --rev b766ac3e206a8efab2c7cf91923cd502b2bc77a5 wasm-bindgen-cli

wasm-pack build crates/pluot --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --dev --target web && pnpm run start-demo
# or
wasm-pack build crates/pluot --release --target web && pnpm run start-demo

Test in Headless Browsers with wasm-pack test

wasm-pack test --headless --chrome crates/pluot
# or
wasm-pack test --headless --chrome crates/pluot -- --nocapture
# or
wasm-pack test --chrome crates/pluot
# or
wasm-pack test --firefox crates/pluot

Build for Python

uv sync --extra dev --extra widget

Build:

uv run maturin develop --features python

Run tests:

uv run pytest

Use in REPL:

uv run python -m asyncio
>>> from pluot import render_py
>>> await render_py(width=100, height=100, plotId="test", plotType="triangle", storeName="test")

Try in Marimo notebook:

uv run marimo edit

Try in Jupyter notebook:

uv run jupyter lab --notebook-dir bindings-python/notebooks

Build for plain Rust

cargo build

Run tests

cargo test
# or
cargo test --features lacks_gpu
# or, run a specific test file
cargo test -p pluot_core --test test_positioning

Lint with clippy

cargo clippy
cargo clippy --fix

Generate crate docs locally

cargo doc --no-deps
open target/doc/pluot/index.html

Build for R

With R and RStudio installed:

open bindings-r/pluotr.Rproj
devtools::install()

devtools::load_all()
# and/or
devtools::test()

Or, entirely via the command-line:

R CMD build bindings-r --no-build-vignettes
R CMD check pluotr_1.2.3.tar.gz --no-vignettes --no-build-vignettes --ignore-vignettes --no-manual

Inspired by

This work has been informed by my experiences in contributing to projects including vitessce, use-coordination, viv, cistrome-explorer, deck-to-svg, higlass, vueplotlib, and easy_vitessce.

It is also inspired by many other projects such as deck.gl, deck.gl-native, jupyter-scatter, gosling, napari-spatialdata, spatialdata-plot, and scanpy.

Related work

See awesome-rust-vis for a list of crates related to data visualization and plotting.

About the name

A pluot is a plum-apricot hybrid. The fruit's pit is to its flesh as the Rust core of this project is to its non-Rust bindings.

Rust learning resources

Citation

If you found this useful, please cite our preprint:

@article{keller2026pluot,
  title = {{Pluot: Towards 'write once, run everywhere' visualization software}},
  author = {Keller, Mark S. and Gehlenborg, Nils},
  journal = {arXiv},
  year = {2026},
  doi = {10.48550/arXiv.2605.14118}
}

License

See LICENSE and NOTICE.

Release files for pluot 0.1.19

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pluot 0.1.19
File Size Uploaded
pluot-0.1.19.tar.gz 427.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pluot 0.1.19
File
pluot-0.1.19-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp315-cp315t-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp315-cp315-manylinux_2_28_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pluot-0.1.19-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
pluot-0.1.19-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
pluot-0.1.19-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l Details
pluot-0.1.19-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
pluot-0.1.19-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
pluot-0.1.19-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pluot-0.1.19-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
pluot-0.1.19-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pluot-0.1.19-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
pluot-0.1.19-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
pluot-0.1.19-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.19-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
pluot-0.1.19-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pluot-0.1.19-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
pluot-0.1.19-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
pluot-0.1.19-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pluot-0.1.19-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pluot-0.1.19-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
pluot-0.1.19-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
pluot-0.1.19-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.19-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
pluot-0.1.19-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pluot-0.1.19-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
pluot-0.1.19-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
pluot-0.1.19-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pluot-0.1.19-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pluot-0.1.19-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
pluot-0.1.19-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
pluot-0.1.19-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ IBM System/390x Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-32 Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARMv7l Details
pluot-0.1.19-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
pluot-0.1.19-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pluot-0.1.19-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details

Total release size: 481.8 MB

Release files / pluot-0.1.19.tar.gz

Download URL pluot-0.1.19.tar.gz
Size 427.6 kB
Tags Source
SHA-256 checksum
How to use checksums
eac89aaac87fcea266d2c6d46dd43e8625564c0d06da91a462ce26bf7ff2a022
BLAKE2b-256 checksum
How to use checksums
413b68309df2bc79e83ecd5f5e0846fd35e17f4f5ccd6234c076253c809ed1c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4a11106268706cd023653335fe6bd34f3c166d6bd7f7ecbf320e003bb99780f5
BLAKE2b-256 checksum
How to use checksums
d791ddde020675c24cd27f9070386d8b2f57015a9bf4096a2f701a8746c77563
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp315-cp315t-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp315-cp315t-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
c19265d4dd550d144e2b95ab94e25d50e5d47ea06d345d02c340b471ddeaf0ae
BLAKE2b-256 checksum
How to use checksums
390349eeb89c3af0e956708c0c11186d77e19bb63e76e6a17c61a6874075c678
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp315-cp315-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
80592c43b2b6d5f1fd4ccbcb28172716bfd9a7f777e36a5dbdb4e8c2efd2e6f6
BLAKE2b-256 checksum
How to use checksums
8a412c76a44008f94cc8d7fc2c3fd575be25235e9b0558bceb38923fe2117c44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp315-cp315-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp315-cp315-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
9eba444865316262e7f2e806285674d8789b6757aeea0d6b64760a14f968a062
BLAKE2b-256 checksum
How to use checksums
6171695a68590aa99b7b311d99c5daa7214a42b8dae94f7335c141c677a80e80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.19-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
842af15b82628634abff20d951520ea1922d1db18793da2716d14e2543c8faed
BLAKE2b-256 checksum
How to use checksums
694f269d9ff119044dc1f24eb31ce99c68bc0b6bdc37cfd9b01d971eb09d3b2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-musllinux_1_2_i686.whl

Download URL pluot-0.1.19-cp314-cp314t-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b8ebfbc8cd958dd821e811dd58c8863cd7e5466c39f58272cf83ed7737dbb3fb
BLAKE2b-256 checksum
How to use checksums
b7919cd37f222c275cfc053d754dcf017bf21201b7469143312213345130a1bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.19-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
94789efac5ee9be4678c595184a8d40208e8dfe162c90ff996155e815f4fa6ce
BLAKE2b-256 checksum
How to use checksums
0d35cedbbde05202908f7f1d36c6b31249a8ba84bf244806a23a85fa93c66428
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.19-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
10fdd13d7a4a64a439cd94361c29dcb5508a685b082544673bd9c227c5d8d122
BLAKE2b-256 checksum
How to use checksums
b902802121d1804735018e646e0462948b4538131f1675d58d3a6665d5e8628c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e0fed7e3d3e13a7ec892683b80c494ee5a6180075eb08dcceeed014c05ab3354
BLAKE2b-256 checksum
How to use checksums
9e291ac22edc99305b8bf2dbe353784cabac0a7a55d621f16a8e0ee2a3371b01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
a115c45733f4522b3937232a9a603ec9c439e67a8e94c60d6255d47b67ea3477
BLAKE2b-256 checksum
How to use checksums
75454c6839738ffbf00d51eda34b13f5ce1f6e27991acb25f47218b2088e0af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b7940fab9d06920f9e4a96502b4def3392c9b365bc78b30b82c832fc99da3f1f
BLAKE2b-256 checksum
How to use checksums
eb91fe249f24f01f3f0a21db2831d6752b655d99beda71a172d47fb9c4ff88b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
ba96ef83ed0882242c4bc3625bb1193fc84b77c6d042eb7c8be31af868365f6a
BLAKE2b-256 checksum
How to use checksums
a4500c63a840d18605387d52cf1c56eac7aec5bc5dc8f42710e4d1ea6e70dd79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
42bdda24a41fee9b854dcbc19cee88e3458e9156c0bd27772e3ca774190be8dd
BLAKE2b-256 checksum
How to use checksums
3af28f08274f6d604c5485bdd35e8e89688acf135b1570aa4b10fb78a52c99bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.19-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9c9c87c88f4a754423f6c47d2788a30a8332daf1ccc0f82ab4257d09c2cd3c3f
BLAKE2b-256 checksum
How to use checksums
15ff18164e7427b62775c50365b27fc666628b1547b04d59ce813db44292c39f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.19-cp314-cp314-win_arm64.whl
Size 6.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
752943a10de29489e676588b30f7fd75d82115aa9e869adb8022b9834cfb3abd
BLAKE2b-256 checksum
How to use checksums
f4e0ac82d9c3b586f4a069acdc1ef7a6ce09a6a465e4562da0b42065e554e7f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-win_amd64.whl

Download URL pluot-0.1.19-cp314-cp314-win_amd64.whl
Size 6.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c0405b6438718219581d0ba5afad70c5fe961932bbade6bb60fba531af5d08a5
BLAKE2b-256 checksum
How to use checksums
57337205bd46e96b717ec219658feb189a616481fdbb6f9b722e751e123d6b90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-win32.whl

Download URL pluot-0.1.19-cp314-cp314-win32.whl
Size 6.1 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
520b3193030fb8395932112f4d4fbb4a76f80f3b9fba4aab15422bc46afc422c
BLAKE2b-256 checksum
How to use checksums
df6861ae3b94b2579831ceeeb4e7285e44985ba8ce68496f819b0c7ca973b388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.19-cp314-cp314-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e50b35d9367fd8bc23fcf62846dd973aa8aa019f167350d7927422ff478c5cf4
BLAKE2b-256 checksum
How to use checksums
457bb8b93763435f8d574658c650c2fdcf5ce90e8b1682482ad0e03a3926c987
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-musllinux_1_2_i686.whl

Download URL pluot-0.1.19-cp314-cp314-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c15b8cec1cfc0c82ecedb37b0fb6f85c8171b6167de91bc8c72c679a2b023158
BLAKE2b-256 checksum
How to use checksums
79c8f28dc9980b462cda60ec012eca1a5d572f35ece1b9ce7eecaaea0afb112e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.19-cp314-cp314-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a76a37d5634a70e930795d0f4548548c35c326de828b9b081511622dec0779ac
BLAKE2b-256 checksum
How to use checksums
877b723a01c202c7bcd1442f8d5c181727154ff39891793c1b87c619ebc10993
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.19-cp314-cp314-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ea1e9a255cc63321b39454e38eda3b559a0e8c7049c756e3c846d1e569b4d55d
BLAKE2b-256 checksum
How to use checksums
a672477ae252fb9024f2685d57cc6a40955d1a02a0cfa94c1424c930b76f8d2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a899fafaa5cc7960721761105b062a6a9baf2480d5bf3f608a0f0109ebedd0a3
BLAKE2b-256 checksum
How to use checksums
3a4a72148d7418de036ea494a202e27311a1fa89d0ee35efa7ae9dd896314ea2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
c905fbc7a7938b10a7a9736123fcec88a23eb230a6ae064be8d3318ccf73cd6c
BLAKE2b-256 checksum
How to use checksums
7d5dc0442669e11135a8828b3fbd316e0a4c05378a03f25c58d4ad46884bea0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
25e85b7ff998fa985c20b4628f0f20016668ae27e0627f06a88ab43083b919ff
BLAKE2b-256 checksum
How to use checksums
e67dafc1c6ec479e915309e382c744a1f4fc69e1b5ca9efc2bef87320f4f1518
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
62e2c4bee34e65cb45604e3a55b07543d5d2e4546baf13335ddaf0267d83a76e
BLAKE2b-256 checksum
How to use checksums
c583cc4f6114367795dc48d7ad4002e2bd17a3e6a9f9c0fefdfd8084aa5d0eb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
285daf6e7f66f2ce39f0f861469c016d720a0b5e69278b861c5a82f7c1e2e553
BLAKE2b-256 checksum
How to use checksums
692867fe4fff0a924d12409f1fdc4d62afc54b3479066135cd540884d5399ce2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.19-cp314-cp314-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
80f482610016137f0af194a6af877ac2f94206ea3fa276a4aa93ab95955f6570
BLAKE2b-256 checksum
How to use checksums
557bd5fc6b78a867227cfd7b09edcf72fe7a0a4681c3cc7ddb7598a236fc2a1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-macosx_11_0_arm64.whl

Download URL pluot-0.1.19-cp314-cp314-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8fda5579c61436a2f727e0e2f4c90b0ef90975520ada1a7e75e64298cc0285b3
BLAKE2b-256 checksum
How to use checksums
f9a4eac4ccc077b1c48c36fda0a5483684e28138a6db2374e7c60bccecfe5308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp314-cp314-macosx_10_12_x86_64.whl

Download URL pluot-0.1.19-cp314-cp314-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b77422eda349ecbbb04aca4b96d9562ac01279f6aa032fbd15ecf801af109ef9
BLAKE2b-256 checksum
How to use checksums
b39aac7f3d484f07ef0d096127fc4f0c4cac2e46764a6c5b1136e98a7fb798df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-win_arm64.whl

Download URL pluot-0.1.19-cp313-cp313-win_arm64.whl
Size 6.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
b3cc44ecbd3d06b091f10ef1d3d8104912bb315abe658af56119a1fbd93a3011
BLAKE2b-256 checksum
How to use checksums
ef857bc4c522c2a5be2e06b45f379921ac883aeeb65e59c78ea6e88764932883
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-win_amd64.whl

Download URL pluot-0.1.19-cp313-cp313-win_amd64.whl
Size 6.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4323e9fe577fbf681ffbb7790fb90f53eeba2248e6be2274e9edbc2e0a7383f8
BLAKE2b-256 checksum
How to use checksums
6e7d0b052cb7c91800de8a08b4ef0195cab3c5bd16e45265b065c7a3404b9044
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.19-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f402f11e1500c2fc1dd0036691869a17220dc8616a4f2aa03c312839f26d2dba
BLAKE2b-256 checksum
How to use checksums
237fce91c52423780ab1148bb1b8ccd2d189711f278252eb4d01ceb2ee94c600
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-musllinux_1_2_i686.whl

Download URL pluot-0.1.19-cp313-cp313-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1815f1f479d8bf80180cea31789e0b24396db93748c399359579800681a6c571
BLAKE2b-256 checksum
How to use checksums
4730deeee3585688ff5f018136bd3fd61bdc762ff057abcca846226143f01580
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.19-cp313-cp313-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f08f1d38ba0333be61c26cf7b4d1f287dfdbc8414cd4f77cb04fe6681050313d
BLAKE2b-256 checksum
How to use checksums
47e4d8a0603796f9e94524c4458ae9d73ed4a68d3116ff7250b0326f34c614a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.19-cp313-cp313-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
39489a0ea14c2bb4aa975a39678970781e6248ba06828f0d53261610c8add484
BLAKE2b-256 checksum
How to use checksums
cf5f58b2141ad2097792c9d7b3e279a9363ee5d5a2bd3a79cb6114f2043be4e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c04eb14f6938967db177462ae73645f601324047cf5529b0d311a6446001d1fa
BLAKE2b-256 checksum
How to use checksums
61c667cfa76e50f522f70b713be0022c0332211c4e5285ca8c0d78e361764e46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
46ddac4ecf0e59b2d7b535d376b1566b2a274beb83085c89fb443ff3de74b966
BLAKE2b-256 checksum
How to use checksums
52a41af718151e96732570262560dabb5fa15f03f448f7852c7cb1357b3bf687
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
067d943f9e425af985d0e73dbb4bbcd9fd75c4fb82fdc11689c1947afe565728
BLAKE2b-256 checksum
How to use checksums
1accb38ae811bb99bfdad4aa12fd4e72d72cdecf1804c116b2376296011f23c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
6ef6407cc7580cb5e5bd9c195b67b8b5e1b30900a7507dba5b3004942da33017
BLAKE2b-256 checksum
How to use checksums
e7658f2307c6739402a29ccbea1b36be989335f6ce97994e62e4905819af50c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
a1b8d715990f2b16ffd4949ebcd179ccd9f85f43f7ad0c4b0f3f8e1801724224
BLAKE2b-256 checksum
How to use checksums
d1c052720e79c256969ad073d304df874cee5050cd1a1be78b92b2db1cd421e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.19-cp313-cp313-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
21552ca394ce8fd926a6212ec109989b956fac3e0083c254f1f95ede39336604
BLAKE2b-256 checksum
How to use checksums
4030fb579241d1a9366c5e55e450aeb90209e21de8005c04c10e9843b7385881
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-macosx_11_0_arm64.whl

Download URL pluot-0.1.19-cp313-cp313-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bcca4c31a1b31e89e8d6766ba5a6956878c1de351f839ea2d5cd7bb366f88ab7
BLAKE2b-256 checksum
How to use checksums
038f4c37231aa1902046eb6dd72557a89216adc914b9b1467e9a089c03c158c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pluot-0.1.19-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
61a5e7ddb71054e66884226874d4368bff5ee45a70f4a0a4eaceaa7365196a69
BLAKE2b-256 checksum
How to use checksums
47d27ecf9daccf2fbfb1ad281250a717fbb49dc0de12f1a47287e46140f6c54f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-win_arm64.whl

Download URL pluot-0.1.19-cp312-cp312-win_arm64.whl
Size 6.3 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
111ccbf6b30ce36fb84c333997d33b9f9f333c089a60371f82a45f95a3108963
BLAKE2b-256 checksum
How to use checksums
8dd020966397763367e2e8df6f443a31145ec8e2f52ac11a3a75f41e754cc248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-win_amd64.whl

Download URL pluot-0.1.19-cp312-cp312-win_amd64.whl
Size 6.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
be9389a032b7015054c893cb93050e154db7f85405a6ad08d1de8cbdf3fad725
BLAKE2b-256 checksum
How to use checksums
2392d111820152605e9203e3cdb49df22e24768694164458c24d32dc7ffdb3b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.19-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ce50f37be50821019e4de99a94fb3ba395736585fcee071a1c7876209a6abaec
BLAKE2b-256 checksum
How to use checksums
ca91b8d36778018db534d092fa2b54238926f9308dc765cd53038dfb6d182040
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.19-cp312-cp312-musllinux_1_2_i686.whl
Size 13.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0ae90fea34ea7290701cea5d5a5f2c4ce8934390693dd4ce37d494c579c2ea17
BLAKE2b-256 checksum
How to use checksums
d4cf430e256e74821ccf50fee1a0f1854613f7394987e7c3271710bec15052ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.19-cp312-cp312-musllinux_1_2_armv7l.whl
Size 13.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ff80537df9e802427a4ba47ef6c0bac84394fa53edf800189890b5bfbf9cfb1f
BLAKE2b-256 checksum
How to use checksums
27ae186ae9e42d314425d0f8e21d38228055cd7648e1515316ae3095a934665d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.19-cp312-cp312-musllinux_1_2_aarch64.whl
Size 13.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
53c49701fa23167f9924223ca11e952847c48b597d8cb356ab0ed9beb06227ec
BLAKE2b-256 checksum
How to use checksums
8935adb7cf12c3fd5524c226db1ab4ded834b91bcdd414dae58ce4e06c71cd57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4e523a15d66bfce38d4e77778ace8c7ff253a71d8c972b9424fa98b4ae1d4dee
BLAKE2b-256 checksum
How to use checksums
da916d5ca79ffd151b14e5a8a409fa34a8cc22ddce4de8054ab1b2d595d5c4bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_s390x.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_s390x.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
4b1ea99032864995b8feb05e83defae9eeb1d46756c76ae3b2782e659721c543
BLAKE2b-256 checksum
How to use checksums
36587e65aceffcdbe20252e2efed805898fa9ed88ab36de00d3ed4b9e71472e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 6.9 MB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9735a79913e2900347e3a82d97c332362c100442a3fb2a8536d427727da9eaa3
BLAKE2b-256 checksum
How to use checksums
cd8387d07e5da13bffa51732e1cba0c397ad25d018ef23da159dabfdd97a40df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_i686.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3bb09778c0ea9731111ff134ff72c913b610bf9659901201f6845ccbe8106b19
BLAKE2b-256 checksum
How to use checksums
c7edfc281a041d8797c98d73ff5c7e85f4f1028fa949c9eab9c8004ceda85d77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
b9e32967d5ba9ed1a1a0006e5fa5703a37c737168f44bd89be657ce7a36b6a8f
BLAKE2b-256 checksum
How to use checksums
13581efeb97b7fdcf73d9b4d7b0f77023c04d59726d783b38314388c8bcad1a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.19-cp312-cp312-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b8d6742d368f200c4ad3ae6dbb33678263e12ca59bd3e0a42b6033bdb4b26635
BLAKE2b-256 checksum
How to use checksums
357527f1b968aa8e095a460b5f9034ed19c6da1c6ec361d3505fefc6e7b7247f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-macosx_11_0_arm64.whl

Download URL pluot-0.1.19-cp312-cp312-macosx_11_0_arm64.whl
Size 6.1 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f6f43eac4950d04fa851bdefa0a01cfc1fb2faed38a7ac6c8faf64d369809eea
BLAKE2b-256 checksum
How to use checksums
80f4cbc4538a96dc7b25bab96a91fde2839f5fab4bccaf59d1bf2b10463403ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / pluot-0.1.19-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.19-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
39a96e10e48067f640797dea782167688a3229d1c7f6b1bf7d5091bc6024c837
BLAKE2b-256 checksum
How to use checksums
c83e1ee4096db0b3dd8e40adbdfe45023f99f682b7a19452b2b5ff483b273430
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.10 {"installer":{"name":"uv","version":"0.12.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

0.1.19 This release

58 release files

0.1.9

58 release files

0.1.7

1 release file

0.1.6

1 release file

0.1.0

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page