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

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.15
File Size Uploaded
pluot-0.1.15.tar.gz 419.0 kB Details

Built distributions (wheels)

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

Total release size: 479.6 MB

Release files / pluot-0.1.15.tar.gz

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

Download URL pluot-0.1.15-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
67a019d0053465e69deb6b5b6917ce609b4c55852526957960063c1907803aec
BLAKE2b-256 checksum
How to use checksums
f09c9732ec7b48c0a7c259f0d2fec961a2b6c6e252cc462a3e6d6fab29388fee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp315-cp315t-manylinux_2_28_i686.whl

Download URL pluot-0.1.15-cp315-cp315t-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
89a8d4d299518be3354fb92f2d342b5d9f14c5894221ca62013658567407b86f
BLAKE2b-256 checksum
How to use checksums
9b03f7d419f202449c857ac99e8b3ffb1a3f60020527cf358667658da36a9a84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.15-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
22e6ca6e81b5ea5345193330a8cfb0a7675ea7083c1afeb655b4948405fa21c8
BLAKE2b-256 checksum
How to use checksums
ee67e47b2858ec552693c9f5f006643b530570eaef77adc0338399a354506740
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp315-cp315-manylinux_2_28_i686.whl

Download URL pluot-0.1.15-cp315-cp315-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
bed1c380c872f28d69c617a77cc58d6a976ed10f517a15667d50cd21b246a323
BLAKE2b-256 checksum
How to use checksums
66d92e487630eb0f39baa4bd6550624e4a8727d8ec9c055dba6c7544da409f73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-musllinux_1_2_x86_64.whl

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

Download URL pluot-0.1.15-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
6cdda037c6030b074ef61aad6294f9ae3cfa078d4fbe44db18d606d0b519c884
BLAKE2b-256 checksum
How to use checksums
a2271ee78cdaecda66babfe4340e46900a779dbb9e5c483ec811f7590a87434b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.15-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
6d2f406642a35141b94c48566f0338ff4bbccdb3eb8f87a45ccf0fdcbeb7c220
BLAKE2b-256 checksum
How to use checksums
3f4c4182b9be66af4dc692cc6ede65392cb90f6a65c759caa70c6fc98e8261ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.15-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
4162962cc050e0e4184f77d8dbbe0ce5a876878108c7946aac197d44bb9e2064
BLAKE2b-256 checksum
How to use checksums
a5755d7245932de88822533c6cddbb34e999723218471abed5a668ce5fd6631b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.15-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
b0d6008cd3d9f478de0b5b29773595a75408e0e996620be8d2996c9e21052fb9
BLAKE2b-256 checksum
How to use checksums
f0164c1ff0096464107d88174328e29c8a0ec6cef41703a8334944e78fb50096
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.15-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
40ffb8c921e8e6fce895df64132b1ae47b18c1e2014a9aeea66d625a8fa5cf66
BLAKE2b-256 checksum
How to use checksums
062c27d7a299841a1a200ff1bcf1b76dd7bf36eaf0c400fd9173c0dfd5451cd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.15-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
4749f8c9c4f08376115b8198cdc2ad2cac73567954c595f60f6276cbf522fc4f
BLAKE2b-256 checksum
How to use checksums
1b6e645ea56a77bf5034885ade06b4ca16590c887af66c225a6a33ac72d28f87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-manylinux_2_28_i686.whl

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

Download URL pluot-0.1.15-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
9e6052d9cf202e0fb3dfbc7b8af013113beab68dafc98f1563e831f713df5f3d
BLAKE2b-256 checksum
How to use checksums
b55cb3e3e1f76bbc243ea779ccdf1acb54b31adb38c34fbe406c3ebf4c2e9385
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.15-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1b421810dfb73c85841b635c0b248bd8dafa139244ad5c6aaa648e03d0109a91
BLAKE2b-256 checksum
How to use checksums
8f85141ed046428c5f880faf0b794f496b094a99e26b8acc91f3d294fd359beb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.15-cp314-cp314-win_arm64.whl
Size 6.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
5bac32d96e0b45963bbcd9edcd3061759f9eb66e2dfbbadb43118c63f58e971f
BLAKE2b-256 checksum
How to use checksums
28889668b714f7602268ea375453ad41bb003b884490ae858c3184dcbdafdfaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-win_amd64.whl

Download URL pluot-0.1.15-cp314-cp314-win_amd64.whl
Size 6.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
7bbf770194f21ac05fc0fef4bd3091e0809872d36695dcfdc2f1412166fe9876
BLAKE2b-256 checksum
How to use checksums
9c7116688001c7a8b75a06283f79a9b06a92a5758a12b44b5ffc5a0441e46510
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-win32.whl

Download URL pluot-0.1.15-cp314-cp314-win32.whl
Size 6.1 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
932fab75d3a9d57a4236da3a6b8a7cd7fc4bee821877008ddaf2e6ae3295b328
BLAKE2b-256 checksum
How to use checksums
27c8e9bc04430c00254603bb089c14112b08e9bbac85648d46422d6323061c97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-musllinux_1_2_x86_64.whl

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

Download URL pluot-0.1.15-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
ad24c60d73bb4af4b35089967049b1c83cfca3c95316c74f4c909db8e6f76f18
BLAKE2b-256 checksum
How to use checksums
571b1b19b98c381301882311e639718cb443fd13fd3f6c090e37c804436a24ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.15-cp314-cp314-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
64e13cb2c82c8fef38440c13a8f6e93fda6713dd74a8a9415ef6ccde4c08614e
BLAKE2b-256 checksum
How to use checksums
8de2972feb754699ea65d38c14c77b2cb400e2ed3846d5603bafc001f77cddef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.15-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
76bd4538c4f7bac8bc3c4c7114a21edd2018f22abd54eb627064beb1e867eb64
BLAKE2b-256 checksum
How to use checksums
9a57598ca25aeb7ead08f6bb8b60afa881f76417f30591c9e8fa41e905c35642
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.15-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
424873273ac3c1b1bf8aa59e8b730502acafd8963cc8f8448bbb77e8c3c01e6b
BLAKE2b-256 checksum
How to use checksums
56f5d8db1b374c6f043a1319aab5307062d63bd54b71af9a66f541a13c83641c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.15-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
1eddaf319d290a9b2dfe15366e0d4104d2b7aebca974c0b71ca9b89791c42f8b
BLAKE2b-256 checksum
How to use checksums
bb6a14763edb56d0e1fe1fa17d212602523e6cc55270ebb71c28dec989497783
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.15-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
fbccdbb30137890a23afebc7bf31b8f4b35c0f654a2631f858449eeeda725149
BLAKE2b-256 checksum
How to use checksums
8354d7a0536bb80f697520857648121d415ab63629adfbd33661d61ba807aea3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-manylinux_2_28_i686.whl

Download URL pluot-0.1.15-cp314-cp314-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
400202b6fec556e5ee2338d9dbe71f32c22e77ae23ae02303ae46f1de3b8a296
BLAKE2b-256 checksum
How to use checksums
515302ffd90ba8d3a6655ea2cd15bda67ccead81320030823606a58e04c2fb59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-manylinux_2_28_armv7l.whl

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

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

Download URL pluot-0.1.15-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
0c7163386ebd9f952d17bb3d8436314d6c9b26ce1372bbc096fe25ff5715a2ed
BLAKE2b-256 checksum
How to use checksums
f4b50983da592b1b5a4075458c9b40a32727a001e2649ff20b43527eb248e8d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp314-cp314-macosx_10_12_x86_64.whl

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

Download URL pluot-0.1.15-cp313-cp313-win_arm64.whl
Size 6.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
e2294113b50b62b3c886f32d917011b1552d0dc88d1f024646ac4c44bceedf7b
BLAKE2b-256 checksum
How to use checksums
dddcf4c524bd8449b41060da85264af73a0f832d9961898b8ae23071ed48aacc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-win_amd64.whl

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

Download URL pluot-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1277b09e40ce505d7af50f9fd6bcfccfde7939a73ffd1f65ec933fe9bfb2dd5d
BLAKE2b-256 checksum
How to use checksums
49a9eb07a71bd13348504441c71fe74537791befb5769c662ba4de1f3bf4fa8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-musllinux_1_2_i686.whl

Download URL pluot-0.1.15-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
1c02ade0f8bd51d44f6931c1455d1f5f03ee4ebad247aa65f3194b02341e3f46
BLAKE2b-256 checksum
How to use checksums
e446e1fe599db7e34caabba928c124a33a26d238832b9fc1bf2066b172475d2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.15-cp313-cp313-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
391200e1363dcbc656d52713ba8d622e67b86dff18b9e2ab32809c30886f1084
BLAKE2b-256 checksum
How to use checksums
cfac61991b42d78470917522ef1d833a6e8cb78a48affd2a92bff8023a9f6a71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.15-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
88ce76a4a5a56787a04424325066bbb275795adc5117cb97591fd38a3c00e0f9
BLAKE2b-256 checksum
How to use checksums
1cb2e852dc450a962fd42d8aece82bf0b5a51408e3fd618148e7c0470c0fc382
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.15-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
c035af3ccc8134fa133769d1a1e46a7ca20df34db56bd929535516b908cdfcef
BLAKE2b-256 checksum
How to use checksums
83cc881fff5f46d6a860026c38367b7b9463e1254d7e016865cbb43d93421724
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.15-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
c33d84ae1f78417bbd0c2e2f669deab71ff19a4010559479a2a63ddfb9d14251
BLAKE2b-256 checksum
How to use checksums
5ba8aa05c6a72af94fcdccec5a4fd796e9b1226c820b05b1c99412bc0fb722d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.15-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
7a7e17331e2d50900d06891ed5088d8620d187a7bfcafc9f8168a18662d57d46
BLAKE2b-256 checksum
How to use checksums
e9a6553810aacb2db461d0fe7a9593e9ed411685f98111abf10cf2917aa7c8c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-manylinux_2_28_i686.whl

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

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

Download URL pluot-0.1.15-cp313-cp313-manylinux_2_28_aarch64.whl
Size 6.5 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
99d221080260817c7356dbafc68fa0e15a6b62ed72ed2ae4d38e92e194fda174
BLAKE2b-256 checksum
How to use checksums
c2ad1b205a8bddd14f032eb1665432ca5c3b14167646b349e536e99c19c830da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-macosx_11_0_arm64.whl

Download URL pluot-0.1.15-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
5694c0fcf3b8af380772d6c8c24d88e005e6f989bedb6a701ee03c93945ba644
BLAKE2b-256 checksum
How to use checksums
2a12d9079c997b586d8385b1b23887c4cf8afb4e731d7ba77ef46288930d3755
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp313-cp313-macosx_10_12_x86_64.whl

Download URL pluot-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.3 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
05cdb790c163121a78cb616293d45a5892a1480b4695e1e6ef62309fa1c1fd57
BLAKE2b-256 checksum
How to use checksums
3cc25c6540d34fc8db849f6a96686257601575127a4ede6e0cc75f1671f52ec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-win_arm64.whl

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

Download URL pluot-0.1.15-cp312-cp312-win_amd64.whl
Size 6.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c8b82e0fb1bcfb6caa56f985f1acb3df9498a7d992ee34267d0eacacf73cf2db
BLAKE2b-256 checksum
How to use checksums
ab71e75e59e6c8f4be75a08fbdfc12b50acc284a402ea1d9d4ac2fbbc6495be1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pluot-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fc32f1e6f0c4dd10c219f1a7fe79f5879776af2122e972b55270f6a545a3112b
BLAKE2b-256 checksum
How to use checksums
11f42eac8910c4aafed7e27901d34eb38b7d8f0211d60bc243c8130e13f423a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.15-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
277faeeca5549a27b09997bc6609b9157d9705d6229caae6b139c8646ce61186
BLAKE2b-256 checksum
How to use checksums
760f91d26a6181f714a48ae97660460772a7e6c70c2a159da467e9558319c641
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL pluot-0.1.15-cp312-cp312-musllinux_1_2_armv7l.whl
Size 13.0 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
330b86966e0a7caa2eebc184b86da77ca9df7593c8cb3867686e98a0c35e85c9
BLAKE2b-256 checksum
How to use checksums
b5835ec1f8525cd595d7f2682b40e39e89cfe994b44725bac7db6cf2acefd975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pluot-0.1.15-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
9b19a4093b42ae559d7079a9a5fd560252c05371039c4dca0ddc046cec2fb109
BLAKE2b-256 checksum
How to use checksums
6a24cf66cc774c13779c15564f8fda80592c3f8f80208183de5b036f2cad2e5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.15-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
f558dc8793ed83805340b9d6a36f4b9220f27a111e8226fbb5d959101190edf7
BLAKE2b-256 checksum
How to use checksums
438f3ddca8fff457579537efa68cdadb8be1ec65aa9b6593e6233f52f02d17b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_s390x.whl

Download URL pluot-0.1.15-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
d5f2265722b5d4d0d3a1e9f896f2888dffacb9942d16fa9967b9c4866771f00b
BLAKE2b-256 checksum
How to use checksums
ae37e98a73797281321fb710d2bc812ac99f4032555423191a8e22776a20e7b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.15-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
0c8dd397f21d5dcaf7fce81304bf3d3bf620c7496516a7480aab566cd0a2d71b
BLAKE2b-256 checksum
How to use checksums
8911d7f17d02a229ea5c9b112bf1b39b99347910a5f00e574e1463b582c0baf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_i686.whl

Download URL pluot-0.1.15-cp312-cp312-manylinux_2_28_i686.whl
Size 6.8 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
654e089fd21fca0c05225af60f50ff1d2e0e242103d752e6edca6a5ffd725f23
BLAKE2b-256 checksum
How to use checksums
c9c16b140b02b7f8480e05726b69e527cbe4a23d09b822ec8fc018a86971c170
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_armv7l.whl

Download URL pluot-0.1.15-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
589f94d341f221e6bf930c46bded62a0a4c73538f074d86f84c384622b27514d
BLAKE2b-256 checksum
How to use checksums
270ebb3181c85a2df0073f7c82b07df621326dab7bcf3bfceaaf1f8ce38d5682
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-manylinux_2_28_aarch64.whl

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

Download URL pluot-0.1.15-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
2f9055d7b2f6f4555794dac111e3656112cd3b2639b595c3ff7832fbb1477dc0
BLAKE2b-256 checksum
How to use checksums
013ad34b65ef6ccae2d8eb7c8080c202851b1bc132d5f2a051abd0082e60b210
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.3 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8306c2c2d752be508015bb0be751c47b03509999ee8d72165b7a874bbc0b9783
BLAKE2b-256 checksum
How to use checksums
3900f28fb21711a43b7908b6db14ec94b1098f5a7ef939bf818954dffeab4976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.15 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