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.14

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.14
File Size Uploaded
pluot-0.1.14.tar.gz 376.6 kB Details

Built distributions (wheels)

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

Total release size: 474.7 MB

Release files / pluot-0.1.14.tar.gz

Download URL pluot-0.1.14.tar.gz
Size 376.6 kB
Tags Source
SHA-256 checksum
How to use checksums
15a3f13e65d82b3c844dff849be05fed66b108cbd15128f779c34f405c5bc1e3
BLAKE2b-256 checksum
How to use checksums
b252d2235dbca6026942915b4829c4472e0c95c73cfabc798548982c80b159f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
77a5c4d1cdef686e2585360b0abbff6cd7e0df10e6793356f92fb0bc2b306861
BLAKE2b-256 checksum
How to use checksums
2a2d57a67b6db1632d2cfc4f08ca5aac42ae6631460392c94b26e417d4cd39bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp315-cp315t-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp315-cp315t-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
6f83fa73946f1c5ef94baa63af3ebde83dcfe756314ac01e707b17f3b83d6aaa
BLAKE2b-256 checksum
How to use checksums
073099427663099df41c56916291a925617b4f038c2e30cb7a92757fb4693525
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp315-cp315-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cb10a77defe435ea24ef5517d070b1127ff4a624f7fe7259c3fd6de6854a3ad1
BLAKE2b-256 checksum
How to use checksums
d02ba63ffbb5ed5c2567489f6425c693d10c66e34cafd6bb26caf8dd97d9b4b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp315-cp315-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp315-cp315-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
4a30473f2263bbf47d599f596fcabddb6bfa70ee2ad9dfadc533987bf28a1f53
BLAKE2b-256 checksum
How to use checksums
71a864932b4c4a4ab3fb102e185d9451fb58b5130cb407f746c4c9cf41ae51e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 13.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d02e4287c3e8e9e66019846837972745515183ce2915c8aa3063ef8345781535
BLAKE2b-256 checksum
How to use checksums
9dffb171780357aef9f25b76e0577d41101d15d8d8ab796f174afb44a1d45e5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-musllinux_1_2_i686.whl

Download URL pluot-0.1.14-cp314-cp314t-musllinux_1_2_i686.whl
Size 13.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
745e280b02d507553b1e69f547cfee4a1dbfe6b85e3c4d3471a22262cebdd8f4
BLAKE2b-256 checksum
How to use checksums
e9096d7a9298a6c29f5724e5a80bb2119274a0878e6de38e956397a6fbddf147
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.14-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 12.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
58609811be9d31a733394b4ee2f6f7c7f069e3ca2b7684c4e0235aa813b826c6
BLAKE2b-256 checksum
How to use checksums
d691153941b7a5dc69008410d1453a2cd66e45f84a26ed3e4db72051419ae688
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 12.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9ed98db6a870fc095cb976fcfe6e0dfaa3f0401a13b6e461e80f4d5e60d14e47
BLAKE2b-256 checksum
How to use checksums
088594a424b4b2afad611abd1798c50152ee8a218114ad4949d5e40ec646150a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0a73a16bbe5783798d2e9c71076430929621c2e411a51a71cc2d79b8a796bb94
BLAKE2b-256 checksum
How to use checksums
7ce7c8da391db1f0558cb4660ffaca302cc7afaeed21945f05f110d04ea81638
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_s390x.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
5722a1ee88700f28aabada4f97302e4af892bf81e05ceded646c7c4ccb220665
BLAKE2b-256 checksum
How to use checksums
44afd8361eb3ab95cfebdab74c6b77942d609fc1e276ac8e27b45017b5a9c39d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_ppc64le.whl
Size 6.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a1069fa9f1b088e5c7a1ecceaecd1d6a8c645ac7a86e81f6d3e8b9969b95f008
BLAKE2b-256 checksum
How to use checksums
016e20d2d3580b4f4cf8f24d63a8160d21a02b372b6fb9386095908f33d6666c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
54c2a1c7d4e512b936ac671d977490580c7d2f776f23d274438ffd2c23383388
BLAKE2b-256 checksum
How to use checksums
c16d8ffae2935704955239312bd866ad09b93c8d17ce47ffd9f2977188318b30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
76ebca83c27b57ca634026ac198ef7e05728df4072df0e39243063727a3f0d36
BLAKE2b-256 checksum
How to use checksums
0da3228713f885d52f581a57d267759f3443076c4954021f240a0edda6c636e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.14-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e6697e506771142ac81ad2d1469ca37afa428268b8eccd98650e52c51d10df0a
BLAKE2b-256 checksum
How to use checksums
35dff159eca6f68a614b92d81ba35aadb4bfa4f34ad48ed006399b976abf430a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.14-cp314-cp314-win_arm64.whl
Size 6.2 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
3e8c6f04409ae97e77fa7388498c308bedc74f44f67feddb36b8a0fbf373f0f0
BLAKE2b-256 checksum
How to use checksums
d33dcd2c9abd10b23ee10fd525d162be98b3e8b4f67de5f02dd0c07c99352317
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-win_amd64.whl

Download URL pluot-0.1.14-cp314-cp314-win_amd64.whl
Size 6.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
1c1fb9d80d3bff5bd09cfa13f73197042b292aec3e1dd60a82d21ea762350a70
BLAKE2b-256 checksum
How to use checksums
d268fd2d1c3b1f24fc9f0f6e49012e34d36b5a8432b4fd9198e5c2dc3746bc14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-win32.whl

Download URL pluot-0.1.14-cp314-cp314-win32.whl
Size 6.0 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
7ed94a9b099ce87bced735a676b1c79c95ab23dfac2a9d719274f413232d61ca
BLAKE2b-256 checksum
How to use checksums
e842084691813a3e2ef1fc6f137324d7bf724dbb38105c0ad091487eb07c92be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.14-cp314-cp314-musllinux_1_2_x86_64.whl
Size 13.2 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7b5a6440c54290ca0b5cff1e625fab54c55b71a6973d42d3d1d85c19ffa5df70
BLAKE2b-256 checksum
How to use checksums
b8542cbb86dc8d68bbc4441bbeeb486568c3d08840aa7459ab8b80217240b54b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-musllinux_1_2_i686.whl

Download URL pluot-0.1.14-cp314-cp314-musllinux_1_2_i686.whl
Size 13.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d7f6ebe39ad8608bbf051e0dc0ed409bd6fb05cd16c80917cdef863c46d571f5
BLAKE2b-256 checksum
How to use checksums
6f589ca2857db7d90a173cb2e6e927d3f3e7f21b50598850ad94e2037de93c31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.14-cp314-cp314-musllinux_1_2_armv7l.whl
Size 12.9 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ff1468566a52a99ca45af109eaee2519d17f406a56c79f8b60a2780b649563ec
BLAKE2b-256 checksum
How to use checksums
27f384aaf6de1473a49f53f39e0c27f86a9bd9a944f19788f50b7f7afc4c8bc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.14-cp314-cp314-musllinux_1_2_aarch64.whl
Size 12.9 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1827a7d08692e9c69fc4336b89782333a34dcaa77d298d60eafe1337c7aca7c6
BLAKE2b-256 checksum
How to use checksums
61fa5165dffa85b96644c72363dea0762ddfc6ac0ef0b7b4e32fc6165d1bdc79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
701c64c01530ef6162caa84965319bae5dc18d028f1bbee78c6428d90da2640e
BLAKE2b-256 checksum
How to use checksums
68269ae3beb84005efb732aa1e7925ad3f742cae4cdad3d80645d06a81d3c540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_s390x.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
e0b0869b54015743afbf1bf983a93c20243f16ecbadf87ffca2e35adce059e50
BLAKE2b-256 checksum
How to use checksums
d14c3d013ed454f310e1c5110f2a58db49e0efdb4fa33461ed0a1ecb8f6d28ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_ppc64le.whl
Size 6.8 MB
Tags CPython 3.14 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3d3f9cdf05f20394031cb043320361ae9616f7f8eae7595814d5958f2a77ee2e
BLAKE2b-256 checksum
How to use checksums
4a4eddbd7a1b89137f1b3b806807219e10f65fb7653101356483f377295a23d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
3530009c87e605dd53fb14c9addb96a987abbde4b877534e2245f12348afde30
BLAKE2b-256 checksum
How to use checksums
b110bef218b67dbb07bfc9951fd9a91ea7ae4902133b638e1f8209cb952286cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_armv7l.whl
Size 6.5 MB
Tags CPython 3.14 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
c9a7ad153f91959bead2263ef7a539a56ce5f8b3e946f90a695257ec607ffaff
BLAKE2b-256 checksum
How to use checksums
ef5281dcd0057eb96c1301eb65bea21d4093b5a64172ff4534984f2edf5ab15a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.14-cp314-cp314-manylinux_2_28_aarch64.whl
Size 6.4 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7c24bd669583442c425ab857c653c02344c4f4c20ddacd13f7c50ffce43e56a4
BLAKE2b-256 checksum
How to use checksums
8a92846bcc4802dbde95b11c7dafed3bb360253dea6b79d150fc4649372d7459
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-macosx_11_0_arm64.whl

Download URL pluot-0.1.14-cp314-cp314-macosx_11_0_arm64.whl
Size 6.0 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
85dc9b2420a0d889aa452e162fa97c41637410991419fa2ffff496dfa63c8502
BLAKE2b-256 checksum
How to use checksums
89b0e174399b4dd448dd9d5ed0e027af419eca2b0624259ab546fbe662e3fcbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp314-cp314-macosx_10_12_x86_64.whl

Download URL pluot-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl
Size 6.2 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7efdd1f13f7e1faa757b19f7c4a5fdea8312b28b837df1845f8b4246485ceb0d
BLAKE2b-256 checksum
How to use checksums
f8780723bbd89154f49687722b421364f3b9cd48d3cd641eb46909a76660ad84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-win_arm64.whl

Download URL pluot-0.1.14-cp313-cp313-win_arm64.whl
Size 6.2 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
9177201709ef4b3f4e911fa4f559430830338619bf6f5f4ebefb13043c3fb618
BLAKE2b-256 checksum
How to use checksums
743e981cd2fdd24ac7e5581ce992af36cbb5c8d94a8400c1802689d3b5d5348d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-win_amd64.whl

Download URL pluot-0.1.14-cp313-cp313-win_amd64.whl
Size 6.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
bba18972921a875ccaa0086bf68786531f9d664df1ba93f158500f380da4f5d4
BLAKE2b-256 checksum
How to use checksums
e39ed92c71c09b4170fea9a23aa8c2effc6cbab4d7d43cd7b53f63d788000022
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
39ba36864ca4929dd4ba38d3c660ccc52eccaaaf332a40465de35b83a9d6ee74
BLAKE2b-256 checksum
How to use checksums
50c37b06a3a7d539a102eb6376b0ba841987c75e22e1d829a3a68264974b9ccc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-musllinux_1_2_i686.whl

Download URL pluot-0.1.14-cp313-cp313-musllinux_1_2_i686.whl
Size 13.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2067d67a3ab7eb0d293c705b60a84a391f3454c4472ed173c7c764ea602119cd
BLAKE2b-256 checksum
How to use checksums
b82db5c92853e5b6e6717899e552c7f6476fecfcf2b315bdfbdc5b6d90186be9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.14-cp313-cp313-musllinux_1_2_armv7l.whl
Size 12.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
0a42748a8a497c86342db2eb8a7dc30e057be9f4ca227b0e66ff98fa198c4f8e
BLAKE2b-256 checksum
How to use checksums
692409b3308d98333094a88f279988269fd1ee85c24e6fd8e51facb58139c6a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl
Size 12.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
dc5540d73c7664812ddcecd4aea420cca27e8da1e74d719ec7bc5d320e0a9357
BLAKE2b-256 checksum
How to use checksums
c9f370d79ce87d273b549f35190c1ec520ab2940e7b33832d0d5a6879305f3c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1a123e9185198b026542f51ae0d0d261072228f4cd94e19e13f4b20ba38bfe48
BLAKE2b-256 checksum
How to use checksums
9079d519b47b7a4ad64e3393ea72ea2ec54a8eeddbe9dcae7ad7df923d202339
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_s390x.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
7066be05a2e4c723bd238e247dc51d4a9fdb7abac0e40363368010f02ee0fdac
BLAKE2b-256 checksum
How to use checksums
63f065be2d2e6ee0a3e2024ab9f1cda3169e5a6f9af3e9bfbb20156526017cd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_ppc64le.whl
Size 6.8 MB
Tags CPython 3.13 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
bd05a87672dd666f72b3371fb9eb74998871a298b7463bf5e34e9e830cc68c55
BLAKE2b-256 checksum
How to use checksums
83f16e72da2ae7b9c27ee8b3d85cc746ed862674fe9d12fe25c412c092baafed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
fa92eec8308b532173a5bf61e2134a10ebbfe29abbcc909e5aefcd06d2f36947
BLAKE2b-256 checksum
How to use checksums
74ab14fb0a8af8c93fec467e40a8066083c0114efb456159e45612a7bb6a8d55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_armv7l.whl
Size 6.5 MB
Tags CPython 3.13 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
bb7082526bd7b42c7a261526a963f6ee1b29d5335845463a0ca49982c69e972e
BLAKE2b-256 checksum
How to use checksums
b1fdb7a210157574d83ffd27e7d6fc7a2f4c813d2dade7918587ba06a9b8bcbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.14-cp313-cp313-manylinux_2_28_aarch64.whl
Size 6.4 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
66c4ef482489d9dcd58330ba744ad99389d639b6b8369747503b61088167ab17
BLAKE2b-256 checksum
How to use checksums
4adb3f75afca5c4488d637f72459182e45d1960c0a0d75f6849a3ae473f16e16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-macosx_11_0_arm64.whl

Download URL pluot-0.1.14-cp313-cp313-macosx_11_0_arm64.whl
Size 6.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
694372c055ec65e394dc683ebb73083f6ec96e9d59d1fd2ecdddcc98b94167d2
BLAKE2b-256 checksum
How to use checksums
2d147560a1e2d38f41773fd739ae82bb4eec0163e9e865772197c02fd47e6c9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pluot-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.2 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
be45490cbf21f73f00cef173bd856778411d66ab4585c0a0f9968a23c4817cf4
BLAKE2b-256 checksum
How to use checksums
1ed604b1ad69f6242b4ff413a69e67b65c376215d5a408059959b1c7eb4e9e2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-win_arm64.whl

Download URL pluot-0.1.14-cp312-cp312-win_arm64.whl
Size 6.2 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
c2db7f8beb54b736ea4f8a0154e7f4645d3e66c2b488da8145a6ee540aeb7317
BLAKE2b-256 checksum
How to use checksums
a35317eb401411e7fff58fc121f2be6251322ba93cf311bfba3a71c7cf6c8421
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-win_amd64.whl

Download URL pluot-0.1.14-cp312-cp312-win_amd64.whl
Size 6.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
35ef4e5f4e7dda98d16bae0f8543b1e27b758301dfd46c7e5ad5da2faccda82e
BLAKE2b-256 checksum
How to use checksums
0549587c381a4ccc4532205f6e914b76da605649abaaa0560033c80f05946e9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
12f325cb497f139913755e0eda5948c4d613875dafcf3e9133ade53eaa1e9d8a
BLAKE2b-256 checksum
How to use checksums
3749adcee406277484212be3701a104455e59543cb678cff21cd94eb84bc6021
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.14-cp312-cp312-musllinux_1_2_i686.whl
Size 13.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
c1ae109ced7f7de5b5a28d806e788af3ea08d5b62f35fd901cb743e6a3988dcb
BLAKE2b-256 checksum
How to use checksums
6e31335a89a7ce648467374b79728e98dcfee69b8c0caef5f429e69dc093ece3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.14-cp312-cp312-musllinux_1_2_armv7l.whl
Size 12.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
967ba58c348f7c72b1a1e2b29d4ea18786a9bc5537a243682e47451ea407ba5e
BLAKE2b-256 checksum
How to use checksums
337bd41b81c865562d2abb143a7e42686ea3daf9d8f1299fc61d7628271b6007
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl
Size 12.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e43fde6f39e2dc77c66c672f60b908c94221f717c942fd23e7ab5e25d8709273
BLAKE2b-256 checksum
How to use checksums
9d2cbad29c9a040e558ecf7715cb2edbbb6eaf241e8fa393ac4c8b8a473d8c52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_x86_64.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
88ea56740d2f9c36de6567e48c3f81be9ec386d19aa3ddfd982994fefd451191
BLAKE2b-256 checksum
How to use checksums
725fa10ecc91079af2ec6481d7686c37c0d2a4a450f7ad6a70781f21e999c2d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_s390x.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_s390x.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
2482b4b35a48d4575a983dab9a28886a96c680442efcbcd79c1e255108031e77
BLAKE2b-256 checksum
How to use checksums
50ee040f67ae50e4ebdcd18394ff80c3071ef0fb51ac4e20471d3b14c11bc2b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_ppc64le.whl
Size 6.8 MB
Tags CPython 3.12 Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
22d7e384be71e49cde8064394b38020de819801282e071b896af7ce0f68fc050
BLAKE2b-256 checksum
How to use checksums
c5a9a9bf5b52320dd31dcbde8ad26d3deafe1e6c8509354ea760c0549d755d9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_i686.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_i686.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
21612f7ae98d11e3399adc21410792b0bc835abfddfc3ee52eb82fb724e5adfb
BLAKE2b-256 checksum
How to use checksums
0a5f1485f659979aa428b536821fc7d7a011a60d5c08cd5b528c114656a358dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.5 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
87ba480f206493259f672e2e1d23279c7fa5546add9b6b415bb85216abfade12
BLAKE2b-256 checksum
How to use checksums
00d5455e62b8587c324fd5d8cc96a0a481c007d3bff22febbc400e257dcbff7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.14-cp312-cp312-manylinux_2_28_aarch64.whl
Size 6.4 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
df88e58798f11e5c1aa182f609d3d9ceefe17ed27d833a7e170807016071700e
BLAKE2b-256 checksum
How to use checksums
b2da70a97463fcb25ab5f702cd469a0638dfcc6f5b458b6b2ab5f79a4730b7cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-macosx_11_0_arm64.whl

Download URL pluot-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
Size 6.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dc23fa486e0fe1c7a2752ab99b465ceb079ece7c9343c499ffbb69a8a585ec4c
BLAKE2b-256 checksum
How to use checksums
6080686f591b2a62d119b904fcb599292e26ef157765b97b4a1524d2b67d9d12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.2 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f5fe653d5324d4935a81dd52dd684255cb2c438d1c638b5fe04af1977396547d
BLAKE2b-256 checksum
How to use checksums
605ab0130e0011684251288f6258cb17674037eeced7054eab914a014c1b532e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","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.14 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