Unified image hashing & Color extraction — ThumbHash, BlurHash, and ColorThief -- 3-in-1
Project description
thumbleweed
Unified image hashing, thumbnailing, and compression for Python.
Rust-powered via PyO3 + maturin. Zero mandatory dependencies.
- ✅ ThumbHash — compact image placeholder hashes (drop-in for
thumbhash&fast-thumbhash) - ✅ BlurHash — smooth gradient placeholders (drop-in for
blurhash-python) - ✅ ColorThief — dominant colour + palette extraction (drop-in for
colorthief&fast-colorthief) - ✅ Thumbnails — real rasterised thumbnails for images, videos (MP4), and PDFs, with a pure-Rust crude fallback that needs no ffmpeg, no pdfium
- ✅ Compression — optional pixo-powered JPEG/PNG re-encoder, auto-applied to thumbnail output (mozjpeg/oxipng-class quality, pure Rust)
- ✅ Python 3.10 – 3.14 (including free-threaded
3.13t/3.14t) - ✅ Pillow > 11 integration (optional)
- ✅ Typed (
py.typed+.pyistubs) - ✅ Pure-Rust core — no C extensions, no NumPy required
Installation
pip install thumbleweed
# with Pillow helpers:
pip install "thumbleweed[pillow]"
Optional Rust-side features
A few capabilities are gated behind cargo features so the default wheel stays small and portable. The Python install extras are documentation hooks — to actually enable a feature you must build the wheel from source with the matching cargo feature:
| Cargo feature | What it enables | Pulls in |
|---|---|---|
pixo |
mozjpeg/oxipng-class JPEG & PNG compression; auto-applied to thumbnail output via compress=True |
pure Rust |
auto-thumbnail |
High-fidelity thumbnail backend including PDF (via pdfium-render) and video (via ffmpeg/video-rs) |
pdfium + ffmpeg |
Build from source with extras enabled:
# Compression only (lightweight, pure Rust)
MATURIN_PEP517_ARGS="--features pixo" pip install thumbleweed --no-binary thumbleweed
# Compression + full pdf/video backend (requires system pdfium + ffmpeg)
MATURIN_PEP517_ARGS="--features pixo,auto-thumbnail" \
pip install thumbleweed --no-binary thumbleweed
Without these features the crude thumbnail engine is still available
(MP4 cover-art atom scrape + PDF JPEG-stream scrape + deterministic
gradient placeholder) and the compress module degrades to a safe
pass-through.
Note that auto-thumbnail is currently an all-or-nothing upstream feature:
enabling it pulls in both PDF and video support together rather than as
separate cargo toggles.
Development with uv
curl -LsSf https://astral.sh/uv/install.sh | sh
make sync
make test
All import paths work:
import thumbleweed # the unified package
import thumbhash # ThumbHash only
import blurhash # BlurHash only
import colorthief # ColorThief
from thumbleweed import thumbnail # rasterised thumbnails
from thumbleweed import compress # optional pixo compression
Quick-start
ThumbHash
import thumbhash as th
# Encode — rgba_bytes must be bytes/bytearray of length w*h*4 (R G B A, non-premultiplied)
hash_bytes: bytes = th.encode(w, h, rgba_bytes)
# Decode
w_out, h_out, rgba_out = th.decode(hash_bytes)
# Helpers
r, g, b, a = th.average_rgba(hash_bytes) # dominant colour [0, 1]
ratio = th.approximate_aspect_ratio(hash_bytes) # width / height
BlurHash
import blurhash as bh
# Encode
hash_str: str = bh.encode(rgba_bytes, cx=4, cy=3, width=w, height=h)
# Decode
rgba: bytes = bh.decode(hash_str, width=64, height=64)
Pillow images / BytesIO
from PIL import Image
import io
# From a Pillow Image
import thumbhash as th
img = Image.open("photo.jpg")
hash_str = th.encode_image(img) # base64 string; input is resized internally
placeholder = th.decode_image(hash_str) # → RGBA Image, ≈32 px
# From a BytesIO object
buf = io.BytesIO(open("photo.jpg", "rb").read())
hash_str = th.encode_image(buf)
# BlurHash
import blurhash as bh
hash_str = bh.encode_image(img, cx=4, cy=3)
placeholder = bh.decode_image(hash_str, width=64, height=64)
ColorThief
import colorthief as ct
# From encoded image bytes (PNG, JPEG, WebP, …)
dominant = ct.get_color(image_bytes) # → (r, g, b)
palette = ct.get_palette(image_bytes, color_count=5) # → [(r, g, b), (r, g, b), ...]
# From a file path
dominant = ct.get_color("photo.jpg")
# From a BytesIO object
import io
buf = io.BytesIO(open("photo.jpg", "rb").read())
dominant = ct.get_color(buf) # accepts bytes, BytesIO, file path, or PIL Image
palette = ct.get_palette(buf, color_count=5)
# Class-based API (drop-in for the colorthief package)
thief = ct.ColorThief("photo.jpg")
dominant = thief.get_color()
palette = thief.get_palette(color_count=8)
thumbleweed (unified)
import thumbleweed
# ThumbHash raw-pixel API
hash_bytes = thumbleweed.thumbhash_encode(w, h, rgba) # raw ThumbHash bytes
w, h, rgba = thumbleweed.thumbhash_decode(hash_bytes)
# ThumbHash image helper API
hash_str = thumbleweed.thumbhash_encode_image(image_bytes) # base64 string like BlurHash
# BlurHash
hash_str = thumbleweed.blurhash_encode(rgba, 4, 3, w, h)
rgba = thumbleweed.blurhash_decode(hash_str, 64, 64)
# ColorThief
dominant = thumbleweed.colorthief_get_color(image_bytes)
palette = thumbleweed.colorthief_get_palette(image_bytes, 5, 10)
Thumbnails (images / videos / PDFs)
from thumbleweed import thumbnail
# Works on JPEG, PNG, WebP, GIF, BMP, MP4, MKV/WebM, PDF —
# accepts bytes, BytesIO, file paths, pathlib.Path, and PIL.Image.
jpeg_bytes = thumbnail.create("holiday.mp4", width=256, height=256)
png_bytes = thumbnail.create("manual.pdf", format="png", width=128, height=128)
webp_bytes = thumbnail.create("photo.jpg", format="webp", width=64, height=64)
# Save directly
thumbnail.save("video.mp4", "video_thumb.jpg", width=256, height=256)
# Inspect the wheel's capabilities
print(thumbnail.detect_kind("file.pdf")) # → "pdf"
print(thumbnail.available_backends()) # → ['crude'] or ['crude', 'auto-thumbnail']
Two engines ship in the wheel:
crude(always available): pure-Rust pipeline. Resizes images via theimagecrate; scrapes embedded cover art from MP4 (covratom) and the first JPEG (/DCTDecode) image stream from PDFs; otherwise generates a deterministic colour-gradient placeholder.auto-thumbnail(cargo feature): wraps the auto-thumbnail crate for proper PDF rasterisation (pdfium) and video frame extraction (ffmpeg).
Default engine="auto" picks auto-thumbnail when present, falling
back to crude on any failure — you always get something back.
Compression (optional, pixo-backed)
from thumbleweed import compress, thumbnail
if compress.is_available():
smaller = compress.compress(open("photo.jpg", "rb").read(), quality=85)
bytes_saved = compress.compress_path("photo.jpg") # in-place
# Auto-applied to thumbnail output (the default — pass compress=False to skip)
thumb = thumbnail.create("photo.jpg", width=256, height=256) # compressed
thumb = thumbnail.create("photo.jpg", width=256, height=256, compress=False)
When the wheel is not built with --features pixo, every function in
thumbleweed.compress becomes a no-op pass-through, so compress=True
remains safe to leave on as the default everywhere.
Project structure
thumbleweed/
├── src/
│ ├── lib.rs # PyO3 module — Python bindings
│ ├── thumbhash.rs # Pure Rust ThumbHash encode/decode
│ ├── blurhash.rs # Pure Rust BlurHash encode/decode
│ ├── colorthief.rs # ColorThief — dominant colour & palette extraction
│ ├── thumbnail.rs # Rasterised thumbnails (crude + auto-thumbnail)
│ └── compress.rs # Optional pixo-powered JPEG/PNG re-encoder
├── python/
│ ├── thumbleweed/ # Main package — re-exports everything
│ │ ├── thumbnail.py # High-level thumbnail submodule
│ │ └── compress.py # High-level compression submodule
│ ├── thumbhash/ # Backward-compatible ThumbHash shim
│ ├── blurhash/ # BlurHash shim
│ └── colorthief/ # ColorThief shim
├── tests/
│ ├── test_thumbhash.py # 70+ ThumbHash tests
│ ├── test_blurhash.py # 28+ BlurHash tests
│ ├── test_colorthief.py# ColorThief tests
│ ├── test_thumbnail.py # 153 thumbnail tests across all jpg / mp4 / pdf fixtures
│ ├── test_compress.py # 60+ compression + integration tests
│ └── test_imports.py # import / version-consistency tests
└── Cargo.toml
API reference
ThumbHash (import thumbhash)
| Function | Description |
|---|---|
encode(w, h, rgba) → bytes |
Encode raw RGBA bytes → ThumbHash |
decode(hash) → (w, h, rgba) |
Decode ThumbHash → raw RGBA bytes |
average_rgba(hash) → (r,g,b,a) |
Dominant colour in [0, 1] |
approximate_aspect_ratio(hash) → float |
Width / height of the original image |
encode_image(img) → str |
Encode a Pillow Image (Pillow required), or encoded image bytes, BytesIO, or file path (no Pillow required) → base64 ThumbHash string |
decode_image(hash) → Image |
Decode a base64 ThumbHash string or raw ThumbHash bytes to a Pillow Image (requires Pillow) |
BlurHash (import blurhash)
| Function | Description |
|---|---|
encode(pixels, cx, cy, w, h) → str |
Encode raw RGBA bytes → BlurHash string |
decode(hash, w, h) → bytes |
Decode BlurHash → raw RGBA bytes |
encode_image(img, cx, cy) → str |
Encode a Pillow Image (Pillow required), or encoded image bytes, BytesIO, or file path (no Pillow required) → BlurHash |
decode_image(hash, w, h) → Image |
Decode to a Pillow Image (requires Pillow) |
ColorThief (import colorthief)
| Function | Description |
|---|---|
get_color(image, quality) → (r,g,b) |
Dominant colour from bytes, BytesIO, file path, or PIL Image |
get_palette(image, color_count, quality) → list[(r,g,b)] |
Colour palette from bytes, BytesIO, file path, or PIL Image |
ColorThief(image) |
Class-based API — accepts bytes, BytesIO, file path, or PIL Image |
Thumbnail (from thumbleweed import thumbnail)
| Function | Description |
|---|---|
create(source, width, height, quality, format, engine, compress) → bytes |
Build a thumbnail from any image / video / PDF source |
create_from_bytes(data, ...) → bytes |
Build from raw encoded bytes (skip the input-normalisation overhead) |
create_from_path(path, ...) → bytes |
Build from a file path |
save(source, output_path, ...) → None |
Build a thumbnail and write it to disk |
detect_kind(source) → str |
Inspect magic bytes — returns "image" / "video" / "pdf" / "unknown" |
available_backends() → list[str] |
Lists which backends were compiled in — always includes "crude" |
Compress (from thumbleweed import compress)
| Function | Description |
|---|---|
compress(source, format, quality) → bytes |
Re-encode JPEG/PNG via pixo's max preset (no-op for WebP / unknown / when feature is off). Returns the input verbatim if pixo can't shrink it. |
compress_path(input, output=None, ...) → int |
Compress a file in-place (or to output). Returns bytes saved. |
is_available() → bool |
True if the wheel was built with the pixo cargo feature |
detect_format(source) → str |
"jpeg" / "png" / "webp" / "unknown" |
Performance Benchmark Results
Benchmark configuration: 5 rounds × 100 iterations (pure-Python libraries use 5 iterations). Input corpus: all real image fixtures in
tests/(one.jpg,two.jpg,four.jpg,OPS.jpg). All times are mean per-call latency. Lower is better.
| Operation | thumbleweed | Comparison | Result |
|---|---|---|---|
| ThumbHash encode (real test images) | 825.4 µs | thumbhash-python (pure Python): 27.26 ms | 33.0× faster |
| ThumbHash decode (real test images) | 56.4 µs | thumbhash-python (pure Python): 5.49 ms | 97.3× faster |
| BlurHash encode (real test images) | 4.98 ms | blurhash-python (CFFI): 4.42 ms | 1.1× slower |
| BlurHash decode 64×64 (real test images) | 902.4 µs | blurhash-python (CFFI): 842.2 µs | 1.1× slower |
| ColorThief dominant (real test images) | 5.09 ms | fast-colorthief (C ext + NumPy): 18.62 ms | 3.7× faster |
| ColorThief palette-10 (real test images) | 5.17 ms | fast-colorthief (C ext + NumPy): 18.38 ms | 3.6× faster |
(The above values are updated by a benchmark script ocassionally)
Notes on ColorThief timing: thumbleweed includes image decode in its timing because it accepts raw encoded bytes from the real test fixtures, while fast-colorthief also reads from in-memory file-like objects in these benchmarks. This measures realistic end-to-end usage rather than just the inner palette routine.
Building from source
git clone https://github.com/New-Elysium/thumbleweed.git
cd thumbleweed
make sync # sync uv environment + install editable
make test # run Python + Rust tests
Make targets
make sync— sync uv environment and install the extension in editable modemake test— run Python tests and Rust testsmake dist— build wheels intodist/make upload— uploaddist/*withtwine
Running Benchmarks
Benchmarks require bench dependencies which might not be compatible with all Python versions (e.g. thumbhash-python fails to resolve on Python 3.14). To avoid conflicts, run them with a supported Python version (e.g. 3.12):
# Sync using a Python version that supports the benchmark dependencies
uv sync --group bench --python 3.12
uv run python tests/bench_comparison.py
# Refresh the benchmark table in this README
uv run python scripts/update_readme.py
Licence
MIT — see LICENCE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file thumbleweed-0.2.0.tar.gz.
File metadata
- Download URL: thumbleweed-0.2.0.tar.gz
- Upload date:
- Size: 29.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2799e80128e6b0b9045e296f8ab582ccc6e877800a8fd072a402e5291d419f2b
|
|
| MD5 |
01386ef3661b60792f835ef5947cf486
|
|
| BLAKE2b-256 |
2be1f77120659551352b79dcb3f12cb5ad8d080b0526aad11d685da1c53502f1
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0.tar.gz:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0.tar.gz -
Subject digest:
2799e80128e6b0b9045e296f8ab582ccc6e877800a8fd072a402e5291d419f2b - Sigstore transparency entry: 1520097183
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@9c9b3a35e5352b5342e039d2ce8c070f9fe8e63a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@9c9b3a35e5352b5342e039d2ce8c070f9fe8e63a -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 684.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
520f08c6fcc380cba72d1222a4a67548701cc2632ce94eaa4bb92d2f18816e53
|
|
| MD5 |
dedbf113701e5be50cef353248c4ead4
|
|
| BLAKE2b-256 |
676bb161c0e9f205b08c5be10b71b34319ba86e3d472aa66bb206f675942ea2a
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
520f08c6fcc380cba72d1222a4a67548701cc2632ce94eaa4bb92d2f18816e53 - Sigstore transparency entry: 1520201081
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 730.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c3ac61af48a9a12452a08fb3c05f538cab865243b61a36b1e463354d76ebb7f
|
|
| MD5 |
46636cce68c33c3b4241633efbffe0f1
|
|
| BLAKE2b-256 |
4d012c2e4eb308b340d5e3feb0b25022d18eb43040d93149938de5754bcce5dc
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
3c3ac61af48a9a12452a08fb3c05f538cab865243b61a36b1e463354d76ebb7f - Sigstore transparency entry: 1520202581
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 650.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5429d6f82a25ca308245f46db8e1c645a17103c0e497ba396e12c5aebb8b03c0
|
|
| MD5 |
fca5156059123f85d8a89f45b11eead8
|
|
| BLAKE2b-256 |
6c6690272c3ffc4b48165d8811c09c6cf0755f1318c6c914d11bd76bfc84a28b
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
5429d6f82a25ca308245f46db8e1c645a17103c0e497ba396e12c5aebb8b03c0 - Sigstore transparency entry: 1520199977
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 657.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f719ea9556410625c8335b51aa04056112f573a510f874079b00903980853494
|
|
| MD5 |
43998207b5cfd77b9a2c481c2bbb7b0e
|
|
| BLAKE2b-256 |
55eaa7220ed47de33a8e42a9175ce77f72e0ad073787efa8bf03a42e6a1d22ac
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f719ea9556410625c8335b51aa04056112f573a510f874079b00903980853494 - Sigstore transparency entry: 1520202114
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 682.6 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5a022c3ff84a6752a08bd9f132467ea2d6df2e62ac55382acc440d5fe8a2655
|
|
| MD5 |
6529006d5357720c029cfee1f5dca419
|
|
| BLAKE2b-256 |
a3502bd5c29780b6a01e3ec4b7231db435080de953ea4725715b63215ef55f5d
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d5a022c3ff84a6752a08bd9f132467ea2d6df2e62ac55382acc440d5fe8a2655 - Sigstore transparency entry: 1520202054
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 727.5 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d3081c59403d7a33a4dfae6349568195a2d16495f47b70894157d149820e485
|
|
| MD5 |
fb2c767f729bef6e57c07c82e73bd600
|
|
| BLAKE2b-256 |
4bcfe011f944689493632df94aeaeb9b0c4d99f219e5261fdaeca9532be2ebfc
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
6d3081c59403d7a33a4dfae6349568195a2d16495f47b70894157d149820e485 - Sigstore transparency entry: 1520200265
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 574.4 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e57be743d62c13bf05ef1660f9a2ce0921f841f72e6e6fa0443692d7be711c7
|
|
| MD5 |
b3a4e7d262eeadecba8ba7e2618dc424
|
|
| BLAKE2b-256 |
c563e07f21130a43c33fe273d9fadbd1c8262b4b36db64c53ff8fe9b736c2fbf
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-win_arm64.whl -
Subject digest:
0e57be743d62c13bf05ef1660f9a2ce0921f841f72e6e6fa0443692d7be711c7 - Sigstore transparency entry: 1520200619
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 601.5 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92322356179cbbd9d7ae1a7b579da0176c6ea11e17a2eb4b16fe98284ee640c5
|
|
| MD5 |
151ec4b40fde04e5f91139d743fa734b
|
|
| BLAKE2b-256 |
800d89c48a092d4d696cad1bbdd6faf4b3bc05e6518a6cd2b9c1e3a62a9f3158
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-win_amd64.whl -
Subject digest:
92322356179cbbd9d7ae1a7b579da0176c6ea11e17a2eb4b16fe98284ee640c5 - Sigstore transparency entry: 1520201623
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 647.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1b5379c8068b567ad29513a477e38eba40351f07d4ce2c0a1be3d422205cb07
|
|
| MD5 |
acc34db84267259757b8197e25285366
|
|
| BLAKE2b-256 |
176a16afc683fe6442caf594d8157d1386764bea75134f2f740b0771ab59c8f7
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
b1b5379c8068b567ad29513a477e38eba40351f07d4ce2c0a1be3d422205cb07 - Sigstore transparency entry: 1520200196
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 652.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
774af7a6c270ce5cc3c20fa3028e7bc6c3e741b34df1fdab6d75c20e8bb16708
|
|
| MD5 |
e4472ba7653032bec7cda15908fbcb69
|
|
| BLAKE2b-256 |
52ac59b9f494007f719caf5a1854aaafa5d1ae2a890c368b44e3be7b2f8dacd3
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
774af7a6c270ce5cc3c20fa3028e7bc6c3e741b34df1fdab6d75c20e8bb16708 - Sigstore transparency entry: 1520200768
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 630.6 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e67d22b6dce82f01927aea96198e1337fef2b131bb5afb977a9a257a46f57973
|
|
| MD5 |
92bda7f8c0a59c09cfd5558815977de8
|
|
| BLAKE2b-256 |
908893b6083865d40839f6d8bde0a2bf50aa72f2f3aadae2b7f0dacad1c5bf49
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
e67d22b6dce82f01927aea96198e1337fef2b131bb5afb977a9a257a46f57973 - Sigstore transparency entry: 1520201731
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 658.2 kB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8d78cf0d70e8b30ec121f40596d7bcc00a27fc42386b3030025b4fd82c93e54
|
|
| MD5 |
ff7e850e32b9b6a6488af1defed6d0e5
|
|
| BLAKE2b-256 |
7a06f80c25abc1e01888f2cc255ed1318ea0cc3d664fdab44574760563f856f7
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl -
Subject digest:
d8d78cf0d70e8b30ec121f40596d7bcc00a27fc42386b3030025b4fd82c93e54 - Sigstore transparency entry: 1520200852
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 682.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73fe4ed8893c99c36ff62a43b3e15100302c9c40b90347c5864ecfbe1121a676
|
|
| MD5 |
11bbc7b8f0ffaf3c9ad5d82b5bc57761
|
|
| BLAKE2b-256 |
8ac26c630edb3944157cfe670f0de1f493ad96ac1b626143e0fb416df4a8ae5a
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
73fe4ed8893c99c36ff62a43b3e15100302c9c40b90347c5864ecfbe1121a676 - Sigstore transparency entry: 1520202163
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 727.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fdd95bc7ffa85ae736942c5786612bc999f48e91f0b50f14e6c8b40c6b1569b
|
|
| MD5 |
08a85f018174f56025d80a3e26505a92
|
|
| BLAKE2b-256 |
6c04acd494039580d04b99f12473f01dac67c72f3f155bc9e163f18b445b30f1
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
2fdd95bc7ffa85ae736942c5786612bc999f48e91f0b50f14e6c8b40c6b1569b - Sigstore transparency entry: 1520200690
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 649.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0259a7e879d15e7f0b1642edae00b9464f2cee9aba125c7f6970e46ae1412b39
|
|
| MD5 |
e304d35add9420f477469dbfe4bf9dc3
|
|
| BLAKE2b-256 |
07d031b2f14c36c80bf24e3c1743778c67368fb6cec2f04f3836ab2ddb0a0ae5
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
0259a7e879d15e7f0b1642edae00b9464f2cee9aba125c7f6970e46ae1412b39 - Sigstore transparency entry: 1520201461
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 654.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4ea77284adbf76ebf5b891e708867dd94df25b364f2e17fdd9ef1771344a2ea
|
|
| MD5 |
a425fa07f10cfbf034240e36c2a6efd4
|
|
| BLAKE2b-256 |
6fff7adada9886406b298aa1aa39217a0628af2b668bafce675a54a9325bb788
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
a4ea77284adbf76ebf5b891e708867dd94df25b364f2e17fdd9ef1771344a2ea - Sigstore transparency entry: 1520201371
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl
- Upload date:
- Size: 574.5 kB
- Tags: CPython 3.13t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af9fc9be89940bbd97465d101ab3e854b6f0ff8616a52ac8e04186234795ef2d
|
|
| MD5 |
221d1547ecd509b39c7d58203176bebc
|
|
| BLAKE2b-256 |
4fc2a779bdb8aa3fd54ac2445fa738e69b208d5f02f24ce0114d6274bffa09da
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-win_arm64.whl -
Subject digest:
af9fc9be89940bbd97465d101ab3e854b6f0ff8616a52ac8e04186234795ef2d - Sigstore transparency entry: 1520201895
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 601.6 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac24708ae837d623d34672f6484bf124aa356f318cf66a3660e7a9779ae79c8e
|
|
| MD5 |
47cefbaeaf2a79b8f843daba924dafb0
|
|
| BLAKE2b-256 |
d5bf33fdd9a60b4e0d556ef691df82e3265388ef6c8bb963e56a8a7f9c2be564
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-win_amd64.whl -
Subject digest:
ac24708ae837d623d34672f6484bf124aa356f318cf66a3660e7a9779ae79c8e - Sigstore transparency entry: 1520202530
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 647.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2ce60f5666b40dd8b68420e6e179bfb7b5320bc7de4e2ce3545b3e90f57bb23
|
|
| MD5 |
4b510ef90265ef44808fd8481456b88f
|
|
| BLAKE2b-256 |
8843164d49c8497dd42aeafafbdfe3c404a1bf16c713ac5732b6bb72d5377c66
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
f2ce60f5666b40dd8b68420e6e179bfb7b5320bc7de4e2ce3545b3e90f57bb23 - Sigstore transparency entry: 1520201567
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 652.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aaf6fb9fed3b6ba549d67bc0c7c3eeee068f1065b87e6e6972254ebc50536df
|
|
| MD5 |
68050e2df509e5676c6cbdf2eb251f11
|
|
| BLAKE2b-256 |
d25d8a2ed75e036d0724488da5c5ef1b7c07db3375715b11366c0bf81494fcb4
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1aaf6fb9fed3b6ba549d67bc0c7c3eeee068f1065b87e6e6972254ebc50536df - Sigstore transparency entry: 1520200971
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 630.7 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0ea8276a35746ff4413854780c37f39289167c0bd9b9eea75e89579a9295788
|
|
| MD5 |
012fed064983c53e66592f32ca3eb2e0
|
|
| BLAKE2b-256 |
6aff3fe6765717976c666770a54426bb60841b679f760e1d2956d2a18ff33d15
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl -
Subject digest:
a0ea8276a35746ff4413854780c37f39289167c0bd9b9eea75e89579a9295788 - Sigstore transparency entry: 1520200475
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 658.4 kB
- Tags: CPython 3.13t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea69fc23b3ff118f21c94d917e0f5163057d03f5315d1b560236a5b6f78bd375
|
|
| MD5 |
cfe3ab9e353104461c11f05c7890a486
|
|
| BLAKE2b-256 |
216692a9328fc3d74d6d36d5d99326c345143d4127534561149077cf05ed921b
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313t-macosx_10_12_x86_64.whl -
Subject digest:
ea69fc23b3ff118f21c94d917e0f5163057d03f5315d1b560236a5b6f78bd375 - Sigstore transparency entry: 1520199671
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 682.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e9ed760f60b0da1d7e420482e429e8730691d04ef9bbabb4436461b6bc7afae
|
|
| MD5 |
203ff3b0522a4352f3b05bb271df3fd8
|
|
| BLAKE2b-256 |
c424670da4c01b2bf5547d7b1b1ec57c093eca41dd2541ba4cda90bf7924f622
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8e9ed760f60b0da1d7e420482e429e8730691d04ef9bbabb4436461b6bc7afae - Sigstore transparency entry: 1520202010
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 727.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84560b1cec50185232dbc2080918a279edb3e1a16bc2362af35fa67e505c32be
|
|
| MD5 |
17ad7051fa731d65b63575139da49e6b
|
|
| BLAKE2b-256 |
3ec71c75cd25e98c484a70dc02751780ea52b13476682a7de092491ac15dc59a
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
84560b1cec50185232dbc2080918a279edb3e1a16bc2362af35fa67e505c32be - Sigstore transparency entry: 1520200131
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 649.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
476b5dc1212b85cc35780b8eaab6f69f682b5b45b984c5701a23a833576ecb98
|
|
| MD5 |
90307c0be93a7988f1e707f6fbd9e09f
|
|
| BLAKE2b-256 |
678ec33d8279d339d163056795bdcd4204aa6b99481dfe66e8091b896385a30f
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
476b5dc1212b85cc35780b8eaab6f69f682b5b45b984c5701a23a833576ecb98 - Sigstore transparency entry: 1520201130
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 654.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
991c11ae7daae86c555ee42af6e592c9c06b25ea30dbd0176a6d4cf7a7b1876c
|
|
| MD5 |
61960b93bd9c5cd47c0de448737ae93d
|
|
| BLAKE2b-256 |
b67c89830d3e87c98dc392a6795f67cec9c7fc4c7e13a3630eeea26ed58afa1e
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
991c11ae7daae86c555ee42af6e592c9c06b25ea30dbd0176a6d4cf7a7b1876c - Sigstore transparency entry: 1520201186
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 575.1 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a0861e4ee72c6b37a74a0d7e0cc0273d79f2928798166b5dcecea03ec0b5fc1
|
|
| MD5 |
dfbb6650489c9611f9dddc815bac21c4
|
|
| BLAKE2b-256 |
7390fac7f0f76a51925637bb5636c3612725af41c8363c38a09ba7c8ea5e5dce
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-win_arm64.whl -
Subject digest:
6a0861e4ee72c6b37a74a0d7e0cc0273d79f2928798166b5dcecea03ec0b5fc1 - Sigstore transparency entry: 1520199900
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 601.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
171e0da3386974789c79f556652e1ea9519d2755ba2b176ce182dc19f375a974
|
|
| MD5 |
511888d17fddcf25ff84258c7f209424
|
|
| BLAKE2b-256 |
212e1e75f2c5f45146cd7cb96cb3b4dc3dd53e5253aecfa75af3ea57169f026b
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win_amd64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-win_amd64.whl -
Subject digest:
171e0da3386974789c79f556652e1ea9519d2755ba2b176ce182dc19f375a974 - Sigstore transparency entry: 1520201029
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-win32.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-win32.whl
- Upload date:
- Size: 593.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d53113d8da9235181e4b535a74c5920195d8d59047b6de5829690610ea5c28b
|
|
| MD5 |
4b8142291eccfecfe925b2343126e293
|
|
| BLAKE2b-256 |
6d398cd28d1f4eeffd5e24f86c06eb3915e06164be907656e082cfd3b47bd041
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-win32.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-win32.whl -
Subject digest:
7d53113d8da9235181e4b535a74c5920195d8d59047b6de5829690610ea5c28b - Sigstore transparency entry: 1520202746
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 682.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ddcc4f5881d482a146e7893266d429b2f81ca6ed0e9fb9721ceffecc2ce413b
|
|
| MD5 |
cdacf54f7f32f51542f894d31c0a5697
|
|
| BLAKE2b-256 |
56c3bf1127166adf630ab71eff44c6f1d52d372f11d0a3114f3a4304a9121f22
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2ddcc4f5881d482a146e7893266d429b2f81ca6ed0e9fb9721ceffecc2ce413b - Sigstore transparency entry: 1520202205
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 728.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f499b599d8d138fe5d9ee24f794e293fdbf1f6828361181753516120afaae075
|
|
| MD5 |
e1e5e1181b10fea9637a0ef4350986c5
|
|
| BLAKE2b-256 |
57c9c17f94f5dd6aeb318446ddb4484d1168c94b3b6573ce07d2c3c455630010
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
f499b599d8d138fe5d9ee24f794e293fdbf1f6828361181753516120afaae075 - Sigstore transparency entry: 1520202406
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 649.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcc2dbae468a5395b737cff5d6cf004ccc2f66559a20bb4fed3d392eb45fb065
|
|
| MD5 |
91c2abf6f52d52c94441d2d334986e31
|
|
| BLAKE2b-256 |
190527ff28581c27dd64e6b5f61ae387208eb010cab941ece41b5c29dcd8d560
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
dcc2dbae468a5395b737cff5d6cf004ccc2f66559a20bb4fed3d392eb45fb065 - Sigstore transparency entry: 1520202467
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 654.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
449d32fcdca0a1ceddefa57130d096b818a5a582165cde909099b4dc7f5c14f2
|
|
| MD5 |
a481493573fbf23bdacfe29a3fc91233
|
|
| BLAKE2b-256 |
955dd26683d29fe92c766084fce9839e8c1bda3baf399a4f2bde46c5b1ad7c02
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
449d32fcdca0a1ceddefa57130d096b818a5a582165cde909099b4dc7f5c14f2 - Sigstore transparency entry: 1520202639
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 632.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce01eb8e824f3c58764f437b96bdb1b1caca72d17dd66f15377d58fabf1fda57
|
|
| MD5 |
77fbf943db55b4234691644047ef8bc1
|
|
| BLAKE2b-256 |
5fc3a3f47bf7dc545207fd2c69382ea3bbd9ca98ac06a300644c0ae4cb0b5035
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
ce01eb8e824f3c58764f437b96bdb1b1caca72d17dd66f15377d58fabf1fda57 - Sigstore transparency entry: 1520202348
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 660.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e83e4a9062bd1487593246d1582024e801d443d127e821da6be9fa34f714bf84
|
|
| MD5 |
9450e8502c13cc37b8d1554d1c752194
|
|
| BLAKE2b-256 |
9fb024b2c379984c666a62ba0999c255b2fe3551e52d403ea4f72dc11fa2889d
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
e83e4a9062bd1487593246d1582024e801d443d127e821da6be9fa34f714bf84 - Sigstore transparency entry: 1520201777
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 577.3 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
336abbb1784242671673c5a48e734c51f16dbf7e2f95eef92039540cdb410d30
|
|
| MD5 |
b12ad0d3b148db857c13ed361f3ac1a9
|
|
| BLAKE2b-256 |
479e42dde8e62eddd3ecd063be2bd6f107db8a6b17d1312e404696f9d63e71ca
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-win_arm64.whl -
Subject digest:
336abbb1784242671673c5a48e734c51f16dbf7e2f95eef92039540cdb410d30 - Sigstore transparency entry: 1520200918
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 603.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04bd9ec0a475f415b2dcf0be9cff07723f492cce89b6965fbf10484bf151ee60
|
|
| MD5 |
d9937ba51da0ce2bfe4f3e26b86b887b
|
|
| BLAKE2b-256 |
53c75dda7f69858ce55ffcefc5231c67a12a9621756153f1923adf3d5cc4fe63
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win_amd64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-win_amd64.whl -
Subject digest:
04bd9ec0a475f415b2dcf0be9cff07723f492cce89b6965fbf10484bf151ee60 - Sigstore transparency entry: 1520199847
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-win32.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-win32.whl
- Upload date:
- Size: 595.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24fc16cb57c12015a01d273e6ca1907980158b41e68f22b939bb1fc49612667f
|
|
| MD5 |
7931128779e6820eb64922fd0da1b446
|
|
| BLAKE2b-256 |
111c99c2aab29d087a66f7978f944495c32b033db2f219e743711b9d2237ca9f
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-win32.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-win32.whl -
Subject digest:
24fc16cb57c12015a01d273e6ca1907980158b41e68f22b939bb1fc49612667f - Sigstore transparency entry: 1520201953
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 683.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a608890eb3f02cc5aa5b90821e17f86576ca721273090f8a7a36854fd120b015
|
|
| MD5 |
00a79a3da68a2053dbb8a5656bee7ef5
|
|
| BLAKE2b-256 |
0a359e3fb228d39feb90d4b0080336fdc41935e54f1fb4512cccab8b0438266c
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a608890eb3f02cc5aa5b90821e17f86576ca721273090f8a7a36854fd120b015 - Sigstore transparency entry: 1520201404
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 728.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec371b38435436d6911b07e1d527eab86330f0d813d08fd0e8b4bfc468926440
|
|
| MD5 |
4cc7ebbe2e4b155cd4754ef3f871ab4a
|
|
| BLAKE2b-256 |
dc7f341882da7b2ff59ce5cbf822819ae37360894524adbee8f6f1a10ca90b6d
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
ec371b38435436d6911b07e1d527eab86330f0d813d08fd0e8b4bfc468926440 - Sigstore transparency entry: 1520201514
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 649.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2f88e5812f09c612e35d433743455ed9bfde86a01181792b6d785e0ae892ad7
|
|
| MD5 |
d2eed0cc83ca1d0fd32e1a270062600f
|
|
| BLAKE2b-256 |
614f491542cedd12c71e555c008d855c0cac037a41a8ac9704018f1ef8c542ce
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
c2f88e5812f09c612e35d433743455ed9bfde86a01181792b6d785e0ae892ad7 - Sigstore transparency entry: 1520200538
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 655.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6520ac4910f2e51a4836b611be9641c98ae17f5153f54e9216708d1fd7da259e
|
|
| MD5 |
7c291b9d07988dd9d5ff8fb348198c1a
|
|
| BLAKE2b-256 |
33575cb8e0cbe3841a249139c439843319ce149750f0e112571f06ef49d8796d
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
6520ac4910f2e51a4836b611be9641c98ae17f5153f54e9216708d1fd7da259e - Sigstore transparency entry: 1520199749
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 633.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4176d7d92719facc7feec210485a29960d476d5c886a38d8c6ea5dbd8c7f86cc
|
|
| MD5 |
319b542234baa9b7edb2dd47f3f13ea6
|
|
| BLAKE2b-256 |
44f7d38cbccb3e79f529bdce1291db784f36556407ab1d76d09ba2e993298009
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
4176d7d92719facc7feec210485a29960d476d5c886a38d8c6ea5dbd8c7f86cc - Sigstore transparency entry: 1520202302
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 661.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c61cb1863bb7db95b16e44610e5da4d132ebc2b7ad39bf743442d5fb8f47c25
|
|
| MD5 |
ff11a59e9e61335fca5de1b1f8ffafc9
|
|
| BLAKE2b-256 |
a7da80ecff7efc790386f5fa32fc8f5114eb79ff086e14bb9952e7797a072fbb
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
0c61cb1863bb7db95b16e44610e5da4d132ebc2b7ad39bf743442d5fb8f47c25 - Sigstore transparency entry: 1520201825
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 603.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7499ee52eabeabef9566be4f8d6aafdeab3697c1f08ec609f324bc4df9177006
|
|
| MD5 |
74784707205cd3bf127de269415e991b
|
|
| BLAKE2b-256 |
a7ee175c4c84760e7d9d126976e17b196c6450fc711649674c505ada26ef7808
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-win_amd64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-win_amd64.whl -
Subject digest:
7499ee52eabeabef9566be4f8d6aafdeab3697c1f08ec609f324bc4df9177006 - Sigstore transparency entry: 1520201678
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-win32.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-win32.whl
- Upload date:
- Size: 595.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b1e85d6a79e6823c78a67abbf9bb3db1d95c57a882fc25a5b47e1fdabf9a541
|
|
| MD5 |
82d1f2f96a1977d4a004b8d8920a4487
|
|
| BLAKE2b-256 |
6fab9643d22b5b47039f52474ab5b23dcd053c07d9e71795eb60a1bb1237461c
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-win32.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-win32.whl -
Subject digest:
3b1e85d6a79e6823c78a67abbf9bb3db1d95c57a882fc25a5b47e1fdabf9a541 - Sigstore transparency entry: 1520202262
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 683.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83e42ca2669ff1aa31304e69d699f2e6fae53ce83b38b664ef65ae2402ea1ffe
|
|
| MD5 |
3c2edcabb5214be6a9e92333b69f3a11
|
|
| BLAKE2b-256 |
bccb8cedd72dd97c183ff86164c0980d7e3e10ec765e952745aa6d4c1362520d
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
83e42ca2669ff1aa31304e69d699f2e6fae53ce83b38b664ef65ae2402ea1ffe - Sigstore transparency entry: 1520200341
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 728.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
798ea22f2984c0a6c79b22c65dd1c45e3bcf291f9fb5b51f60af710e13d63c05
|
|
| MD5 |
b943a91d5669d5e126c7c77b1a22783a
|
|
| BLAKE2b-256 |
1ae75f9ee502a629ab25cb0a2bec30cb367b155cc7e670f8c42c7411c57462d2
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
798ea22f2984c0a6c79b22c65dd1c45e3bcf291f9fb5b51f60af710e13d63c05 - Sigstore transparency entry: 1520202697
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 649.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7aec5782b3f507fcd4f1935cd9e0105471c973c0518dedbebd86583e421ee64e
|
|
| MD5 |
7933637684efcc7f9650f845c493c3c6
|
|
| BLAKE2b-256 |
e2ea24f2631d5be12370a811ac87228ea8f7841f9eaa4fc12a3f1b85dd55a80f
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
7aec5782b3f507fcd4f1935cd9e0105471c973c0518dedbebd86583e421ee64e - Sigstore transparency entry: 1520201253
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 655.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa88de46220ff5479b4f3939f8c9460e8cd70b43cdea017bdd3b7bd7046d51a3
|
|
| MD5 |
351ed1c00c9ea75ad309448b4b7285e9
|
|
| BLAKE2b-256 |
46dca17d3acbc900d2c71a060faf1453effbf49520cbdb7987eae500f96865ba
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
fa88de46220ff5479b4f3939f8c9460e8cd70b43cdea017bdd3b7bd7046d51a3 - Sigstore transparency entry: 1520201306
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 633.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6492c9a96f72d4e0648ad5ba315be01adafa191ff9557db9caeae60e45f6899
|
|
| MD5 |
aaffedf0aec60a938df057b1195286fe
|
|
| BLAKE2b-256 |
f524a1ec985f7758b374d38b9bdbbd75b477d79815cf481216b90f8c224d9d25
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
d6492c9a96f72d4e0648ad5ba315be01adafa191ff9557db9caeae60e45f6899 - Sigstore transparency entry: 1520200404
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 661.1 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
345745ba73593a8fb45bafb90403a1b6396f4ae4339737a6d6e716e70eaf7ad0
|
|
| MD5 |
6145fc638dfe0f0b13b127a8ed60c210
|
|
| BLAKE2b-256 |
38df6324e9abda1e245a9823e1c9bd345a372fcac10a424816a10999e302117c
|
Provenance
The following attestation bundles were made for thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
build-and-publish-wheels.yml on New-Elysium/thumbleweed
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
thumbleweed-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
345745ba73593a8fb45bafb90403a1b6396f4ae4339737a6d6e716e70eaf7ad0 - Sigstore transparency entry: 1520200053
- Sigstore integration time:
-
Permalink:
New-Elysium/thumbleweed@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Branch / Tag:
refs/heads/main - Owner: https://github.com/New-Elysium
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish-wheels.yml@68f6b7ee38f746f688d74b46859bd4c9e31e962b -
Trigger Event:
workflow_dispatch
-
Statement type: