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.

🧪 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 🦀 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.

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

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.22
File Size Uploaded
pluot-0.1.22.tar.gz 422.2 kB Details

Built distributions (wheels)

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

Total release size: 482.4 MB

Release files / pluot-0.1.22.tar.gz

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

Download URL pluot-0.1.22-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
814cdb9d09eabf3cc490c73a024646813572dfe864ff39f42ec672d8dcfd24a1
BLAKE2b-256 checksum
How to use checksums
3ba90b2caacc7e7324cf423b1d7480bcd7b10ec67e835a43013752e17f589f43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp315-cp315t-manylinux_2_28_i686.whl

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

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

Download URL pluot-0.1.22-cp315-cp315-manylinux_2_28_i686.whl
Size 6.9 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
00407255604902345c571725176c8562539cfeb6664552268a7c2243c81c9a50
BLAKE2b-256 checksum
How to use checksums
5c2305d08e1f86d7cc5d6eadb39819245ea3012ab068beddcbdd66451d6e473b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-musllinux_1_2_x86_64.whl

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

Download URL pluot-0.1.22-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
5e0649aeedc10bea0fe62e5ebb58e70a7378aac50823457a097035fbe2d51bf7
BLAKE2b-256 checksum
How to use checksums
190bba862f7b54949acc06d66d7fd724f5aba7635939fb74f9c6ade7b5721c60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-musllinux_1_2_armv7l.whl

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

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

Download URL pluot-0.1.22-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
1591d15f59ce5f43d061b8ca3e3d552f74bc69f92629fd52e113366688655dfc
BLAKE2b-256 checksum
How to use checksums
76b29b51158fe1c5a08b8d881667586d727cb6968928420b111f7b5cc4362903
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-manylinux_2_28_s390x.whl

Download URL pluot-0.1.22-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
43b2a5315651dc90de41a6e3bd1fe24a7faf30e07d9fd6c1036552d6ff2d6f80
BLAKE2b-256 checksum
How to use checksums
18331ef4a5fa5946e290ba8ad6c09d8cdcf9efa2db51aa860bb9d3c83cd523bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.22-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
3a048a0e08cf90c8107213810aed95359914416d8c66a24121850926a4f4c605
BLAKE2b-256 checksum
How to use checksums
8fbcca0f54015bd66279f5bbce27b566f86867cbfb97424256933680edb2c9f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-manylinux_2_28_i686.whl

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

Download URL pluot-0.1.22-cp314-cp314t-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
472eaddb9d41b8f1fcae32aa64ed5ce12356d6b849892d6867c763fa1a5c97b6
BLAKE2b-256 checksum
How to use checksums
37328f2087793dacd2f43aafdf37390066272c2ec46f2b597245fd6a2803af51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL pluot-0.1.22-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
210b8fe16879eb0b30553de3215b609091eaf31c2e085d583fdb1ee29fd7cc32
BLAKE2b-256 checksum
How to use checksums
9dc49315c283cd68223a4d1d858b4459dd2813fcf208e078f6202baeaeca1ba1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-win_arm64.whl

Download URL pluot-0.1.22-cp314-cp314-win_arm64.whl
Size 6.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
803fa8226f48a0796af48c329569db5a662d52d8d2324c5c8920ecdb081c30dd
BLAKE2b-256 checksum
How to use checksums
0e6318040e9d803440aae4364ae896cd000e055f0f0bf1115593a96fcb793ad0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-win_amd64.whl

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

Download URL pluot-0.1.22-cp314-cp314-win32.whl
Size 6.2 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
91497b0c99a2e755cee11cf06bef5dafd5161583c1610504c135ddacedffe63c
BLAKE2b-256 checksum
How to use checksums
1b37472cdd6c3afbef11f2703bfac14030d8845a8c5b66d075b5430a99b3ba45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-musllinux_1_2_x86_64.whl

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

Download URL pluot-0.1.22-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
84fdeede284ab531e72ae76adb0bb61d4c4e7298a6b6ccfcb32e2684175b7540
BLAKE2b-256 checksum
How to use checksums
e659b7a1389d4d915fb1483a0207d5ef08a1246f9c65bbe9f3e961a3685ce4b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-musllinux_1_2_armv7l.whl

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

Download URL pluot-0.1.22-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
de483ca5a5a66e1c3b71690328c377d32d6cd02c9d17e8907fe714a1b38fa97b
BLAKE2b-256 checksum
How to use checksums
0d91bb600aff83f7491fa8411eab4314f0587a771da6b2796feef3e78de98660
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.22-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
0ef6949a3bd06c6d8392f3481fee6b491f63dadad1957103974683cf7c11fbda
BLAKE2b-256 checksum
How to use checksums
f16eee326c77cbdacecc4636671b71a0ed9d9987497718c8305f35ec5ead6882
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-manylinux_2_28_s390x.whl

Download URL pluot-0.1.22-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
46b15c7541700419a5f3f68cfbf115f9df456118248cbadc0b001a7a5c7b1600
BLAKE2b-256 checksum
How to use checksums
5f19e51cbd3dcbad8694838568219c46b5b072c609790d7a65b2c660e4dff551
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-manylinux_2_28_ppc64le.whl

Download URL pluot-0.1.22-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
39bd241eb65c24e1a5decd328715211448139974311736f9893c56170e570567
BLAKE2b-256 checksum
How to use checksums
85fe104cb138304000d90cd449cdeb2cf3b1612a0958c6537527140993c07279
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-manylinux_2_28_i686.whl

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

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

Download URL pluot-0.1.22-cp314-cp314-manylinux_2_28_aarch64.whl
Size 6.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
25f8ced2973a21346a8b22165275f47e4d5dae6808d24a337252775dd4794e1c
BLAKE2b-256 checksum
How to use checksums
9b8a4332d9b5656858e8ea1a183b568aef53c7a869bec3238ce3de5e1ed5d54f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-macosx_11_0_arm64.whl

Download URL pluot-0.1.22-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
2761176fb8efdaa6f6f833dfc82c69ccb38bc74867e15ad197c8e09261746d38
BLAKE2b-256 checksum
How to use checksums
3656291e29cfc2a9c2413bfb0395c44e562bf5343036dfdea328d73b3879bef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp314-cp314-macosx_10_12_x86_64.whl

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

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

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

Download URL pluot-0.1.22-cp313-cp313-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4c9b130f6e5712043787fc6441c413ac7a451ba284ea49eb6eee60993af000e6
BLAKE2b-256 checksum
How to use checksums
ed9d6732bbab6ae443242b04df104cb4f9a6a2fd7550161904587ca0bb643184
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp313-cp313-musllinux_1_2_i686.whl

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

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

Download URL pluot-0.1.22-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
9d7ced1f68334831809580c50a55c151954d26baa1edb07284c99e2599d1d522
BLAKE2b-256 checksum
How to use checksums
01070ff43b77dae385f4cda82e020f9aa93860d0568a8e9710a59174e5bf670f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.22-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
756e6085a471cd0a1177299f5d1715d0cbd11f547cdd727799541173dca52ff1
BLAKE2b-256 checksum
How to use checksums
7dff435cb6b99eca70e4295f5c51d3237aefc93b9702fa11672053439aa46644
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp313-cp313-manylinux_2_28_s390x.whl

Download URL pluot-0.1.22-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
6efc07609454d048ddda4c20dbb4e28ff5bbd58195480c462d028ae01256ed66
BLAKE2b-256 checksum
How to use checksums
c344fa5eac7ac8af38783e46fa30a1dbf9de52af1bacf02a52699023b3513a5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp313-cp313-manylinux_2_28_ppc64le.whl

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

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

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

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

Download URL pluot-0.1.22-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
822e7b4a2e8d08896dbac4e33393267440546a1ae997ada5cc9ff3426d96b887
BLAKE2b-256 checksum
How to use checksums
d92ecc07eb69378d67d920bb7535b4fe2373c748c93fb81377a30e143bdce2e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp313-cp313-macosx_10_12_x86_64.whl

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

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

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

Download URL pluot-0.1.22-cp312-cp312-musllinux_1_2_x86_64.whl
Size 13.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
12847578816daecbbc563bdb64aceb210c938805c2a9219d3660c5c5f0952eec
BLAKE2b-256 checksum
How to use checksums
923e3a5961ffaa885069d74959104caff952626be6390dec9fb92507282ad905
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-musllinux_1_2_i686.whl

Download URL pluot-0.1.22-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
92736513fbef092e751afcec49f8646e700370cdde082e3989f9a1a999c30b7a
BLAKE2b-256 checksum
How to use checksums
1c6834721229da69a288dc806d2abee3fe57a01da98653edc1e47dd0fed14c61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-musllinux_1_2_armv7l.whl

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

Download URL pluot-0.1.22-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
e3729733835fef00b5e5aa041a8fec3b2392aed3ac5e1d86abec8146c9f675a1
BLAKE2b-256 checksum
How to use checksums
3e05f7f4063654fb7edfc8eb953d3c02d7eb2f8b287b340d05b95bd5a8b42026
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pluot-0.1.22-cp312-cp312-manylinux_2_28_x86_64.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ab6e9365c1fe03820f34bd5be887d0f677632569ebff5841085b9fe61d6de02c
BLAKE2b-256 checksum
How to use checksums
931c13f3800780b59b4ab9bb3967bf00947843eb7f9302a87a4b87fb146a9823
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-manylinux_2_28_s390x.whl

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

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

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

Download URL pluot-0.1.22-cp312-cp312-manylinux_2_28_armv7l.whl
Size 6.7 MB
Tags CPython 3.12 Linux glibc 2.28+ ARMv7l
SHA-256 checksum
How to use checksums
9c50db9cae67a13f498334878407b4200eed80e580e39aceffad19ad5cecfbdc
BLAKE2b-256 checksum
How to use checksums
efed33c89839d15701c3e904a1670ff44b96cd9f1434481a3bff2277423b9368
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-manylinux_2_28_aarch64.whl

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

Download URL pluot-0.1.22-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
f0aea206197de1e2c3f0a8b2c38392e2ddd2ebd6ba6140c6b727a94091b82103
BLAKE2b-256 checksum
How to use checksums
5a4d8bf71167a37bdae3bdb34d6bdc5ef5ffc8e9ec5cd7104502fe3526bbb699
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22-cp312-cp312-macosx_10_12_x86_64.whl

Download URL pluot-0.1.22-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.4 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8e5893d315495a28f36987edcae668758c275c99666ca43f6d1e2598fd6ee4f2
BLAKE2b-256 checksum
How to use checksums
7cf687a19ef126df73bb09c50f081269b7b032d1497f015ca6264b3b810268f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","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.22 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