High-performance MinHash implementation in Rust with Python bindings - 40x faster than datasketch
Project description
Rensa
High-performance MinHash in Rust with Python bindings. 50x+ faster than datasketch in benchmarked deduplication workloads, with near-identical results.
What is Rensa?
Rensa (Swedish for "clean") computes MinHash signatures for similarity estimation and deduplication. If you need to find near-duplicates in large datasets, Rensa does what datasketch does, much faster.
It ships two MinHash variants:
- R-MinHash: Rensa's own variant. Very close to datasketch output, fastest option.
- C-MinHash: Based on the C-MinHash paper. Slightly different results, backed by formal variance proofs.
Thanks mlabonne for the Colab notebook!
Performance
Benchmarked against datasketch on gretelai/synthetic_text_to_sql (100K rows, 128 permutations, threshold 0.95):
| Method | Median Time | Speedup | Accuracy vs Datasketch |
|---|---|---|---|
| Datasketch | 42.95s | — | — |
| R-MinHash | 0.83s | 52.04x | 0.9999 Jaccard |
| C-MinHash | 0.94s | 45.77x | 0.9992 Jaccard |
The accuracy column is the Jaccard similarity between each method's set of deduplicated rows and datasketch's. A score like 0.9999 means R-MinHash and datasketch agree on virtually every row, but not necessarily all rows.
R-MinHash also uses less memory. On the same 100K-row workload, one measured run dropped peak traced memory from about 778 MB (datasketch) to about 493 MB (R-MinHash), roughly 37% lower.
How R-MinHash works
MinHash estimates Jaccard similarity between sets. Apply k random hash functions to a set, keep the minimum value from each. Two sets sharing many elements will produce similar minimums, and the fraction of matching slots estimates the Jaccard index.
Standard implementations generate each permutation as (a * hash(x) + b) mod p, where p is a large prime (typically the Mersenne prime 2^61 - 1). Mathematically clean, but modular reduction is still more expensive than a simple bit shift on modern CPUs.
R-MinHash replaces the modular reduction with multiply-shift hashing:
signature[i] = min { (a[i] * hash(x) + b[i]) >> 32 } for all x in set
Instead of reducing mod a prime, take the upper 32 bits of the 64-bit multiply-add. This is a proven universal hash family (Dietzfelbinger et al., 1997). In R-MinHash, it is used as a practical approximation that keeps deduplication results very close to datasketch in benchmarks while making the hot path cheaper.
This choice has a useful side effect: since the output is naturally 32 bits, signatures are stored as u32 — 4 bytes per slot instead of 8. For 128 permutations, that's 512 bytes per signature. Half the memory, and twice as many signature slots fit in a cache line.
Performance engineering
On top of the algorithm, Rensa applies several low-level optimizations.
Input elements are hashed with an FNV-1a variant that processes 8 bytes per step. MinHash needs uniform distribution, not collision resistance, so there's no reason to pay for a cryptographic hash function.
Elements are hashed in groups of 32. Permutations are applied to each batch in chunks of 16, using a fixed-size temporary array ([u32; 16]) that is register-friendly. This gives the compiler room to optimize tight loops and keeps working data cache-local.
The (a, b) permutation pairs are deterministic, derived from a seed via Xoshiro256++. They are initialized at construction and reused across updates to avoid recomputing setup state on every incremental update.
The global allocator is MiMalloc, which handles the batch-allocate-then-free pattern better than the system default.
C-MinHash
Rensa also includes C-MinHash, based on the C-MinHash paper. It uses a two-stage scheme (sigma then pi) that reduces the need for k independent permutations by deriving the k slots from a small parameter set. In this implementation, that means sigma_a/sigma_b and pi_c/pi_d, with precomputed pi terms for speed. The paper proves tighter variance bounds than standard MinHash. In practice, both variants produce similar results and R-MinHash is usually a bit faster. Use R-MinHash unless you have a specific reason not to.
Installation
pip install rensa
Works on Linux, macOS, and Windows. Python >= 3.8.
Usage
Computing similarity
from rensa import RMinHash
m1 = RMinHash(num_perm=128, seed=42)
m1.update("the quick brown fox jumps over the lazy dog".split())
m2 = RMinHash(num_perm=128, seed=42)
m2.update("the quick brown fox jumps over the lazy cat".split())
print(m1.jaccard(m2)) # ~0.78
CMinHash has the same interface. Just swap the class name.
Deduplicating a dataset
from datasets import load_dataset
from rensa import RMinHash, RMinHashLSH
dataset = load_dataset("gretelai/synthetic_text_to_sql")["train"]
# Build MinHash signatures
minhashes = {}
for idx, row in enumerate(dataset):
m = RMinHash(num_perm=128, seed=42)
m.update(row["sql"].split())
minhashes[idx] = m
# Index into LSH
lsh = RMinHashLSH(threshold=0.8, num_perm=128, num_bands=16)
for doc_id, mh in minhashes.items():
lsh.insert(doc_id, mh)
# Find and remove duplicates
to_remove = set()
for doc_id, mh in minhashes.items():
if doc_id in to_remove:
continue
for candidate in lsh.query(mh):
if candidate != doc_id and candidate not in to_remove:
if mh.jaccard(minhashes[candidate]) >= 0.85:
to_remove.add(max(doc_id, candidate))
print(f"Removed {len(to_remove)} duplicates from {len(dataset)} rows")
Streaming deduplication
For continuous data streams, use the built-in deduplicator:
from rensa import RMinHash, RMinHashDeduplicator
dedup = RMinHashDeduplicator(threshold=0.8, num_perm=128, use_lsh=True, num_bands=16)
for doc in document_stream:
mh = RMinHash(num_perm=128, seed=42)
mh.update(doc["text"].split())
if not dedup.is_duplicate(doc["id"], mh):
dedup.add(doc["id"], mh)
# process unique document
API
RMinHash / CMinHash
| Method | Description |
|---|---|
__init__(num_perm, seed) |
Create a MinHash with num_perm permutations |
update(items) |
Add items (list of strings, bytes, or iterables) |
jaccard(other) |
Estimate Jaccard similarity (requires matching num_perm) |
digest() |
Return the signature as a list of integers |
RMinHashLSH
| Method | Description |
|---|---|
__init__(threshold, num_perm, num_bands) |
Create an LSH index. num_bands must divide num_perm evenly |
insert(key, minhash) |
Add a document to the index |
query(minhash) |
Return candidate similar document keys |
remove(key) |
Remove a document from the index |
RMinHashDeduplicator / CMinHashDeduplicator
| Method | Description |
|---|---|
RMinHashDeduplicator(threshold, num_perm, use_lsh, num_bands=None) |
R-MinHash streaming deduplicator |
CMinHashDeduplicator(threshold) |
C-MinHash streaming deduplicator |
add(key, minhash) -> bool |
Add if unique, returns whether it was added |
is_duplicate(key, minhash) -> bool |
Check without adding |
get_duplicates(minhash) -> list[str] |
Find keys of similar stored items |
remove(key) / clear() |
Manage stored items |
Running Benchmarks
git clone https://github.com/beowolx/rensa.git && cd rensa
uv venv && uv sync --group bench --no-install-project
uv run maturin develop --release
uv run python benchmarks/simple_benchmark.py
See benchmarks/ for the full suite, including the 1.8M-row wikitext benchmark.
Contributing
Contributions welcome, just open a PR or issue.
License
MIT
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 rensa-0.3.1.tar.gz.
File metadata
- Download URL: rensa-0.3.1.tar.gz
- Upload date:
- Size: 676.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
756ab3f223e7a1fceec0d4f9e0a2fe8bdf0a21ff193624ceb4aa80af18a5a0de
|
|
| MD5 |
37b53c6445523d0a274e89f89dada602
|
|
| BLAKE2b-256 |
af403ee6833252d6cd5f3694df5ab48de8b74d96d347cfa7934f1edd0d09fc70
|
Provenance
The following attestation bundles were made for rensa-0.3.1.tar.gz:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1.tar.gz -
Subject digest:
756ab3f223e7a1fceec0d4f9e0a2fe8bdf0a21ff193624ceb4aa80af18a5a0de - Sigstore transparency entry: 952965842
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 524.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc8289df1ec0be39f9dd577153b1b4f8174585ca5d9dab9c3f467750f55ea055
|
|
| MD5 |
d6c04b08860789128a6ebbfc9e59b06f
|
|
| BLAKE2b-256 |
7613369478b30d6b385a277f9f84fcc42c3639c756721e1d879c31d60539ed41
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
cc8289df1ec0be39f9dd577153b1b4f8174585ca5d9dab9c3f467750f55ea055 - Sigstore transparency entry: 952966832
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 559.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905bdf308ef1567f3fccebbd3b1a48aa8a1951c0fb521f837204400c1fba1ac7
|
|
| MD5 |
679ab0a358b99c932dcfc44217e39504
|
|
| BLAKE2b-256 |
4a3a40cb7b2475b6497bc4beb3c5f91b9b918d3d0124378e3054382e944ddf5f
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
905bdf308ef1567f3fccebbd3b1a48aa8a1951c0fb521f837204400c1fba1ac7 - Sigstore transparency entry: 952966326
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 582.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e692b6704b6dd8103aa0de9a73645eba4cd395f6d49ec1369434d9a1d4d4003e
|
|
| MD5 |
1917574949036883f92ffd4eb1524e33
|
|
| BLAKE2b-256 |
08e763daf5fab11cf774d3dde186f41597fc677e713cf74d20b18d85698b5282
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
e692b6704b6dd8103aa0de9a73645eba4cd395f6d49ec1369434d9a1d4d4003e - Sigstore transparency entry: 952965858
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 481.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d0efe85a13f6807d2871195c81b7e5a652d924f3dcfeca332e56b2f08116f4
|
|
| MD5 |
4fa585d6b317dbd03639db823a29a0a7
|
|
| BLAKE2b-256 |
95e0ca95017c95fcd795f83644e57bef5251bf72eaa452ec0ec81170c1e586f5
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
03d0efe85a13f6807d2871195c81b7e5a652d924f3dcfeca332e56b2f08116f4 - Sigstore transparency entry: 952966553
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 313.0 kB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
948a2453a67228eb00b44aa68bc6ffbedfdfd6dc83bdc7304c0b3af5d957ed9f
|
|
| MD5 |
36d846f24438e9a2a18f895fa8e5f126
|
|
| BLAKE2b-256 |
471f7db1d5a3d6c39c7195f349239e6194bd47d04edf1383304c86c8dda79e75
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
948a2453a67228eb00b44aa68bc6ffbedfdfd6dc83bdc7304c0b3af5d957ed9f - Sigstore transparency entry: 952966042
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
- Upload date:
- Size: 353.2 kB
- Tags: PyPy, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a8fbcba05c4dc627cb43fbb36d90defe579458b3ae5e43ca0e11d7641fcf1ff
|
|
| MD5 |
7ef610b48b57ad5acf3b9ad79eb01f65
|
|
| BLAKE2b-256 |
34458c7961897108e5f864f4df2a2d96ea6eb0e24b86dd4cdd5379a538a5ce2a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl -
Subject digest:
2a8fbcba05c4dc627cb43fbb36d90defe579458b3ae5e43ca0e11d7641fcf1ff - Sigstore transparency entry: 952966195
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 347.7 kB
- Tags: PyPy, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fea945166ac7336558a072380eedfb2237bf3887ae26ac3e6c682d09c22343f
|
|
| MD5 |
933b78dcf31cbbe9f131d0cc48c24ef2
|
|
| BLAKE2b-256 |
7548e1c51ce182dcec2110c679552ac651e6d2d69c5ba3ff3f21bbed45addbdc
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl -
Subject digest:
1fea945166ac7336558a072380eedfb2237bf3887ae26ac3e6c682d09c22343f - Sigstore transparency entry: 952966636
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 300.4 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
408174c77535e93ada3df399266c6f27b180c93d97868b101f27e8bfbc9aa3ce
|
|
| MD5 |
e4d67db64702ad8640a717c279ef1e8d
|
|
| BLAKE2b-256 |
a5a3c9d8856f9d88d496672fc570ba30732e54c0e0dc938c139990231a16db8a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl -
Subject digest:
408174c77535e93ada3df399266c6f27b180c93d97868b101f27e8bfbc9aa3ce - Sigstore transparency entry: 952966814
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 295.9 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efdc7bc7ce65d2b92846080a4965e84a21a41b15058dbfb83c601cdcd1d83c34
|
|
| MD5 |
9b55ddee31e2104af71800e2a1c9024c
|
|
| BLAKE2b-256 |
e2f69fd0e551eb845f17a8876a9c3c3414d19ab130c54a5f620b89d38fac5a87
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
efdc7bc7ce65d2b92846080a4965e84a21a41b15058dbfb83c601cdcd1d83c34 - Sigstore transparency entry: 952966333
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 339.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bae21ac9bc9bea27619c3595fe517c83d55100d5e2b95f389f426c49b625c8e5
|
|
| MD5 |
bc033722ce44bf17faa79b4ab97341bd
|
|
| BLAKE2b-256 |
df67d916237efe82ce4bcea7e310776f2f078a819dd251740637f02a98fb7498
|
Provenance
The following attestation bundles were made for rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
bae21ac9bc9bea27619c3595fe517c83d55100d5e2b95f389f426c49b625c8e5 - Sigstore transparency entry: 952966067
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 524.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2199a3bed07b513aeece0a34346ef1aedcbfa0ba48aeb93a5b842d74aae5cd70
|
|
| MD5 |
bb48e8ec1a075665f9eca4e2b924ef50
|
|
| BLAKE2b-256 |
dbef6a7de0caf2b4d031376681955b1eb3139b0c9ea1c832af90e21f9f304ed0
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
2199a3bed07b513aeece0a34346ef1aedcbfa0ba48aeb93a5b842d74aae5cd70 - Sigstore transparency entry: 952965992
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 557.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62bd6d50ae471b694559efe16dfb46c67b2da3006eecfa7eb58788e6a2f14b12
|
|
| MD5 |
cec514cb41ebad991e97abe423b9d06a
|
|
| BLAKE2b-256 |
2187748406b84847db31d7227bb5ddd7fb2d1ab90f4fb2103e37d834862dc3ff
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
62bd6d50ae471b694559efe16dfb46c67b2da3006eecfa7eb58788e6a2f14b12 - Sigstore transparency entry: 952966443
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 579.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64c12ead5785446076170e6f921f2fec97f5b43c84f3a1be5ed83d37c0b18e6c
|
|
| MD5 |
e4a2ee4496eb95385c1cadcf63e713c0
|
|
| BLAKE2b-256 |
27428dc67b3018d4ea6196668ee0cb60322b2243b4769fcf80f47c82f75c290f
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
64c12ead5785446076170e6f921f2fec97f5b43c84f3a1be5ed83d37c0b18e6c - Sigstore transparency entry: 952966148
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 478.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bf7276b1d0800a20e09acdbe6e44f2560acdc61492cab7ac110db64fa06a314
|
|
| MD5 |
25382c8fba0da39a1e0408a35385d673
|
|
| BLAKE2b-256 |
0fa451c627923c00ac7413a64cc2cff7866e3ef0ef96d59a899431d2cd1d4931
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
6bf7276b1d0800a20e09acdbe6e44f2560acdc61492cab7ac110db64fa06a314 - Sigstore transparency entry: 952966076
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 351.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79d46578551f4d7b1e952fb48885513c29ccd78c389bd5b91d7c048f17acf955
|
|
| MD5 |
628541de3a1971276d33340ff0f4f511
|
|
| BLAKE2b-256 |
35972315ca3b139f3aab01a5bf763c81cf534e5c013c0fcd576151588731ad3b
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl -
Subject digest:
79d46578551f4d7b1e952fb48885513c29ccd78c389bd5b91d7c048f17acf955 - Sigstore transparency entry: 952966724
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 344.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e9b042eaef4c1141b9b1370929a0bff46678c3a9b51a935cb2528adb9c50f0d
|
|
| MD5 |
49ab902b018430142f30a3bdaaa7d0d7
|
|
| BLAKE2b-256 |
ad34aa8a52a116e769e9ef01974f8965e2a01154ce686e83c5f16155ff204071
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl -
Subject digest:
7e9b042eaef4c1141b9b1370929a0bff46678c3a9b51a935cb2528adb9c50f0d - Sigstore transparency entry: 952966842
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 298.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0be6214ff1f060eff208a155e99003a31bb541358b6fd92577c992bc7bb45d40
|
|
| MD5 |
1ba9e8c916aed033091df298b8c685bc
|
|
| BLAKE2b-256 |
fe1fe254bd1bb566d29a15f785f37a8dc897405cd5177914422d9c19e44023a7
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl -
Subject digest:
0be6214ff1f060eff208a155e99003a31bb541358b6fd92577c992bc7bb45d40 - Sigstore transparency entry: 952966269
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 292.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b49932edb0820d2a7770eed3b30d00c75b5de39d47f3aed49bb9f42887f5dc9c
|
|
| MD5 |
b90f3d94e3f514f46608192dabda0312
|
|
| BLAKE2b-256 |
0e23231341e3d9961078e8072dab5c520b5c97618f5b37a6c5d374b456415d03
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
b49932edb0820d2a7770eed3b30d00c75b5de39d47f3aed49bb9f42887f5dc9c - Sigstore transparency entry: 952966789
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 210.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b76315a0f22022568b49c7df4e911fd28abc82b241e4180649a189155caa9b4
|
|
| MD5 |
2aa59ef89424b1c6cd242236e44a55d1
|
|
| BLAKE2b-256 |
ea0e8d1e9be833a15d49747b88c23ffcf64fbaebba39d2201d23ee86ec476331
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-win_amd64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-win_amd64.whl -
Subject digest:
0b76315a0f22022568b49c7df4e911fd28abc82b241e4180649a189155caa9b4 - Sigstore transparency entry: 952966088
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-win32.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-win32.whl
- Upload date:
- Size: 199.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c33a8d063d037cb829aefed5b392bc275013399a61f12633a0d3f27daa91548f
|
|
| MD5 |
bec0aa738e4fe55a90b9a7e323defdd3
|
|
| BLAKE2b-256 |
fb1f63bd53693f15e88de7a13551cc5e6534e676bebc447761f9feee9dadff2d
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-win32.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-win32.whl -
Subject digest:
c33a8d063d037cb829aefed5b392bc275013399a61f12633a0d3f27daa91548f - Sigstore transparency entry: 952966492
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 525.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb6c8f075f32eac5e8344707750a1d9df5ef182a6f6a10e8f60fa9f10f7140f7
|
|
| MD5 |
1022dcfa40bf917472fb8677bcc0c28f
|
|
| BLAKE2b-256 |
17120a8039dad30e3ae2adb427841ccc6a41b8cb7e43715a9ac29ceb4115e258
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
eb6c8f075f32eac5e8344707750a1d9df5ef182a6f6a10e8f60fa9f10f7140f7 - Sigstore transparency entry: 952965891
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 558.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc307bb4fc2c7f37b31329b7a2658711849945fb4c5c39b377b1e912e000462
|
|
| MD5 |
cc814375442d03e41aac34266217d3e3
|
|
| BLAKE2b-256 |
d0866efba09cdf1d3cefef0251d1e85305170436e78db3b1b01ee1246971ab4c
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
cbc307bb4fc2c7f37b31329b7a2658711849945fb4c5c39b377b1e912e000462 - Sigstore transparency entry: 952966350
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf701aa6ddc8eadd1cd8171a863fb45da74c6455bf8466a31a94e95861954a0
|
|
| MD5 |
1beb7c8f67fa5ab04f8e1e27ce441878
|
|
| BLAKE2b-256 |
4141028ecabe96611136986ba426747454c0248d1869392a06d189ed58af403f
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
dcf701aa6ddc8eadd1cd8171a863fb45da74c6455bf8466a31a94e95861954a0 - Sigstore transparency entry: 952966212
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 479.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d5b0bdc64b145f60cd78213b50a025332f5f5b060448c62db6df0d00c8ff3d6
|
|
| MD5 |
f4656e545bf16fdddb67588253737d9d
|
|
| BLAKE2b-256 |
00f87fdf70195ddbb5d37382f9536f56aa85500c25071747c0e2a676bc720355
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
4d5b0bdc64b145f60cd78213b50a025332f5f5b060448c62db6df0d00c8ff3d6 - Sigstore transparency entry: 952966391
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 314.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6d7d36e66932919e0662c0ea93411e0dc36317169d2887b851f6a901732728a
|
|
| MD5 |
f5c910dc54d83803b771c2ef0b8c689d
|
|
| BLAKE2b-256 |
9479379e3f063c1b52ca536dff33d9624d2859d44fe0849ffe880719701914f4
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
c6d7d36e66932919e0662c0ea93411e0dc36317169d2887b851f6a901732728a - Sigstore transparency entry: 952966235
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl
- Upload date:
- Size: 352.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dbce909aed24626f8e16fc1dd34c3ae6e1ed825cbd8c47b49c0d53826ad5fd5
|
|
| MD5 |
1ac5d868e1e04bc507b94ab115f257f0
|
|
| BLAKE2b-256 |
9eb5208975eb6012fc9196cf8cde6f2ab7b411488080137d96bd0818edffca12
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl -
Subject digest:
3dbce909aed24626f8e16fc1dd34c3ae6e1ed825cbd8c47b49c0d53826ad5fd5 - Sigstore transparency entry: 952966178
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 346.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d00fe3f7de24d0c890960718be4cf48950fb0ff983990f27a43217519d144e62
|
|
| MD5 |
0f085c009ff2426c73cd64661d5824bb
|
|
| BLAKE2b-256 |
68f7b86629f917946f4cb8bce6cf525f0cd0067b3fbca8fc64e3f01216fbc25f
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl -
Subject digest:
d00fe3f7de24d0c890960718be4cf48950fb0ff983990f27a43217519d144e62 - Sigstore transparency entry: 952966725
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 299.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d91991493f855cdaf6d0b563d3a601e5b398e1d7f7ac26aadd9d3488d02f26c
|
|
| MD5 |
f6a882d67e6991533be07ef786b2f65a
|
|
| BLAKE2b-256 |
956946e031837402fac3389e9b8be4098d1a55c694e340caddf70031f461bf58
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl -
Subject digest:
1d91991493f855cdaf6d0b563d3a601e5b398e1d7f7ac26aadd9d3488d02f26c - Sigstore transparency entry: 952965874
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 294.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
779b323f143cf1a5b1ec8db88e95ff41d0eb76aeb124017a3f95392972c2cea1
|
|
| MD5 |
1006b1b4497c1608b7be2ee93e0c8b31
|
|
| BLAKE2b-256 |
b76bd21da828b85706769d67a14aa38beadeea5066458b31386f611ffb3b36ec
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
779b323f143cf1a5b1ec8db88e95ff41d0eb76aeb124017a3f95392972c2cea1 - Sigstore transparency entry: 952966200
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 337.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fca551d5328072cc85433e127ae59884feda2c0e1e71d2f92f2beccf19fb861
|
|
| MD5 |
f72e17f9f1edb59a4f56cdc224f37248
|
|
| BLAKE2b-256 |
165f970e72d74000a8fdc72caf3a7ae111d193ec5a6339e9c8fbebeffeaa9b38
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
4fca551d5328072cc85433e127ae59884feda2c0e1e71d2f92f2beccf19fb861 - Sigstore transparency entry: 952965921
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 279.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f32590651ab7a2f6388b0079b84786dc66be4b176a40946c1f2c96903081f5c4
|
|
| MD5 |
0c5a684c1118a27262dd6cbbf50bbe4e
|
|
| BLAKE2b-256 |
9306bf6bce158474a15cbecbfcb867b65fcf971a82bacac72ad19229ee751518
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
f32590651ab7a2f6388b0079b84786dc66be4b176a40946c1f2c96903081f5c4 - Sigstore transparency entry: 952966755
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 297.3 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1c92db2ea0db01d2a1da6d72d4ede86787fd0b02fe9ce74f130410d3fc917e7
|
|
| MD5 |
0dbb7a8445165d86d2fd7a262cae858e
|
|
| BLAKE2b-256 |
45e51d6deda73548634d8e8cefa504b3fc350019b68302ce656b67e484a09d12
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
f1c92db2ea0db01d2a1da6d72d4ede86787fd0b02fe9ce74f130410d3fc917e7 - Sigstore transparency entry: 952966752
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 526.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d540f2feee8949012e581c04a226d8ae6980f9be33ccf42e002362c8c5f129b0
|
|
| MD5 |
d9ed027d1237fd87eed3f1f2ab842636
|
|
| BLAKE2b-256 |
bb0962698c45c570899db59e178788884c0c8b6f404c7fd7df3c18830a9dfaca
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
d540f2feee8949012e581c04a226d8ae6980f9be33ccf42e002362c8c5f129b0 - Sigstore transparency entry: 952966844
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 556.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
025016866f82a77012a47e668add60bf81e21474c8d8699bcdf17f03f1646314
|
|
| MD5 |
c9292ae625d87cf606625042bc5ed991
|
|
| BLAKE2b-256 |
c847b6debab6a4ffaf8041f17a3416545218299b027a5b92c63776799a3a090e
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
025016866f82a77012a47e668add60bf81e21474c8d8699bcdf17f03f1646314 - Sigstore transparency entry: 952966464
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 579.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1012f4272cc24ac83857d63d1eb933a364a392ee39c2e016c1943d2d35a7feac
|
|
| MD5 |
9c3417df7bbca81caecf08bd0bab4f11
|
|
| BLAKE2b-256 |
dee2478a2f703193ea6c9dfddfd9e3e46836926d29b4cfc3ad08b0c2afc23cbd
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
1012f4272cc24ac83857d63d1eb933a364a392ee39c2e016c1943d2d35a7feac - Sigstore transparency entry: 952966252
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 480.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76ed45ade703c7f186a11a7d672f6146a2fb834caadbd79b927539dee390917f
|
|
| MD5 |
4f572ed0a3654a2e58fd504864000f7f
|
|
| BLAKE2b-256 |
9bed417c7d886446995717f6411b838e3ec3dbf4ea9b13129de586392542f255
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
76ed45ade703c7f186a11a7d672f6146a2fb834caadbd79b927539dee390917f - Sigstore transparency entry: 952966259
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 353.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45850a25ecf0500508637ac52fe551eab2e526744d90ced1a65f82e840692c1d
|
|
| MD5 |
ffafeb3473d8e36e1a966d24e92dd1b9
|
|
| BLAKE2b-256 |
33269c232de3852113d4bd921a2e28676082f20f4dbec31561e80bce17ca9bbf
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl -
Subject digest:
45850a25ecf0500508637ac52fe551eab2e526744d90ced1a65f82e840692c1d - Sigstore transparency entry: 952966384
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 346.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5004d0a463325267afd87ff781be2f4a894a116e24503b4031184db5815963cf
|
|
| MD5 |
a29e37b7fe2e7b078628acf0652690a9
|
|
| BLAKE2b-256 |
ce327b60b6cec04c88cbed97f95df300f46b0d6bc0ba8a867b056bdee10aa3d4
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl -
Subject digest:
5004d0a463325267afd87ff781be2f4a894a116e24503b4031184db5815963cf - Sigstore transparency entry: 952966155
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 297.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d791f31f8d0aacfe379725975dae75308886874298ba569095b0814c27b25d2a
|
|
| MD5 |
a3dc6d678cca6bcef5da87980157c5c2
|
|
| BLAKE2b-256 |
b88148229df74e5fc7922a22e013b7a646c7ae4931eb77307804e514d4d24558
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl -
Subject digest:
d791f31f8d0aacfe379725975dae75308886874298ba569095b0814c27b25d2a - Sigstore transparency entry: 952966033
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 294.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c3c44ac3f1bd47c718d56d96a93a64aca0ea6cebe7024b04bb91a54384e0ca5
|
|
| MD5 |
f6825b35ab6d947eaf421a10096855c1
|
|
| BLAKE2b-256 |
918b9ced3ae8b32a425862ba13465ed60a1389ed6ba62e12be821ec4868e0948
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl -
Subject digest:
4c3c44ac3f1bd47c718d56d96a93a64aca0ea6cebe7024b04bb91a54384e0ca5 - Sigstore transparency entry: 952966743
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 212.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31e58bb90da297f49d92283c36da6a413db5e0ef0b178da460a22c14ddcc546a
|
|
| MD5 |
6e97e365671cd9a4db2475fed324684c
|
|
| BLAKE2b-256 |
0a2b44cf804433f69a3c6507d2b0e3f689fff23563f551836c30306d45499e9d
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-win_amd64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-win_amd64.whl -
Subject digest:
31e58bb90da297f49d92283c36da6a413db5e0ef0b178da460a22c14ddcc546a - Sigstore transparency entry: 952965981
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 527.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47d96c3f283a8ae8cc608775583dcacb0c367d4f94a12d35103141f4ee11e2d
|
|
| MD5 |
92f5231d5ca54f45327e58e47305a7c8
|
|
| BLAKE2b-256 |
57f329c40ba950fcbfe0108c56fdb29c7f35b1f72380673fa4e17ffd3629d6d7
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
e47d96c3f283a8ae8cc608775583dcacb0c367d4f94a12d35103141f4ee11e2d - Sigstore transparency entry: 952966478
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 558.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02525a96a2fe2e11d1fb7e67f320e7ebf0c298189ef75f0126bc411351cd9cec
|
|
| MD5 |
a602fdd67f7953286afedfd1d96e7a16
|
|
| BLAKE2b-256 |
0f149bfa09dfa866ca3716340b0f47c5313e93ad0d969fbd97dbfb752bc12200
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
02525a96a2fe2e11d1fb7e67f320e7ebf0c298189ef75f0126bc411351cd9cec - Sigstore transparency entry: 952966691
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab1aaa7684121104a0d8f9d53a477f3f699cf3e426c22d7b0a3ac3a218efc906
|
|
| MD5 |
0d27697942f4422b651ad00dd52e5b41
|
|
| BLAKE2b-256 |
2dd7bc728ad662279ab0ca0d4b4fca9fd31fb74a877b05840061011f3e238dce
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
ab1aaa7684121104a0d8f9d53a477f3f699cf3e426c22d7b0a3ac3a218efc906 - Sigstore transparency entry: 952966013
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 481.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a30d857074301ebff3824c4303f1ca77e781a7193a90cbed1b5067bbccfee28c
|
|
| MD5 |
cbfa8e70d53b1da6df8bbe1dad4e0b41
|
|
| BLAKE2b-256 |
01a48b44bfdce46891b66a76e4e5860a93546efb565983f97da20eb26e6e9d9a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
a30d857074301ebff3824c4303f1ca77e781a7193a90cbed1b5067bbccfee28c - Sigstore transparency entry: 952966219
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 316.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20aba3be221abe694e0aca2ddec6bc64ff859d6edd0fbce2b7164273572587fb
|
|
| MD5 |
5fbc1616594788298484ded3f24acb5d
|
|
| BLAKE2b-256 |
576ab597e18992866ae03f59778efdf22922a693925f39189ca1d1684bfb385b
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
20aba3be221abe694e0aca2ddec6bc64ff859d6edd0fbce2b7164273572587fb - Sigstore transparency entry: 952966608
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl
- Upload date:
- Size: 354.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa9a33e3824f9012dc3b2d1d25f41eb5a87daa14c366882173e26f00874ca164
|
|
| MD5 |
0d1293aec74b2d4cb7930c8ef47941fd
|
|
| BLAKE2b-256 |
8bf80d807d44562c586fc8b37bf341c36e70275ae6393f0aa019a91438d85278
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl -
Subject digest:
aa9a33e3824f9012dc3b2d1d25f41eb5a87daa14c366882173e26f00874ca164 - Sigstore transparency entry: 952966824
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 347.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b933af3f7b070fd466215be73291eaffd1e682ed4c6a1fab6a47dc8a99d350af
|
|
| MD5 |
efc515b8acbc17e4eb322a67e17495b4
|
|
| BLAKE2b-256 |
57053872f50dcbefd06811fa629f284dd99da3df8a7b325d14dd97b9584087a4
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl -
Subject digest:
b933af3f7b070fd466215be73291eaffd1e682ed4c6a1fab6a47dc8a99d350af - Sigstore transparency entry: 952966570
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 299.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a84e66cd60086ae18e9b1e925c0030c6b5e8822efff0623b6a07b1f1d3012414
|
|
| MD5 |
47d0e1fd89187751b33597cdecd186c7
|
|
| BLAKE2b-256 |
80e67221024473f58ed94f6931ebe5d1656952863aec7f77fcc2b85d53b09e5a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl -
Subject digest:
a84e66cd60086ae18e9b1e925c0030c6b5e8822efff0623b6a07b1f1d3012414 - Sigstore transparency entry: 952966453
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 295.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66b567b8a16f090d6c9ed0e78612a00f21c6841eb88ecc4e7ebaae9bdb603eeb
|
|
| MD5 |
b8ff42a7bb0f1147b2126ae5e5fe0c84
|
|
| BLAKE2b-256 |
cd83c16f6e7263fab38f43f8d062013d5c171bf6bc46505618f740925594eacd
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
66b567b8a16f090d6c9ed0e78612a00f21c6841eb88ecc4e7ebaae9bdb603eeb - Sigstore transparency entry: 952966342
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 337.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5a8d3dc7fe345cd90e3946f2e59ad311169697bc23661fe248d6d8179c773c
|
|
| MD5 |
28c91379aafa9d1653649f7138cdb6cd
|
|
| BLAKE2b-256 |
5158ed1fa2f9eff69ebd4abbe0eb55d4ba296b65792b6f9303c64e3711bea9af
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
fd5a8d3dc7fe345cd90e3946f2e59ad311169697bc23661fe248d6d8179c773c - Sigstore transparency entry: 952966136
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 279.1 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
213f87f244daecd48bf61858d3a34da073549713f452269991ad2efd14c4a9ef
|
|
| MD5 |
8564b228092c6731e707b6bc538985c7
|
|
| BLAKE2b-256 |
1648802dc3a69053163e727aa2d850327b55e400e92ee3b606c4b759fbc5cecb
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
213f87f244daecd48bf61858d3a34da073549713f452269991ad2efd14c4a9ef - Sigstore transparency entry: 952966587
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 297.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
493fe15ac9c8adf7604f208375046969a620a8b90cfabbe26f32fc858c8c0494
|
|
| MD5 |
ae1f3afd3280506b93be6d8c059f4103
|
|
| BLAKE2b-256 |
ad132f945f1ed5c79ca726eab6528163c939ea4f07766247f9d82ba4d8bd01ee
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
493fe15ac9c8adf7604f208375046969a620a8b90cfabbe26f32fc858c8c0494 - Sigstore transparency entry: 952966281
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 212.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c927e043ca5887aa50bb2ff2a7f1064fa610c49bbc2f92b4d2b2e3380530bb72
|
|
| MD5 |
327fcd6d013c0689b68e285abf8b2985
|
|
| BLAKE2b-256 |
5eef542eea9dec88d34ad0ca7832a14a7744bc06f42bf3bcb49cd7247a924e46
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-win_amd64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-win_amd64.whl -
Subject digest:
c927e043ca5887aa50bb2ff2a7f1064fa610c49bbc2f92b4d2b2e3380530bb72 - Sigstore transparency entry: 952966808
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 528.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f8faf28ce7403b77f62ee191bbeb26b8caa94e08c9ba2bf494e762dc4b70ff4
|
|
| MD5 |
7bda8e09b7a75a63dfe606183500a84f
|
|
| BLAKE2b-256 |
f3b351e69fce1d0481b37cdcfd75872ad19c941f901ae2174d8379240076df1c
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
8f8faf28ce7403b77f62ee191bbeb26b8caa94e08c9ba2bf494e762dc4b70ff4 - Sigstore transparency entry: 952965903
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 558.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff3eea7e950ab2225a00e423d7c2abc054c49f193bf5884c4d34a48217c4dd7
|
|
| MD5 |
0e9475b1d3bc6f34ed161ea7d024fc1e
|
|
| BLAKE2b-256 |
7891a4fb11ec6f47e346f43d28e2817b30d8135bb812620c2390d53a8a925485
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
eff3eea7e950ab2225a00e423d7c2abc054c49f193bf5884c4d34a48217c4dd7 - Sigstore transparency entry: 952966435
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0468f49158a8fc25d8a83b6c08905eeb24c25b718f490e51429e014ba41c91cb
|
|
| MD5 |
917481f507b520b10dde2911d382b6c1
|
|
| BLAKE2b-256 |
9ef5ec700b5a0a1814e6292243e3b32f371521a4da9bffaa32c9b6f64ce79f63
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
0468f49158a8fc25d8a83b6c08905eeb24c25b718f490e51429e014ba41c91cb - Sigstore transparency entry: 952966527
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 481.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83d4b8d2d98ca9b10714d80b943a35e07b899591ca0ddeec4e99cd25d165b641
|
|
| MD5 |
2d28c88224edb59e02d0565c7c34b709
|
|
| BLAKE2b-256 |
f0c41cb8562182c12690a14d460bf8c084c027153a866a035bb59a60ae240477
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
83d4b8d2d98ca9b10714d80b943a35e07b899591ca0ddeec4e99cd25d165b641 - Sigstore transparency entry: 952965932
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 316.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f7ad6cba4a339bdc316620d79c7859de7fab2604a4e2e47fc7f5dceca108912
|
|
| MD5 |
07df7b804bfeac15df2b1706602beb9f
|
|
| BLAKE2b-256 |
47d509738341bde24c54c279c13711f368afb723a1fb1d8dbdbbd191a50c92ab
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
7f7ad6cba4a339bdc316620d79c7859de7fab2604a4e2e47fc7f5dceca108912 - Sigstore transparency entry: 952966027
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl
- Upload date:
- Size: 354.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36f0596e9e5baae9d8b47557e148186e11a8efdc729d910105db3503edb05ade
|
|
| MD5 |
4c9a43f15e7c1743b653ed3ef3559925
|
|
| BLAKE2b-256 |
75e05ab16af2959af133342990e2dbb4f92cf7d50ce49b2ad3d7d95a14940053
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl -
Subject digest:
36f0596e9e5baae9d8b47557e148186e11a8efdc729d910105db3503edb05ade - Sigstore transparency entry: 952966397
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 347.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a68be07b90bae060f44f4186d538354b1bcf1fd8f868c0e248281e02ea1e99e
|
|
| MD5 |
ce978572312cdc87eb10b8cab2645630
|
|
| BLAKE2b-256 |
91e77d92ee613a4f3d7ce72f8c299c7c1d629f762c4f05435e1b6857be5ac6d2
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl -
Subject digest:
4a68be07b90bae060f44f4186d538354b1bcf1fd8f868c0e248281e02ea1e99e - Sigstore transparency entry: 952965882
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 299.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db2d48ca63d6f074aed88d7d53a14d25bfb635ddec3cce8cb7716d92ea6db58
|
|
| MD5 |
8cdf800acecafaf7ec63e7108e61e0c5
|
|
| BLAKE2b-256 |
02951c2977a14028bee1166d738d237d9b872b0d45671ac6457eda874e3c79d7
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl -
Subject digest:
1db2d48ca63d6f074aed88d7d53a14d25bfb635ddec3cce8cb7716d92ea6db58 - Sigstore transparency entry: 952966700
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 296.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
086e1e220286da5f9b9a36a969743873ae53e189e756198d4e7ca593cedfd611
|
|
| MD5 |
ba9d555dee380e873b35ff59cda3374b
|
|
| BLAKE2b-256 |
ed0205bc70ae622377c8d2b4e2618a6a20c83be2a070a48bbcd4274b31f1a89b
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
086e1e220286da5f9b9a36a969743873ae53e189e756198d4e7ca593cedfd611 - Sigstore transparency entry: 952966113
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 338.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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17ac2858ab93c79ef3daa71608fde1c1c4a6887ae6ff0a713713d71685fc573e
|
|
| MD5 |
4f6793ab18c1e17bce796a929dd32f18
|
|
| BLAKE2b-256 |
3916902fe792ddfd42487e9829a9b8c24bf3c7cc1e4dbce4ec215d201b8e5004
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
17ac2858ab93c79ef3daa71608fde1c1c4a6887ae6ff0a713713d71685fc573e - Sigstore transparency entry: 952965862
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f1d9cc32b0899c9771add70a8aace481c63b9a3fe4afc1e21c8b411907fdbd9
|
|
| MD5 |
b058f837ff7f102e6d3eae837c536611
|
|
| BLAKE2b-256 |
2b2d4c3472c414b26e8987d6963d7a6ad1025f00271ffd86ace2645a9816f4df
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
5f1d9cc32b0899c9771add70a8aace481c63b9a3fe4afc1e21c8b411907fdbd9 - Sigstore transparency entry: 952966289
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 297.8 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15da99aca7cf36544166767bfee2dea869be5cdcc46ca3a753e7c83a00a5f7a8
|
|
| MD5 |
87141b72b5616ed2fbd9f68166f93abc
|
|
| BLAKE2b-256 |
32863c37206b178457e12158e692ee2d87349caa091b756fd02792498a4c56d1
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
15da99aca7cf36544166767bfee2dea869be5cdcc46ca3a753e7c83a00a5f7a8 - Sigstore transparency entry: 952966408
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ab4ceb57e3f9ac419da6369384aa5a9a3799288d6cbc66bed30ab97f0476f7e
|
|
| MD5 |
831d767acc79c2de42656329651dfcab
|
|
| BLAKE2b-256 |
2d4880089ec15f326c30ce685b1b2b3ad47fe355b63988cfdad44c021b6d4981
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-win_amd64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-win_amd64.whl -
Subject digest:
3ab4ceb57e3f9ac419da6369384aa5a9a3799288d6cbc66bed30ab97f0476f7e - Sigstore transparency entry: 952966710
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 523.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eee1d83c29bdb226f909dc5e120ad23f66250d26a96cdc9dd209ac9a51310106
|
|
| MD5 |
a9fea57249ba98d7a4ec208e8da629ad
|
|
| BLAKE2b-256 |
36039005321b7b66d8a75ec3da22475b0cb05d225ea335963bff684d638445bb
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
eee1d83c29bdb226f909dc5e120ad23f66250d26a96cdc9dd209ac9a51310106 - Sigstore transparency entry: 952966168
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 558.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a9ae34eb0f3e1581710532f55fd19aea95cc29c669ae133d2fbc34332aec590
|
|
| MD5 |
261d0141d5acac719c81cd226e3599c0
|
|
| BLAKE2b-256 |
eed277e603f281031820a7b1686b11c3dbb18b4eec9e643f0e374a7bb9250279
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
5a9ae34eb0f3e1581710532f55fd19aea95cc29c669ae133d2fbc34332aec590 - Sigstore transparency entry: 952965966
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45a36f81ba461a3dbae65902e8b215da25f6111c98a5783345863a7e127c3223
|
|
| MD5 |
658b70093db21d9a45677b8581136300
|
|
| BLAKE2b-256 |
d54c3be7fd8e9e04e0d61fdb02be71f00d50f3ed21d6ddf9450595c2980bf1f5
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
45a36f81ba461a3dbae65902e8b215da25f6111c98a5783345863a7e127c3223 - Sigstore transparency entry: 952966504
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 480.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c234a5af5072de8550a9db42a903b1f18049b642cf5550f89dc30d34a160e21a
|
|
| MD5 |
1c16beaf1709e5de0fa62e2dc99a56fd
|
|
| BLAKE2b-256 |
20954b7b4b3d5a9ea439409651aa41a1f11fd9ecab66d1feb62b04fc5fbec274
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
c234a5af5072de8550a9db42a903b1f18049b642cf5550f89dc30d34a160e21a - Sigstore transparency entry: 952965915
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 312.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c473eca8952140891fafdfc746d6e3780f932303ddcce3da12f622e976cc144a
|
|
| MD5 |
b1e1987e7ff04599015e3b2c6fea3da1
|
|
| BLAKE2b-256 |
693b419db1a0c833b3203f5f5cf843108e6e1e0fdb03f5aedf54c5edc64de1c6
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
c473eca8952140891fafdfc746d6e3780f932303ddcce3da12f622e976cc144a - Sigstore transparency entry: 952966629
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl
- Upload date:
- Size: 352.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39e8a069ffc5390bb7f4e48ed78ee1a48254264b188aee5d6a5371b96350fef6
|
|
| MD5 |
6443a55afe298297f754892767362130
|
|
| BLAKE2b-256 |
5f4012f25ea02ab0756eb0af1dd4c512f941790390fc700f693dc5fe2fed5268
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl -
Subject digest:
39e8a069ffc5390bb7f4e48ed78ee1a48254264b188aee5d6a5371b96350fef6 - Sigstore transparency entry: 952966678
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 346.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
949d70bd551dabd520b887e9348537a2b592693d270fce9599addf4afb27cec7
|
|
| MD5 |
327c326fc3f092bae1ffdc667f648b03
|
|
| BLAKE2b-256 |
3406088e4b709c0680f457f8ba9379ee8b3bfaee59ccba20751a48a305488db2
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl -
Subject digest:
949d70bd551dabd520b887e9348537a2b592693d270fce9599addf4afb27cec7 - Sigstore transparency entry: 952966563
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 299.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab01b044e72763234a9189cecdda37ca6c1ba358b0b32dbce9768b3681131180
|
|
| MD5 |
688e03559332e6ae180bfa5a9f2be4c3
|
|
| BLAKE2b-256 |
6f91d5c3bce10806f7b9e24c5b686468c7d054d73b68d678d62718368aef8a70
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl -
Subject digest:
ab01b044e72763234a9189cecdda37ca6c1ba358b0b32dbce9768b3681131180 - Sigstore transparency entry: 952966618
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 294.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
771cd9681e59c349f374f6f9c387a6a6bb35ebfb3371932482d9f1e430a2c820
|
|
| MD5 |
9538b4ad3d658a72fa8a1fccd6767a70
|
|
| BLAKE2b-256 |
84874f0443a54521440bc478f9786886a4c1d32029096f155707c7e7f4ccf9ac
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
771cd9681e59c349f374f6f9c387a6a6bb35ebfb3371932482d9f1e430a2c820 - Sigstore transparency entry: 952966783
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 338.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4ec5bae4a78506d5371c39b429ca0d57804c90ce6d1302647db74f9ca620c2f
|
|
| MD5 |
806ce569a99e07de5c6cea770f60043c
|
|
| BLAKE2b-256 |
dfb3daecba20ea5b399fcefbcb6aacbd49a22db0e21fcda0cd7c255d2cf9e66a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
a4ec5bae4a78506d5371c39b429ca0d57804c90ce6d1302647db74f9ca620c2f - Sigstore transparency entry: 952966577
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 280.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2fd76814cb826dfe69a987b49dcb10ea758784203f5f03117d17fa30a28564f
|
|
| MD5 |
51da9f14139403f538c548638c6efb68
|
|
| BLAKE2b-256 |
c8af6ae09ec1acee53330ba4fc75b0358a9cb9e70f92f92ae77587f332f8db69
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
d2fd76814cb826dfe69a987b49dcb10ea758784203f5f03117d17fa30a28564f - Sigstore transparency entry: 952966667
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 299.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7e9d3152864040b1db3d57f043f4f1a53ac9325f924c4a0f73a63fe72a73651
|
|
| MD5 |
1f60e7619875f3a2a096eadd9564156b
|
|
| BLAKE2b-256 |
d8d52528b0f997fdca258f24b636bf516868be93de9b1e4bf6788d857b205275
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
a7e9d3152864040b1db3d57f043f4f1a53ac9325f924c4a0f73a63fe72a73651 - Sigstore transparency entry: 952966544
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc3a6f40aa0c53352e0abbd01adec366b1f8967d69db2cf12ed26a903afc02f
|
|
| MD5 |
72472825ef55d1fea1c115cb7533540c
|
|
| BLAKE2b-256 |
970636f0512d1fb36d785fedf3c96939b1e1f205de9dcce97184d1573ba25a7d
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-win_amd64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-win_amd64.whl -
Subject digest:
7dc3a6f40aa0c53352e0abbd01adec366b1f8967d69db2cf12ed26a903afc02f - Sigstore transparency entry: 952966425
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 523.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
348fb4938a8637bb33932b2630180dcfe795bb0d9e23ba765a3b3675dd0fedd8
|
|
| MD5 |
3b6a7e26155033d7f37c2e9800bb1350
|
|
| BLAKE2b-256 |
18ce71406ea14902a55fac9f5cb7589a6b670055b0eacb2d5b8e0e3cad201fc8
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
348fb4938a8637bb33932b2630180dcfe795bb0d9e23ba765a3b3675dd0fedd8 - Sigstore transparency entry: 952966052
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 558.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f38566ce52053d7a9e9f3c29ba6721861b10dae6f053cbcb56dc99267323bcc
|
|
| MD5 |
88d7d751d0966d39a1c3b8fe0cd6f2cc
|
|
| BLAKE2b-256 |
eabb877a81b949c85923cdab71591268981696ee16d85f54214cf9874b5be1d6
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
7f38566ce52053d7a9e9f3c29ba6721861b10dae6f053cbcb56dc99267323bcc - Sigstore transparency entry: 952966601
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 581.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b45699ed457104b356ce362f1544b9b14b4bdd6f75184c1a31bb59abf785dffb
|
|
| MD5 |
d74d52f5421f9a73bbb87d32def14b47
|
|
| BLAKE2b-256 |
6f8693443ea0bb79611c20b0c5b3d7e73de66c9b4d634ca806294b052ed4ab0e
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
b45699ed457104b356ce362f1544b9b14b4bdd6f75184c1a31bb59abf785dffb - Sigstore transparency entry: 952966762
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 480.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e66a2573f7ac42c6055cb785ade16d1f9115b0f0a276b2a5734fe408c9592c02
|
|
| MD5 |
09948cd1d5b8b3e594cae0dc3ee59997
|
|
| BLAKE2b-256 |
bb59ecefa14cd5d795e8c4fe4d9db0b8e4146f3dab8d31684e0ce1a4618b9aaa
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
e66a2573f7ac42c6055cb785ade16d1f9115b0f0a276b2a5734fe408c9592c02 - Sigstore transparency entry: 952966475
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 312.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
745167390cd2368845fe149569e30c48766682ed1a39a46bfb03d8549753ac48
|
|
| MD5 |
71f840ae69d905a555a975cd1c45f50d
|
|
| BLAKE2b-256 |
273a8872892f235e71f3d2ce602b2b0ac718cca22e585ce611f854c88fac7c69
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
745167390cd2368845fe149569e30c48766682ed1a39a46bfb03d8549753ac48 - Sigstore transparency entry: 952966645
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_28_s390x.whl
- Upload date:
- Size: 352.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1117b82c56b060017a8996e3cb2a388f655dc2f8c26171e08ef28d5b3b875930
|
|
| MD5 |
ae5e738f4522a9ed8de514642faa78e0
|
|
| BLAKE2b-256 |
95c4b116aa13b929be32325f4236fe8a587c60195b6e25ac08e73fa85dc1deac
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_28_s390x.whl -
Subject digest:
1117b82c56b060017a8996e3cb2a388f655dc2f8c26171e08ef28d5b3b875930 - Sigstore transparency entry: 952966774
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 346.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
522cb0cb7baa2475641da15197dcddcd61d0665fe7db3002da19343f59be276c
|
|
| MD5 |
22960e676b9fa0669a1e0fd50b3efec2
|
|
| BLAKE2b-256 |
00ca6a65c21a8df423f77c705935b22d597807ed5609312b5f734f1d6badc735
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_28_ppc64le.whl -
Subject digest:
522cb0cb7baa2475641da15197dcddcd61d0665fe7db3002da19343f59be276c - Sigstore transparency entry: 952965939
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 300.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
654b563d1656d3dcaccd3cf5c196de38ac912fbe9c2d69119b0f58fdc0d892a6
|
|
| MD5 |
e6bf074e5712158b24dc319074fd1995
|
|
| BLAKE2b-256 |
74de28ab9c80eadc49ac22d472505c1d8cbc76a44d682d92945c018c907d10ec
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl -
Subject digest:
654b563d1656d3dcaccd3cf5c196de38ac912fbe9c2d69119b0f58fdc0d892a6 - Sigstore transparency entry: 952966127
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 294.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1388f93a338f714090f3bfb647e88c32fd38fbffd017a8c16ff6b93ef5dfc1b2
|
|
| MD5 |
1eaf3f4a4bbf3ed4379fab6488a05329
|
|
| BLAKE2b-256 |
9ed8d47a6296f9ad6c48a476e3a6f35f042d0af9aaa6ab82a61f5c182045a648
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
1388f93a338f714090f3bfb647e88c32fd38fbffd017a8c16ff6b93ef5dfc1b2 - Sigstore transparency entry: 952966522
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 338.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ea53e293df7efa11aa0467a28b70732587052231bcf864dfa9b5d1e08d8fc3e
|
|
| MD5 |
cf5361ccd7f5f7b360c50b2bd61b3b20
|
|
| BLAKE2b-256 |
78a998cd363c8c8611c554190c35062a1d141f9d1e2430e477bc76def7dc26fe
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
5ea53e293df7efa11aa0467a28b70732587052231bcf864dfa9b5d1e08d8fc3e - Sigstore transparency entry: 952966300
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 524.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b46b4b4e1004bd05f14c055108c98ae98e93e0551ab956d05636d65942e68a1c
|
|
| MD5 |
75c39781c52d93bbabc32fda0ab3d6d3
|
|
| BLAKE2b-256 |
92707ae2f334480ef8b7b45d93f4bcb5eeeb32d25e07c1121c4f400dfec9b093
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
b46b4b4e1004bd05f14c055108c98ae98e93e0551ab956d05636d65942e68a1c - Sigstore transparency entry: 952966312
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 559.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc76b86f316488dc4045af120df4a03e92229e97c1f05de70f87e08c59b872ec
|
|
| MD5 |
b702ad99c780af89dc68299bfa52c8ae
|
|
| BLAKE2b-256 |
6be6548e2c80b779456defc5008691c035fe3b097088bc73c7d6c16b350e564d
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
cc76b86f316488dc4045af120df4a03e92229e97c1f05de70f87e08c59b872ec - Sigstore transparency entry: 952966732
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 582.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ca45c2805e57f7afb9ac23fd1d8565e8ce3be1e1150f04f665364c2c48b4b38
|
|
| MD5 |
672e9ac8b26d2198d4f6375c9c42ac19
|
|
| BLAKE2b-256 |
a65122f8f43e69d4421888695e3ec021a6ff9e0d00b7cb8bf4c84ea661551ef5
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
0ca45c2805e57f7afb9ac23fd1d8565e8ce3be1e1150f04f665364c2c48b4b38 - Sigstore transparency entry: 952966164
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 481.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ee5c0ffc2a46242ba0f24906f3b7a1b9cfeb41b183b5125a5dd57bbaca4d7de
|
|
| MD5 |
04ad932bba827d9faa5ba4b40f4ba417
|
|
| BLAKE2b-256 |
c93fbd385c3264139bd9da4c3f0d7d508109cec12e8cb7c79f8fbecbbeeedc48
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
5ee5c0ffc2a46242ba0f24906f3b7a1b9cfeb41b183b5125a5dd57bbaca4d7de - Sigstore transparency entry: 952966536
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 313.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f7517e33b6973c7df3cd3908e92b864df71c3c126145ae53d0a56f3dae4f9d6
|
|
| MD5 |
51584884d2190824a66acf23372335ca
|
|
| BLAKE2b-256 |
38a21ca24c548ed04e37afe87299c1cf929a734f67919f3b07d58de69df2d9bf
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
7f7517e33b6973c7df3cd3908e92b864df71c3c126145ae53d0a56f3dae4f9d6 - Sigstore transparency entry: 952966659
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_28_s390x.whl
- Upload date:
- Size: 353.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cd83b3e0232fa62cf1ab32deb33ef305df70107b510060eed19e2a34bb25dd2
|
|
| MD5 |
509e8dba5981c09f059549e7088e17c2
|
|
| BLAKE2b-256 |
0501472248a5e663180936d8fbd8043b82c4c110c6fba2db03e9d4ffa8ee67f1
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_28_s390x.whl -
Subject digest:
2cd83b3e0232fa62cf1ab32deb33ef305df70107b510060eed19e2a34bb25dd2 - Sigstore transparency entry: 952966320
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 347.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49708eadb32d5a5a7e602099ca7874d6dfbc2fe0b19f23f543ed4c9674015231
|
|
| MD5 |
370af61e22d49561648fd95574f92ed9
|
|
| BLAKE2b-256 |
7257feac738cecee6093c755168d6a1dd830bea0e4eec28c4160ab7bf5879841
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_28_ppc64le.whl -
Subject digest:
49708eadb32d5a5a7e602099ca7874d6dfbc2fe0b19f23f543ed4c9674015231 - Sigstore transparency entry: 952966487
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 300.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
103a17336f0d11bfaee6e05dda76de91af9ce10fc17583e5b9036f5bbe57b377
|
|
| MD5 |
91b51be29e24a2081c07e7a224807a3f
|
|
| BLAKE2b-256 |
c0e10e2e1c379984c108c182cefc51c13e83db452819ce07b4cacde6d0dcfa12
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_28_armv7l.whl -
Subject digest:
103a17336f0d11bfaee6e05dda76de91af9ce10fc17583e5b9036f5bbe57b377 - Sigstore transparency entry: 952966249
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 295.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
803f5cf4cc9d10c07d784a28b9006651f1e26929945083d710be87b9454a735a
|
|
| MD5 |
03d029051eb9f4f06a88b7e351ff3d9e
|
|
| BLAKE2b-256 |
2ee78d8d5fd422836ba4ff1cf0231f4f27da0e20bf8c1b296637aa5e1bb8827e
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
803f5cf4cc9d10c07d784a28b9006651f1e26929945083d710be87b9454a735a - Sigstore transparency entry: 952966421
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 339.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0d3ade57de4675041665dfba4c93b6923f35d92ee82e7716561702d4a605991
|
|
| MD5 |
2a2933b36ce95e34a5194074353c8b7b
|
|
| BLAKE2b-256 |
4fdce8caae057d1be1056ca37dda09122d454ed340f9ecb0b76975aec4e160cd
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
b0d3ade57de4675041665dfba4c93b6923f35d92ee82e7716561702d4a605991 - Sigstore transparency entry: 952966672
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 525.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc455d79cdab7cf76512bfddf07cba0ece953ca3a95abc5b6e51a181d751b60d
|
|
| MD5 |
21fd917fb2258506176bba6f066fe8f4
|
|
| BLAKE2b-256 |
9954a9d69c4566987bde8f8e4ced9e02b72a14961b1fbee66b2be86f2c46be92
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
dc455d79cdab7cf76512bfddf07cba0ece953ca3a95abc5b6e51a181d751b60d - Sigstore transparency entry: 952966003
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 559.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56d96bee5e7034548442778f21207529bea948131745fbb69fe08eaa4b454f45
|
|
| MD5 |
bd9393c947be378b9ed0832ec49dad24
|
|
| BLAKE2b-256 |
4b9f444abfec30ba3f54e3501ad807efa92058f691b92b1e66221e4986485c00
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
56d96bee5e7034548442778f21207529bea948131745fbb69fe08eaa4b454f45 - Sigstore transparency entry: 952966371
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 582.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
403bde350c5fbbc2448af3328f05fac01f1978c47950d4d61eba77850cf28d74
|
|
| MD5 |
c548b12827b2a52a8eec0d108d9a569e
|
|
| BLAKE2b-256 |
3c7a2154dc1bf1db0b8e3ad12b27cc7dc45f870b5d711c9e3f8234f6f6187dfd
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl -
Subject digest:
403bde350c5fbbc2448af3328f05fac01f1978c47950d4d61eba77850cf28d74 - Sigstore transparency entry: 952966800
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 481.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14a9f60f841bd842de76e7cd700b2b2eccaaa19029e599ed80f65dc9922b7ae0
|
|
| MD5 |
96c4d356a2174a22b133b06fba366f73
|
|
| BLAKE2b-256 |
e3d71544ce2b29ff066fca498a52a3ef9ea5a28f644446ce9f8a4b6c84fed8b1
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl -
Subject digest:
14a9f60f841bd842de76e7cd700b2b2eccaaa19029e599ed80f65dc9922b7ae0 - Sigstore transparency entry: 952966185
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 313.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b28d2240ab453ce1fa268721c0480df29053b54becc6bffd3f06da7e058baa4
|
|
| MD5 |
31752ff3ca6b1acef32b19b280178a48
|
|
| BLAKE2b-256 |
ae4431d45baf293c930301077ee20a67f9fda7d8069e2a485d16e808c7968a80
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_28_x86_64.whl -
Subject digest:
3b28d2240ab453ce1fa268721c0480df29053b54becc6bffd3f06da7e058baa4 - Sigstore transparency entry: 952966514
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_28_s390x.whl
- Upload date:
- Size: 353.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ee9e2ac4b5ef89e2c7bae9dac6253e27d50d9ba49cb734e5aa8a554d09bce27
|
|
| MD5 |
ef38b6dfcb608a0483833a628eed0719
|
|
| BLAKE2b-256 |
0dae101fc8bc71dc9d6dff41016bbaf8d20815ce46795cf885da2ba896c896e9
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_28_s390x.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_28_s390x.whl -
Subject digest:
8ee9e2ac4b5ef89e2c7bae9dac6253e27d50d9ba49cb734e5aa8a554d09bce27 - Sigstore transparency entry: 952965951
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 347.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63db415ba8f5ccbda1adbd081fdf36feca36b262328a6bf5f26105cb9aaa9c8a
|
|
| MD5 |
1f7ed1608386c8d35852480c0ec441ec
|
|
| BLAKE2b-256 |
5d937766ae83a49d56b35e07ea89ed401386f09e5811147e073dd51eda73d588
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_28_ppc64le.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_28_ppc64le.whl -
Subject digest:
63db415ba8f5ccbda1adbd081fdf36feca36b262328a6bf5f26105cb9aaa9c8a - Sigstore transparency entry: 952965851
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 300.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9bbbfa374a36f13dcba2a39c29e95697a317ea6c85618de9a3fa8705b47a220
|
|
| MD5 |
cf607afa5fc9ff799c3f51c81c1117fd
|
|
| BLAKE2b-256 |
7b60cbd13f3d439e133dbbb06d41f4d698c036dd1f294bd71f916b0edd28615f
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_28_armv7l.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_28_armv7l.whl -
Subject digest:
d9bbbfa374a36f13dcba2a39c29e95697a317ea6c85618de9a3fa8705b47a220 - Sigstore transparency entry: 952966592
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 295.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb42b21dfa8bab42ea942eaf090b41cf313fb6f2cc753c98aee083a9106b226d
|
|
| MD5 |
37428a3548ce1db1ac611baa6b7102da
|
|
| BLAKE2b-256 |
4f7487f657491127fee13eed77eca5228968514dc7383b53115b7111dca20b3a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_28_aarch64.whl -
Subject digest:
eb42b21dfa8bab42ea942eaf090b41cf313fb6f2cc753c98aee083a9106b226d - Sigstore transparency entry: 952966225
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 339.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e910cf0bf41f7a372990eba411e03f017462fa5d0b34a0c84dd55bf443ca7309
|
|
| MD5 |
8543a39ae36eb96d59dd381a432f2ddf
|
|
| BLAKE2b-256 |
707157120179db3473452cbf314b2ea8d943c24faeb97c8fe90b4d87d9d9cf5a
|
Provenance
The following attestation bundles were made for rensa-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on beowolx/rensa
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rensa-0.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
e910cf0bf41f7a372990eba411e03f017462fa5d0b34a0c84dd55bf443ca7309 - Sigstore transparency entry: 952966852
- Sigstore integration time:
-
Permalink:
beowolx/rensa@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@fed998f2bebef7516bbe9d0f4c33621d71f45d27 -
Trigger Event:
push
-
Statement type: