High-performance MinHash implementation in Rust with Python bindings - 40x faster than datasketch
Project description
Rensa
High-performance MinHash in Rust with Python bindings. On a reference full benchmark suite, Rensa is 608.52x faster than datasketch and 11.92x faster than FastSketch, 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
Numbers below come from a reference full benchmark run (benchmarks/full_benchmark.py) over 7 datasets and 2 thread lanes (threads=1,8), 128 permutations, threshold 0.8, and 8 bands.
| Comparison | Average speedup |
|---|---|
| Rensa vs Datasketch | 608.52x faster |
| Rensa vs FastSketch | 11.92x faster |
| Accuracy vs Datasketch | Value |
|---|---|
| Mean Jaccard of kept sets | 0.987219 |
| Mean duplicate-flag mismatch rate | 0.010717 |
These accuracy metrics are from the same full benchmark run as the speed numbers above.
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 a fast non-cryptographic hash that mirrors rustc_hash::FxHasher semantics while avoiding trait dispatch in the hot path. 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
uv add 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")
Batch APIs
For large batches, build and query in bulk to reduce Python call overhead:
from rensa import RMinHash, RMinHashLSH, RMinHashDeduplicator
token_sets = [
"select id from users".split(),
"select name from users".split(),
"select id from users".split(),
]
keys = [f"doc-{idx}" for idx in range(len(token_sets))]
minhashes = RMinHash.from_token_sets(token_sets, num_perm=128, seed=42)
digests = RMinHash.digests_from_token_sets(token_sets, num_perm=128, seed=42)
lsh = RMinHashLSH(threshold=0.8, num_perm=128, num_bands=8)
lsh.insert_pairs(enumerate(minhashes))
candidates_per_doc = lsh.query_all(minhashes)
dedup = RMinHashDeduplicator(threshold=0.8, num_perm=128, use_lsh=True, num_bands=8)
added_flags = dedup.add_pairs(zip(keys, minhashes))
is_dup_flags = dedup.is_duplicate_pairs(zip(keys, minhashes))
duplicate_sets = dedup.get_duplicate_sets(minhashes)
CMinHash supports the same batch constructors, plus digests64_from_token_sets(...).
For expert throughput paths (when you already have hashed tokens or byte tokens):
from rensa import CMinHash, RMinHash
token_sets = [
"select id from users".split(),
"select name from users".split(),
]
token_hash_sets = RMinHash.hash_token_sets(token_sets)
r_matrix = RMinHash.digest_matrix_from_token_hash_sets(
token_hash_sets, num_perm=128, seed=42
)
byte_matrix = RMinHash.digest_matrix_from_token_byte_sets(
[[b"alpha", b"beta"], [b"gamma", b"delta"]],
num_perm=128,
seed=42,
)
c_digests64 = CMinHash.digests64_from_token_hash_sets(
token_hash_sets, num_perm=128, seed=42
)
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 |
from_token_sets(...) |
Build many MinHash objects from token iterables |
digests_from_token_sets(...) |
Compute many digests in one call |
hash_token_sets(...) |
Hash token sets to reusable u64 token hashes |
digest_matrix_from_token_sets(...) |
Build compact row-major digest matrix |
digest_matrix_from_token_hash_sets(...) |
Build compact digest matrix from pre-hashed u64 tokens |
digest_matrix_from_token_byte_sets(...) |
Build compact digest matrix from bytes-like tokens |
digests64_from_token_sets(...) |
CMinHash only, returns u64-precision digests |
digests64_from_token_hash_sets(...) |
CMinHash only, uses pre-hashed u64 tokens |
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 |
insert_pairs(entries) |
Insert many (key, minhash) pairs |
insert_many(minhashes, start_key=0) |
Insert many minhashes with sequential keys |
query_all(minhashes) |
Query many minhashes in one call |
query_duplicate_flags(minhashes) |
Return len(query(minhash)) > 1 flags for many minhashes |
RMinHashDeduplicator / CMinHashDeduplicator
| Method | Description |
|---|---|
RMinHashDeduplicator(threshold, num_perm, use_lsh, num_bands=None, seed=42) |
R-MinHash streaming deduplicator |
CMinHashDeduplicator(threshold, num_perm=None, seed=42) |
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 |
add_pairs(entries) -> list[bool] |
Batch add (key, minhash) or (key, token_set) pairs |
is_duplicate_pairs(entries) -> list[bool] |
Batch duplicate checks for minhash or token-set pairs |
get_duplicate_sets(minhashes) -> list[list[str]] |
Batch duplicate candidate lookup (minhash or token-set inputs) |
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
Run the full cross-library benchmark (single-thread + multi-thread lanes):
uv run python benchmarks/full_benchmark.py
benchmarks/ now contains two scripts:
benchmarks/simple_benchmark.py: single-thread quick comparison across Datasketch, FastSketch, R-MinHash, and C-MinHash.benchmarks/full_benchmark.py: fair per-run process-isolated benchmark (all engines per subprocess, randomized order) across Datasketch, FastSketch, and Rensa on the full dataset preset suite.
simple_benchmark.py times rensa_c, but excludes it from accuracy comparisons because CMinHashDeduplicator.add_pairs uses streaming add-if-unique semantics rather than batch query-all semantics.
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.4.0.tar.gz.
File metadata
- Download URL: rensa-0.4.0.tar.gz
- Upload date:
- Size: 332.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44769baac08a51345ec6d38e828378e1664a03849c9b476f6480f4794980cfb5
|
|
| MD5 |
a1e09751912142f46d34e9dcbf2c55fd
|
|
| BLAKE2b-256 |
8af449f47b8c2200cab4a53052c8d633332a3b32dafab9794d4d01f98fd242a6
|
Provenance
The following attestation bundles were made for rensa-0.4.0.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.4.0.tar.gz -
Subject digest:
44769baac08a51345ec6d38e828378e1664a03849c9b476f6480f4794980cfb5 - Sigstore transparency entry: 995173775
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 694.3 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 |
8d1e50bd20673d02d7a1d2c3ea9221663d306d6a5ed3ee591d8e09224a6bc63f
|
|
| MD5 |
950f5ada10755520de1bbdd08cda0d3a
|
|
| BLAKE2b-256 |
ab5f629b89e6ed5fa0714092c5b4814797498d2ba7252eb8b43215f57669d0b4
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
8d1e50bd20673d02d7a1d2c3ea9221663d306d6a5ed3ee591d8e09224a6bc63f - Sigstore transparency entry: 995173928
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 726.6 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 |
6c7258292d8a2719e158b8a8681a658657bf03235017aa998d1c52f15d92a838
|
|
| MD5 |
273758b442228e2a1da1bf43b034bfce
|
|
| BLAKE2b-256 |
d840cdf6205230a5027fa08e89660a5c110235e2f4b855b8926f2fe8c6d35f1d
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
6c7258292d8a2719e158b8a8681a658657bf03235017aa998d1c52f15d92a838 - Sigstore transparency entry: 995173823
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 739.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 |
a51acb32f69f8f3b426306744d7adadb404f11d416ce3ece48aae60142bc5220
|
|
| MD5 |
36876a316e53ef36519f14dbd5a2b6e1
|
|
| BLAKE2b-256 |
caaadfc5e20aea9e8328eef54d54531812dbab6f0bc4dca72e022705fb36c1a5
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
a51acb32f69f8f3b426306744d7adadb404f11d416ce3ece48aae60142bc5220 - Sigstore transparency entry: 995173968
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 642.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 |
532cdbe048ed523d5dec6df9bbad1910add006ab0ce780d746c799de443b378c
|
|
| MD5 |
5fa3e231843808008e30665000885a33
|
|
| BLAKE2b-256 |
d33259e14a4bee3e5faff48ea4a0e353a1214013b2fa5ba0b55bfddb0e42461f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
532cdbe048ed523d5dec6df9bbad1910add006ab0ce780d746c799de443b378c - Sigstore transparency entry: 995173974
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 479.8 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 |
2efc749d128fe4d645428076d8f5f7a732fc57b465a824ca4431bedfa061947a
|
|
| MD5 |
8e49b2c6018b413caddd3038e560cedf
|
|
| BLAKE2b-256 |
9571850e0b4dec4ea17ea7cf4a5b7dcd6c7abe8413ba646839f6621fba20f7ee
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
2efc749d128fe4d645428076d8f5f7a732fc57b465a824ca4431bedfa061947a - Sigstore transparency entry: 995173830
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
- Upload date:
- Size: 529.3 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 |
53dce1be2da44352011bce14f75ef504170aad5fb21e3e23d3bcf5a843cdb0cb
|
|
| MD5 |
42c68d66cf43debfc2a43017f202f624
|
|
| BLAKE2b-256 |
753ef741aaf05e9427c89424d51453c2574a1e1b11df51159dbb2e69649fdd6e
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl -
Subject digest:
53dce1be2da44352011bce14f75ef504170aad5fb21e3e23d3bcf5a843cdb0cb - Sigstore transparency entry: 995173891
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 523.5 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 |
908b5a74bfd469ed414fd9283e7d4c144dd84fa6a7374b14477e0fc9770e75b8
|
|
| MD5 |
2d97e3fe13c961511d1c29e08625daa7
|
|
| BLAKE2b-256 |
1c38e4dd5f5e6715a02739a51717a1ea78f9ad23775da3bb48b9781edafde20a
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl -
Subject digest:
908b5a74bfd469ed414fd9283e7d4c144dd84fa6a7374b14477e0fc9770e75b8 - Sigstore transparency entry: 995173932
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 457.3 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 |
da978f32091f88f981a61bc990ec0b77c2e659c4932449910ae46478f4cdb7a7
|
|
| MD5 |
a8bff0593f9c5ff03707a7a6881273c9
|
|
| BLAKE2b-256 |
4cd1d3d1986c3c4962e31aa50d70aea82fd8bdc3409de282152f06ef385e3fad
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl -
Subject digest:
da978f32091f88f981a61bc990ec0b77c2e659c4932449910ae46478f4cdb7a7 - Sigstore transparency entry: 995173879
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 456.3 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 |
fff152ecff53fbe3279d7de3e7f20d8f8f18326adf13fb62d3bc5458edff0d9b
|
|
| MD5 |
4f4d1b6a280b9e2b4642aa3cb55d1708
|
|
| BLAKE2b-256 |
47ad84ff749fcad996fec40f0b780c0e4c7fdab20d8f32e95a5399bb4c8fc25e
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
fff152ecff53fbe3279d7de3e7f20d8f8f18326adf13fb62d3bc5458edff0d9b - Sigstore transparency entry: 995173881
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 512.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 |
bc3859d1a743c01fb40fbb51af8c12441347495a1c6aa2959f44f3113f9afb32
|
|
| MD5 |
8cae8e52b25f5962b90fba0db2c11f14
|
|
| BLAKE2b-256 |
8bf4ae440d5713e324f7295c619edde9811a0eaf2ad7d60ab36b20674c3596e2
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
bc3859d1a743c01fb40fbb51af8c12441347495a1c6aa2959f44f3113f9afb32 - Sigstore transparency entry: 995173841
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 692.8 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 |
08af45327f4ff285a1d71b0b215bea4801da2546a855de8f3cf6ff661e43a52b
|
|
| MD5 |
4718bb86fc6d09deee7c6ca9c60e0ddf
|
|
| BLAKE2b-256 |
c8dc4269e869f81d25379c7de18ff661f79341e6fee0ca79b302e36c1afb4d8c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
08af45327f4ff285a1d71b0b215bea4801da2546a855de8f3cf6ff661e43a52b - Sigstore transparency entry: 995173997
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.0 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 |
f91889aad0eb4e45b67b83576f3b28d4d8f2c3adc0a52c05dfe17d851c37bcb7
|
|
| MD5 |
1b8197f2261bf2d4b1113c21f7a61880
|
|
| BLAKE2b-256 |
03c0bcdec445015f9a8695d572eb958950b072932d1e2027b207499263d71f76
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
f91889aad0eb4e45b67b83576f3b28d4d8f2c3adc0a52c05dfe17d851c37bcb7 - Sigstore transparency entry: 995173860
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 734.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 |
f31f4bc477ba0fa14df7921feddc5024efc2cfa1eda349ce5ded314ac0230df5
|
|
| MD5 |
f2854624507ed1d7ec45e5f1c7b29ca7
|
|
| BLAKE2b-256 |
cf5b10e7ba643b713678fd632cb620340f90b289d708dfae9eb33ed5ba9a31ae
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
f31f4bc477ba0fa14df7921feddc5024efc2cfa1eda349ce5ded314ac0230df5 - Sigstore transparency entry: 995173866
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 636.8 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 |
28c25e1063e977ea202d8e658042d52cf832a35d8087bfc0e22a3466522c5c73
|
|
| MD5 |
d5a43345a79c86300ce5fc01656956da
|
|
| BLAKE2b-256 |
5ec5f6f5571ace4274f3887cbb9296ea80a66ee4d8ba171affcf3d57272794d6
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
28c25e1063e977ea202d8e658042d52cf832a35d8087bfc0e22a3466522c5c73 - Sigstore transparency entry: 995173831
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 526.2 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 |
386e9a963447bfd2ef8c729ed05a1590983b9b015118e7230cc8c580b7d49de4
|
|
| MD5 |
706b3ea99ecdb979f4aa9aacdf6ae5cc
|
|
| BLAKE2b-256 |
31f010855ce88038f953163155fff30acdf99e148a10100b3a031e4e9871a6bc
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-manylinux_2_28_s390x.whl -
Subject digest:
386e9a963447bfd2ef8c729ed05a1590983b9b015118e7230cc8c580b7d49de4 - Sigstore transparency entry: 995173861
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 519.8 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 |
e900981116b2fd59b960646443185830daaf6a683d6a7a70339de26a0e017cef
|
|
| MD5 |
77b19e6de5a7b335e756c76782661c4f
|
|
| BLAKE2b-256 |
3fa686a5f7ad289ade576bca3d1646af11d9643be9e717e467dac70e9f43f422
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl -
Subject digest:
e900981116b2fd59b960646443185830daaf6a683d6a7a70339de26a0e017cef - Sigstore transparency entry: 995173874
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 454.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 |
6c8a67c02e6dcbcceb69d84251594fc59e5d25a0fb5b6fc3fe7d8a4b8f2c5f22
|
|
| MD5 |
751b638931f6f78faf1bf3ebc28d1c13
|
|
| BLAKE2b-256 |
373c9389e08b56aa7508d5cdbb8d4655b277177966ec57c94276483fd6193e17
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl -
Subject digest:
6c8a67c02e6dcbcceb69d84251594fc59e5d25a0fb5b6fc3fe7d8a4b8f2c5f22 - Sigstore transparency entry: 995173779
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 451.8 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 |
a34325302864f8d78a76467debb84157ed9a07182e99a368976ccc1d5affe0f8
|
|
| MD5 |
0bb46a8f247654f96cac1b67fa333cbd
|
|
| BLAKE2b-256 |
dc4d1d5eefc52517da3ec98f0ae55b87868ccc05194ab3d1faf791e4daf274b4
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
a34325302864f8d78a76467debb84157ed9a07182e99a368976ccc1d5affe0f8 - Sigstore transparency entry: 995173979
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 364.2 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 |
45892c2669b8fa87c87b130859fe2de35b82b8a8fc1a736c0b61b552e73fbade
|
|
| MD5 |
5a611030d2ca1c7db1441b3b9cb6e9c4
|
|
| BLAKE2b-256 |
833bc019d1dd770bbed4f814f4aa2c8b420a63306e2f38a353ccf1e5d6a88118
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-win_amd64.whl -
Subject digest:
45892c2669b8fa87c87b130859fe2de35b82b8a8fc1a736c0b61b552e73fbade - Sigstore transparency entry: 995173814
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-win32.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-win32.whl
- Upload date:
- Size: 348.6 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 |
dd6050bb26fb30a2ec7dbc627e256759d827e65c13fb68c629d91a38cdf090b4
|
|
| MD5 |
e6c7619dec882f0d8b6985adb5cfd2a7
|
|
| BLAKE2b-256 |
46ff3efb4a3f5c95fdc87c4297d2d80aa5682e89093bcf426f4af34e5bea3243
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-win32.whl -
Subject digest:
dd6050bb26fb30a2ec7dbc627e256759d827e65c13fb68c629d91a38cdf090b4 - Sigstore transparency entry: 995173977
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 695.3 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 |
6f2500b6402bd33757dabf19cefd3c972f9e6f15df3da0f6cf7b18287e717084
|
|
| MD5 |
b4345c06e04c8116338be3844f7f3819
|
|
| BLAKE2b-256 |
5e2bc5a4af1c5bcd921005f1b750697011d5cf32586e9bdeaf18321350c7d0dc
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
6f2500b6402bd33757dabf19cefd3c972f9e6f15df3da0f6cf7b18287e717084 - Sigstore transparency entry: 995173941
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 725.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 |
93b67f3957807f796e25b7416bb37a0a4fd031e29bd7fce7069c844adc8fe9c3
|
|
| MD5 |
2ab5c8583c4cd276cc96258473afe3a5
|
|
| BLAKE2b-256 |
af51f595a29f29979246ca855cc82745c9d20d6633217d88693296617185da2b
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
93b67f3957807f796e25b7416bb37a0a4fd031e29bd7fce7069c844adc8fe9c3 - Sigstore transparency entry: 995173836
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 735.5 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 |
826b4cae180e897a40c7ca5997e9c03545f2e5f0f3dc98b64d0a0a5bbdbb4a53
|
|
| MD5 |
155bf420d2aa6344641d9e529761767e
|
|
| BLAKE2b-256 |
77c79319bd985619740c24e5a7124f6e7ba791e66078c6d630949bdbfc7c5ea0
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
826b4cae180e897a40c7ca5997e9c03545f2e5f0f3dc98b64d0a0a5bbdbb4a53 - Sigstore transparency entry: 995173963
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 639.2 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 |
d31119ce18e07717b862652c5e299e69b8ab014aab83db80bca98748126e8569
|
|
| MD5 |
24f464bbe698a4a3ff6090445dcdd874
|
|
| BLAKE2b-256 |
b564856a95e1048303888489b86910fb18974ad6b2a7217a56c9ab7ec1dd4adc
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
d31119ce18e07717b862652c5e299e69b8ab014aab83db80bca98748126e8569 - Sigstore transparency entry: 995173816
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 481.6 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 |
a59c80199ab885b50fbf804f96102954a540ef866c1cb10bb66001aceda1590b
|
|
| MD5 |
efef47e8ed937e25196cd6d608c80614
|
|
| BLAKE2b-256 |
f20a87ace3f3ddcbe740062a9e90abca70c1093981aa2a3fb31c5e0f82736f2c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
a59c80199ab885b50fbf804f96102954a540ef866c1cb10bb66001aceda1590b - Sigstore transparency entry: 995173889
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl
- Upload date:
- Size: 528.9 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 |
821f338ca02d00d29705d4ba93246cfa91fcc838e6b1f9e00af51c6c0c1baf8b
|
|
| MD5 |
2d61b641ccc277b5abfb495ed32740eb
|
|
| BLAKE2b-256 |
0ebaff5a24ac5116c1a3ab50a8f21f15a6f631076363d77271304caf550e723c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_28_s390x.whl -
Subject digest:
821f338ca02d00d29705d4ba93246cfa91fcc838e6b1f9e00af51c6c0c1baf8b - Sigstore transparency entry: 995173923
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 520.7 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 |
da501116ba64ef7907b499ecceb987959812eab8afb74d5585437d9d149a55ab
|
|
| MD5 |
1edd64f1238125221907db872b25df7c
|
|
| BLAKE2b-256 |
8d5026ce644b900c5978d8f70be5542f50f1a8a213cb7a92797f3745b58db609
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl -
Subject digest:
da501116ba64ef7907b499ecceb987959812eab8afb74d5585437d9d149a55ab - Sigstore transparency entry: 995174018
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 455.5 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 |
1f9dc9c34fb537b0e3603754e5b2fd12828b9cc50be965eb806c70fc3ba12601
|
|
| MD5 |
5bd9eb1568217c5ecbd34d1f8b092a8e
|
|
| BLAKE2b-256 |
dba45c05d89627bca269bf512a9549e4b8f6922d77ae73d3bdd3138b16356216
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_28_armv7l.whl -
Subject digest:
1f9dc9c34fb537b0e3603754e5b2fd12828b9cc50be965eb806c70fc3ba12601 - Sigstore transparency entry: 995173911
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 455.2 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 |
4b8fff4c010bfdb39208132416f7f82716b878ec4d4fd3c50c49068ed564af67
|
|
| MD5 |
d1997271b9c64ab5d66b10644b7b298c
|
|
| BLAKE2b-256 |
0742348bb1311806fcdb4534be000cbf23320acf8227b8e758f30dd1f92a0125
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
4b8fff4c010bfdb39208132416f7f82716b878ec4d4fd3c50c49068ed564af67 - Sigstore transparency entry: 995173995
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 510.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
954cb3a037749169028bda2dd441e90108679b64f9745c9684384000c673b75b
|
|
| MD5 |
9488de707bd9d1f3c692055ba5f1bcca
|
|
| BLAKE2b-256 |
1a932c403bc5a526a0fdaab4008e38095f4d931d9d5d928cf33023dd01da6b6e
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
954cb3a037749169028bda2dd441e90108679b64f9745c9684384000c673b75b - Sigstore transparency entry: 995173913
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.6 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 |
48a36aba3dce6c889895b65dc059a6a80965196853decafa67437f92c1fd6774
|
|
| MD5 |
c38655e940d77e888b4882797da08194
|
|
| BLAKE2b-256 |
9c2855c532f6cb929f0d307c1945cca012cf404668c0d47b5320fc03abc2432f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
48a36aba3dce6c889895b65dc059a6a80965196853decafa67437f92c1fd6774 - Sigstore transparency entry: 995174004
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 452.1 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 |
dad47a777ac4252e653e1168dee134cfa9deb2cf45eeb24815a7048d3d34a8ac
|
|
| MD5 |
7190af4ab9866bc7da9323334fb24f05
|
|
| BLAKE2b-256 |
d8b1c324c94812f78aeff5a32e4ddffbc822ec4b49861274c282fc42be285df7
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
dad47a777ac4252e653e1168dee134cfa9deb2cf45eeb24815a7048d3d34a8ac - Sigstore transparency entry: 995173820
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 695.8 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 |
e70ae71d47058c96d4aff3ab759a44e9cf53e140ae0a1724e2cb595a44ac22d5
|
|
| MD5 |
374414ae8eaa7110123ad692c3396253
|
|
| BLAKE2b-256 |
4b2e3a23772e0adc435de0773211689a074f0d7315c8bbcdc626eea162b66959
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
e70ae71d47058c96d4aff3ab759a44e9cf53e140ae0a1724e2cb595a44ac22d5 - Sigstore transparency entry: 995173797
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.6 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 |
2f94360ab1f7cb4e3a8af961438fbbc0cf11c02afaf409fb0c817e3dff807fb6
|
|
| MD5 |
28b0e33ff575ee4b2668dd8114b562b0
|
|
| BLAKE2b-256 |
610c50e34dcb85b168f2eb804dd301951df1315bac604350d0ed2935d43d1593
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
2f94360ab1f7cb4e3a8af961438fbbc0cf11c02afaf409fb0c817e3dff807fb6 - Sigstore transparency entry: 995173809
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 733.5 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 |
ae379f8157e59714bc28467ec3ab909d3852d1936a37ebf0fd1c2d6c85f2be73
|
|
| MD5 |
acae621e99722c5486c7f1d8a12a1935
|
|
| BLAKE2b-256 |
cb351e77b8ae13418edee766fb66a06198368f5cebdbc105bc48c0f5ff1248d6
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
ae379f8157e59714bc28467ec3ab909d3852d1936a37ebf0fd1c2d6c85f2be73 - Sigstore transparency entry: 995173909
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 640.2 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 |
544233ac040b2adc9af56a44608e877080170dcba0201b6801cd194ba0c0b4c1
|
|
| MD5 |
0e96d87707d9088da10c19fcfb2897a0
|
|
| BLAKE2b-256 |
bbf4abf2f58c46d32bfaec206940fdbaca9f886a17ea9718a98246fa1827a63c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
544233ac040b2adc9af56a44608e877080170dcba0201b6801cd194ba0c0b4c1 - Sigstore transparency entry: 995173953
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 529.7 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 |
9bf972c702f6c60fbe6712cebd534e4caee1cd9d51ba1c137857883a50d68289
|
|
| MD5 |
d50fb0441fc8a1e9ed1aad9edaf4816b
|
|
| BLAKE2b-256 |
c4bd75411e23112d197264f7d17b31b25c1ae7fca096510cc21f99813f91f5cc
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-manylinux_2_28_s390x.whl -
Subject digest:
9bf972c702f6c60fbe6712cebd534e4caee1cd9d51ba1c137857883a50d68289 - Sigstore transparency entry: 995173885
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 521.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 |
f69cc633b2b674414db8fa478164a7398427e436427f28a3194a07e0ffc9bcb5
|
|
| MD5 |
c9b35f3fe769826b90234bf993c02da2
|
|
| BLAKE2b-256 |
d6f74e594eb782d0c5c7ddd78a025a62ef42b61f888ebfb373fb57324342db8c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl -
Subject digest:
f69cc633b2b674414db8fa478164a7398427e436427f28a3194a07e0ffc9bcb5 - Sigstore transparency entry: 995173837
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 454.2 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 |
d18f1dc2509b5d5856c404e173950a3478f64c97a7662442db905e38f926e99a
|
|
| MD5 |
10780620b46db0e795d835dc2911e0bc
|
|
| BLAKE2b-256 |
356b248bb7d6e03707bcece072b56e2f16a857f3a4596b3d15485d3def0da44d
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl -
Subject digest:
d18f1dc2509b5d5856c404e173950a3478f64c97a7662442db905e38f926e99a - Sigstore transparency entry: 995173903
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 454.7 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 |
ab2c05e8583191e2ba1252fc901f65c8c85dfc580c10c2500db536dd675efb9b
|
|
| MD5 |
ec7ae418a3313d7f047819a1a0c98968
|
|
| BLAKE2b-256 |
5fbc87764f7b6af63a6b7cb7035c164a63f7a5075e95147e9648c03a0af600ff
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl -
Subject digest:
ab2c05e8583191e2ba1252fc901f65c8c85dfc580c10c2500db536dd675efb9b - Sigstore transparency entry: 995174033
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 366.4 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 |
b5e0dc4ef550e478a3b99ba6bae41a5ff7167d56ae7953d56c6018e290ed2e84
|
|
| MD5 |
7702bc95eb2a6c1f7f3d60cd78c57dc7
|
|
| BLAKE2b-256 |
8ffff4ebb23d49c672d683d4a8f3d843e0a60c54c854b13844e52b22294d18a1
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-win_amd64.whl -
Subject digest:
b5e0dc4ef550e478a3b99ba6bae41a5ff7167d56ae7953d56c6018e290ed2e84 - Sigstore transparency entry: 995174011
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 697.1 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 |
02689f9986ab08cc66a41946c5a65053d3ce0feccd5a67e7d0e8b66844c116f3
|
|
| MD5 |
689b434fe44b1afdc8d0bb2eff3ba8ba
|
|
| BLAKE2b-256 |
108564515ff622060982f6d5adf9b0e44ac43a624048e9a479c31e222ee262e6
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
02689f9986ab08cc66a41946c5a65053d3ce0feccd5a67e7d0e8b66844c116f3 - Sigstore transparency entry: 995173918
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.0 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 |
73d55c5d36be331f4525cc0eb4beb7257f0b547494214d326bf9d433adb64f3e
|
|
| MD5 |
1eae90ee823cea7385d681befeaeea61
|
|
| BLAKE2b-256 |
13c0c1dda8e5a09071cae0fe4e8971a66c4f1e70a92cc690e242e4c1bfd866f1
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
73d55c5d36be331f4525cc0eb4beb7257f0b547494214d326bf9d433adb64f3e - Sigstore transparency entry: 995173892
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 735.4 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 |
0e69386f238a59f265bb14ca02b0957d468229b41893ef94d21701fd549c0c51
|
|
| MD5 |
9a7830973d18e04f7a168b03c3664984
|
|
| BLAKE2b-256 |
86821f8f0f3e0771fb6cdd66b279afbd405ee78fbba0a633c6bfda146e758a2d
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
0e69386f238a59f265bb14ca02b0957d468229b41893ef94d21701fd549c0c51 - Sigstore transparency entry: 995173871
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 641.5 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 |
4427c1edec090a394b498b84ac03db72bd3e8e4e59079369fbe21bc4d1857564
|
|
| MD5 |
7cae9a5e22cbb5674c2bfba054cea8a2
|
|
| BLAKE2b-256 |
cb19a957a5e87c6205ff9a31c9c69e02aafd6c85e3666782391c0a9bae1ee610
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
4427c1edec090a394b498b84ac03db72bd3e8e4e59079369fbe21bc4d1857564 - Sigstore transparency entry: 995173986
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 483.9 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 |
1ae8f2f68925fd7bf12906bc9b854d2e71b19d867a729b16d7d0fc88cc675fd8
|
|
| MD5 |
a10367da61a1c3546d81a20c70670b9a
|
|
| BLAKE2b-256 |
4f6f08788d4b5a83aeb99167069d7a4af9f601da2ca0919fea2feba0451a35f7
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
1ae8f2f68925fd7bf12906bc9b854d2e71b19d867a729b16d7d0fc88cc675fd8 - Sigstore transparency entry: 995173843
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl
- Upload date:
- Size: 533.8 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 |
e2db9ba70b11ba6dbafab21e96f053bbdbf6f12088cd46d896bdf426a113e448
|
|
| MD5 |
887d05b10e453d6f4c42c26d0698709b
|
|
| BLAKE2b-256 |
5dc2883e59ba4165257112a8fff74deed7f50ca9322fd3c63a9e4d52a1bc8ab8
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_28_s390x.whl -
Subject digest:
e2db9ba70b11ba6dbafab21e96f053bbdbf6f12088cd46d896bdf426a113e448 - Sigstore transparency entry: 995173805
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 522.7 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 |
034ac9608ebf69128e45136065d00b6235e7a21c27a86b611fc5551c21adc077
|
|
| MD5 |
36039ae76173f81f18b785d96fdefe07
|
|
| BLAKE2b-256 |
2d958099fd9e01d00f2840328b8fd1fc523e5a24cc390b390871a322355dbaac
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl -
Subject digest:
034ac9608ebf69128e45136065d00b6235e7a21c27a86b611fc5551c21adc077 - Sigstore transparency entry: 995173943
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 455.2 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 |
c5d9f23ff1f0615f66e97d9a43d7d40312085b2132d0b7b94d7443c0f9c3845b
|
|
| MD5 |
8739bc7963a4ad306650ad03233b84e0
|
|
| BLAKE2b-256 |
9bdc6e423da40432c0801338bc888d4df160dafccf26017d2997b98116be2a8f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_28_armv7l.whl -
Subject digest:
c5d9f23ff1f0615f66e97d9a43d7d40312085b2132d0b7b94d7443c0f9c3845b - Sigstore transparency entry: 995173897
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 457.2 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 |
d5fd4cfbd58e8ffa2abef027a1b0f82306bb1fe54c2e38c903aed198cc697059
|
|
| MD5 |
04c075799100f1e66948fce339a4ce2d
|
|
| BLAKE2b-256 |
04d61085f3d1bc9739df6f0b35bed5bbbb0313c8c053b2b14f53e1a554e255d9
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
d5fd4cfbd58e8ffa2abef027a1b0f82306bb1fe54c2e38c903aed198cc697059 - Sigstore transparency entry: 995174009
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 510.1 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 |
3d4e7d9e2c30eb976c71db761d763dc2eac7949d13701eb1d9ba4bfbe00a05a1
|
|
| MD5 |
eac0c700c564f2b9576c9dde1263b0e8
|
|
| BLAKE2b-256 |
4c9f207133902f96cd1d907ab1aef5485304438a91eca6f53a1d81035d0a37d1
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
3d4e7d9e2c30eb976c71db761d763dc2eac7949d13701eb1d9ba4bfbe00a05a1 - Sigstore transparency entry: 995174025
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.2 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 |
b7285e5202dd8b40c90dd16550158c353ef87849acebeb690349ef5ace30e621
|
|
| MD5 |
c3f6a33ebf795309893e7f585e2ec162
|
|
| BLAKE2b-256 |
f5d29cafab54764f424d842647be7b5af2c7ba916109f1a77c465ef4ce2a4ae6
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b7285e5202dd8b40c90dd16550158c353ef87849acebeb690349ef5ace30e621 - Sigstore transparency entry: 995173802
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 451.0 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 |
f025dd50d612f349a144fd8e2ed003cec67ac41e8338f6c34f614ce01eccc096
|
|
| MD5 |
e91714b5cf9e70785de73ae37de8e76f
|
|
| BLAKE2b-256 |
7f44a3e7ff6d4c50b70dc76b0abc1a4c3fd44e8d9ad3c5f030206b498a40fbb9
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
f025dd50d612f349a144fd8e2ed003cec67ac41e8338f6c34f614ce01eccc096 - Sigstore transparency entry: 995174020
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 366.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 |
543f28a3d3b1023575f9e74af6265f2f6b71e750ee4615860fee2c89293fff52
|
|
| MD5 |
e8e40735e86019bca85d4b17827d447c
|
|
| BLAKE2b-256 |
e85df31c5a10197fe25a0302733207c9b2ade5a034a5f64ff35fc542b5f4508f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-win_amd64.whl -
Subject digest:
543f28a3d3b1023575f9e74af6265f2f6b71e750ee4615860fee2c89293fff52 - Sigstore transparency entry: 995173990
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 697.3 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 |
5571b394c2279fda77ffdc81f9377ca8b3bb5e7366e401c7d4fbb98319290685
|
|
| MD5 |
feefc843248e4dcfa1b649f233ce061c
|
|
| BLAKE2b-256 |
8a7b3bb2b6cf06dc9224a24c20ba2d125efe98289f0d7a1297211304a6eee674
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
5571b394c2279fda77ffdc81f9377ca8b3bb5e7366e401c7d4fbb98319290685 - Sigstore transparency entry: 995173895
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.5 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 |
639a7b02b4298964cee59ffe38fbd2962c22b0e3e32bbe8da748704b3ce5e0f3
|
|
| MD5 |
f541ed980f614fa8d4de42cf3ebb4ce1
|
|
| BLAKE2b-256 |
f08bbb3163b7e748ecedfe0c5af2be53aa42811dfabd9d66ea5b2ac04a576f26
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
639a7b02b4298964cee59ffe38fbd2962c22b0e3e32bbe8da748704b3ce5e0f3 - Sigstore transparency entry: 995173854
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 736.0 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 |
164f55fdb3b34cc27ca334490beab651386a79893953943490d60ecc3d0d07ab
|
|
| MD5 |
1730a2eac08d57d2521081256a9dcea1
|
|
| BLAKE2b-256 |
04132d24842b5971c9e764c941d1eaffa73a3f79aafbb99e8655e14fd8995548
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
164f55fdb3b34cc27ca334490beab651386a79893953943490d60ecc3d0d07ab - Sigstore transparency entry: 995173916
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 641.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 |
d55b36cc77a3ab6418242d95f31a6810dce62c8f57ccf9ebcbcd8c05494cc1f2
|
|
| MD5 |
4c333da6b496c23778165dbba80ca284
|
|
| BLAKE2b-256 |
b5a94ce6bf4b2741eeaf9f8528d389cc8dbde6898d883ad5eca07a7d01789720
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
d55b36cc77a3ab6418242d95f31a6810dce62c8f57ccf9ebcbcd8c05494cc1f2 - Sigstore transparency entry: 995173962
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 484.0 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 |
00f7182ef5f8ec0325f7fe4987d1daaabfe089c2b94c86645eedfc2a5f1cb585
|
|
| MD5 |
888791be44b17ba3274afe96d6f4910b
|
|
| BLAKE2b-256 |
03f5d980f4e0ce575258bbf713951e6769d8d37058a978284d0eb7ffff3b276f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
00f7182ef5f8ec0325f7fe4987d1daaabfe089c2b94c86645eedfc2a5f1cb585 - Sigstore transparency entry: 995173955
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl
- Upload date:
- Size: 533.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 |
e5664883090687d9c782b8344e164755909b7bd0bf8efab0c9c3c16e0bfee8fd
|
|
| MD5 |
48bb12d7c84cb1002001d6473e75f79f
|
|
| BLAKE2b-256 |
1f257e6acffcc33ab91a44577a73e68082688bba7ff943fdf1c14df28070e8ee
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_28_s390x.whl -
Subject digest:
e5664883090687d9c782b8344e164755909b7bd0bf8efab0c9c3c16e0bfee8fd - Sigstore transparency entry: 995173785
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 522.9 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 |
27f3d98e4e099550d7ad6926d18c9a8faa31edea0426c57b26ccf018aef95e91
|
|
| MD5 |
917fec668891964d03a6d3d783840369
|
|
| BLAKE2b-256 |
f3e4520d54603e2f2e49533b0f8917dd7c67c3ea9e4c4eed282ee0b5337e9e72
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl -
Subject digest:
27f3d98e4e099550d7ad6926d18c9a8faa31edea0426c57b26ccf018aef95e91 - Sigstore transparency entry: 995173825
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 455.7 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 |
c972647a17f3cfb31520fd9d651f78032fe26645bdee9b3af62c206ee3321609
|
|
| MD5 |
4ed19d800503386f023f1e4892ab543d
|
|
| BLAKE2b-256 |
ecf04ec28c62855af9604de84d10a85712db030f9048312ccbd02330103d1e90
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_28_armv7l.whl -
Subject digest:
c972647a17f3cfb31520fd9d651f78032fe26645bdee9b3af62c206ee3321609 - Sigstore transparency entry: 995174000
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 457.4 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 |
83dd127cdb4d2dc968bd7a3bb12cc392262901a7adc08ae7842b66d51c92d1fa
|
|
| MD5 |
cc39b042c0697da4d05308031d4afce8
|
|
| BLAKE2b-256 |
f78a3fe97a0934c496719ca70c275d8cf3469a8fbe7e9ff7b9b1164f2c4ace0b
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
83dd127cdb4d2dc968bd7a3bb12cc392262901a7adc08ae7842b66d51c92d1fa - Sigstore transparency entry: 995173799
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 510.8 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 |
3deefb0d946503bf474a95f7beaa87bf688ec2844363135edfaaaafccc1ad793
|
|
| MD5 |
ee3fa17a13a0d7450a1ddd383f7722ea
|
|
| BLAKE2b-256 |
b15a565c93787035d1225a979f545161bb5282bb74cc61ce9c08eb6e2c6497e3
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
3deefb0d946503bf474a95f7beaa87bf688ec2844363135edfaaaafccc1ad793 - Sigstore transparency entry: 995173915
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 417.5 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 |
d22fc7c4386d175c1d3905d94d788b801e140fc2bf1061576bd835e885c4c820
|
|
| MD5 |
da629be00432bba8c492b289ca556d5d
|
|
| BLAKE2b-256 |
0e890dc9ae8b503d42f220b587884b1eb9ef3d5b3eb583e3dd10954e0787db0e
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
d22fc7c4386d175c1d3905d94d788b801e140fc2bf1061576bd835e885c4c820 - Sigstore transparency entry: 995173888
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 451.3 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 |
dc1badb85ea7e5b462a98e24d45eaf8826f134f8594218803a143b2316104a81
|
|
| MD5 |
0200e1fc15414243b03e0165a3f94ee5
|
|
| BLAKE2b-256 |
551fbe905b681d7926f1ee07d9f11d381f83db3e152f6b6fba8468413bf109ca
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
dc1badb85ea7e5b462a98e24d45eaf8826f134f8594218803a143b2316104a81 - Sigstore transparency entry: 995173850
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 362.8 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 |
59cf491ba7cca4439c28d3664fc721816f5435a30152e9885012e38a03dad6df
|
|
| MD5 |
6b7254b683b46d8bd858f194133c40e3
|
|
| BLAKE2b-256 |
32863cdc79ebddf157d32d8875fcbde2fce1d9d49897cd858d11b943908c7516
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-win_amd64.whl -
Subject digest:
59cf491ba7cca4439c28d3664fc721816f5435a30152e9885012e38a03dad6df - Sigstore transparency entry: 995173806
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 694.2 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 |
7f98eead2f4de89e325345781f57a5041efce97123fec756ad2dc47dc9de2d64
|
|
| MD5 |
495e81fc64d5192232c494510ff09c52
|
|
| BLAKE2b-256 |
da50d14cf1853b55c47585f26aa881c683e7f8d4bcc1e2f2cfdaebede984238f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
7f98eead2f4de89e325345781f57a5041efce97123fec756ad2dc47dc9de2d64 - Sigstore transparency entry: 995173858
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.4 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 |
36a5ac6e5f70f738554cf45d6e4a00a9f2bfedd96e35b002c9325156f74a2923
|
|
| MD5 |
7c47ccf85116637b601b48db75f0bca1
|
|
| BLAKE2b-256 |
34afd9a1432ccda4ddef2d16a00f4eef9549dd96c6ba9055343faf004c763865
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
36a5ac6e5f70f738554cf45d6e4a00a9f2bfedd96e35b002c9325156f74a2923 - Sigstore transparency entry: 995174029
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 737.4 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 |
31f9b4a2dc10c4557f1dd5267df22097713679b02cd84b098cb315b98619b602
|
|
| MD5 |
fd942f3d63f048a1952284cd09888dd7
|
|
| BLAKE2b-256 |
9d4f607bc0e06e90ed5fa8127140105cb4ddf3e63fe2bd668d4d5591becd80c1
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
31f9b4a2dc10c4557f1dd5267df22097713679b02cd84b098cb315b98619b602 - Sigstore transparency entry: 995173931
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 640.9 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 |
b034b470b65b39bad3a4270b8bc07408fcdd9aff4027f965d006a349dbf3160c
|
|
| MD5 |
c1ab291e99359daf385233502eceadb7
|
|
| BLAKE2b-256 |
f93049dd2118b067e2dc00be990f0cafbdd3a66022580099f002c0b8aa53ed33
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
b034b470b65b39bad3a4270b8bc07408fcdd9aff4027f965d006a349dbf3160c - Sigstore transparency entry: 995173992
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 480.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 |
86ff1ff8b38898ea9708301bb90ce9f98ee58fc9dc2570e29ae4a0a38eec533d
|
|
| MD5 |
3b7c810a8c4c8b2e7770329a638e92b2
|
|
| BLAKE2b-256 |
acd531b1d843e9194c522c7af71116adf27fbe278baf570d11fcfc029d82235f
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
86ff1ff8b38898ea9708301bb90ce9f98ee58fc9dc2570e29ae4a0a38eec533d - Sigstore transparency entry: 995173956
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl
- Upload date:
- Size: 529.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 |
e4fe95e43d566c2bfc39a2dbecd67ebce54b760fd5d553f01ae200f048e31f0b
|
|
| MD5 |
79804d355aac8b8f959b014f0df2957c
|
|
| BLAKE2b-256 |
0dc31e34198115957a768a8c35eb8fafa87a29efabfce9cd54bb364e4637d535
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_28_s390x.whl -
Subject digest:
e4fe95e43d566c2bfc39a2dbecd67ebce54b760fd5d553f01ae200f048e31f0b - Sigstore transparency entry: 995173938
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 523.0 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 |
3d314029eeb70036b6ac7a039504f7851ee48236857b17d2d9a0e01edc7afc52
|
|
| MD5 |
88d110d15dec31a8ce24f76fe8d34bfa
|
|
| BLAKE2b-256 |
54afb187017fcd57337dee4b412b2123000bea5cf26cc1623241fcbd0bd965dd
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl -
Subject digest:
3d314029eeb70036b6ac7a039504f7851ee48236857b17d2d9a0e01edc7afc52 - Sigstore transparency entry: 995173945
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 457.6 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 |
e972fbc9456cdbab6512c97071567c9db6fab3a496b5ab4e7bb5c2c94b092928
|
|
| MD5 |
787d01e5d464c3572aa24471d0406c13
|
|
| BLAKE2b-256 |
45b40e3cb439ebd835ede530ab3a25a9079a081d8f99c1a62d178925ebbf9b62
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_28_armv7l.whl -
Subject digest:
e972fbc9456cdbab6512c97071567c9db6fab3a496b5ab4e7bb5c2c94b092928 - Sigstore transparency entry: 995173795
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 456.1 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 |
52572b1117692eec19d80940375f529127b723777044c11b6ad23677e6f41354
|
|
| MD5 |
997c38d38622654e001b2ee117d3866d
|
|
| BLAKE2b-256 |
d99bfed1c3449d4820ad0d2bf49a055c651c3f8983d69f3fd401cd59d2114ef6
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
52572b1117692eec19d80940375f529127b723777044c11b6ad23677e6f41354 - Sigstore transparency entry: 995173847
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 511.4 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 |
ee4e66c22e9d5bf4eb26f10b31f3ec17a5dcbb4049112f0415296294050753d8
|
|
| MD5 |
b72a8608f22391a17c23aee7a09bb5f7
|
|
| BLAKE2b-256 |
807da418b4742fd859bc317235b8c9944673891ad60350e9c40ba82dcb2acc36
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
ee4e66c22e9d5bf4eb26f10b31f3ec17a5dcbb4049112f0415296294050753d8 - Sigstore transparency entry: 995173789
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 420.8 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 |
7347e0b7444cc6dd5067837086d10c517d4f0e0018af68ea9f0e5fa4b3c9c89c
|
|
| MD5 |
a8261a007d85e23191f4e8075a4fe0c4
|
|
| BLAKE2b-256 |
f3ea7dcb5be315a0a31ff6390e2de4533f1baa15ef6e0d49e9745da8fab6b5d8
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
7347e0b7444cc6dd5067837086d10c517d4f0e0018af68ea9f0e5fa4b3c9c89c - Sigstore transparency entry: 995173863
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 455.8 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 |
2674600259266fdf49f7ebfa1938a68afa4105c1e5ca65b4f958ddbf31e332db
|
|
| MD5 |
704512198c6d4a20dccafab8298dca04
|
|
| BLAKE2b-256 |
9a6ef956a19f48f3a3b5385777278b5d584197f6cd3e347f0e693cb7e9bc0c35
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
2674600259266fdf49f7ebfa1938a68afa4105c1e5ca65b4f958ddbf31e332db - Sigstore transparency entry: 995173934
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 362.7 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 |
713cffd952f65cd06ac26279321025012e3f6ac2f33d4361ee579610a3375cef
|
|
| MD5 |
d92bdf59efdf2c8fe6d6d9ac18b078e2
|
|
| BLAKE2b-256 |
74bdffa6dcf240ce01a6cd86e08b4e4e9c350e44e6df2c02c45e3b7eb5e240d0
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-win_amd64.whl -
Subject digest:
713cffd952f65cd06ac26279321025012e3f6ac2f33d4361ee579610a3375cef - Sigstore transparency entry: 995173948
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 694.2 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 |
7f73a112ff537fcd10ac2289e5f775e37bae9a8e7e0b1fed9b399c828264e239
|
|
| MD5 |
01a3160b3041caddb90912ec8300dfa2
|
|
| BLAKE2b-256 |
8d902a1fce42dd8cfe396be5bf30cee5daa922d187606ae05def9948dbadf7ac
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
7f73a112ff537fcd10ac2289e5f775e37bae9a8e7e0b1fed9b399c828264e239 - Sigstore transparency entry: 995173896
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 724.5 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 |
efafce870baf199c99ef438f6ea2c3920063994820ac90e5ab478befb44e274b
|
|
| MD5 |
6dbbb4ca76f852be8855f5de3886185b
|
|
| BLAKE2b-256 |
f840a49b3138422b7fc15094a2fc93bafa8643bb1314ef0580e364567ecb3435
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
efafce870baf199c99ef438f6ea2c3920063994820ac90e5ab478befb44e274b - Sigstore transparency entry: 995173796
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 737.5 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 |
f60d24d01af587b7a41b12c67d0e16a39f3f70b237585b19b60035bb09f6f810
|
|
| MD5 |
3afd7d252f90ec9557802201a6a3f7b6
|
|
| BLAKE2b-256 |
9134b6c8a182e60b621dd463ba5d60508ff6e13f16649f3aa1a54556b3d0dae4
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
f60d24d01af587b7a41b12c67d0e16a39f3f70b237585b19b60035bb09f6f810 - Sigstore transparency entry: 995173922
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 640.8 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 |
08ea9396f940ab39a648e7b5a5867446325c960b4dfc96b24415287d7de8d565
|
|
| MD5 |
a7b71620f7cd1f4c984f885e4bf89bbf
|
|
| BLAKE2b-256 |
422d450ae13ac28c120395f0bbde68d1caff6cddc155ac868c5dc2d34c8f34df
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
08ea9396f940ab39a648e7b5a5867446325c960b4dfc96b24415287d7de8d565 - Sigstore transparency entry: 995173782
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 480.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 |
79b79772d33a78983de41a33e3ed90ed4509bd0fa168c053d78c51ca1f4f0645
|
|
| MD5 |
c7ef6416eb0ecc8b31172724f6f0b852
|
|
| BLAKE2b-256 |
f16ccb8027e35d27b10b6c9e061ee87a23d5e71e183cb3005e7602d018771980
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
79b79772d33a78983de41a33e3ed90ed4509bd0fa168c053d78c51ca1f4f0645 - Sigstore transparency entry: 995173842
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_28_s390x.whl
- Upload date:
- Size: 529.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 |
a97e0e7622a2a24b8b16f738d84180febca68f338f2c7ae962239d1947a74507
|
|
| MD5 |
4d41ca212efe02a23eecfcc90ee3df2f
|
|
| BLAKE2b-256 |
6a7980f586bc60af1a3e50608220bdc49ed0411975781b1918fa5c4d4de1a100
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_28_s390x.whl -
Subject digest:
a97e0e7622a2a24b8b16f738d84180febca68f338f2c7ae962239d1947a74507 - Sigstore transparency entry: 995173845
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 523.1 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 |
09498cec8ebf0c50a8f234f35a5eda123cd563f8382d715b64508d0b82d0576b
|
|
| MD5 |
1b74a84470b9767df11c46ef54e6f3db
|
|
| BLAKE2b-256 |
88a3917eeea74de95ac4b65a68dbb6ab7849a916ff84916f3b524520a8800f41
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_28_ppc64le.whl -
Subject digest:
09498cec8ebf0c50a8f234f35a5eda123cd563f8382d715b64508d0b82d0576b - Sigstore transparency entry: 995173998
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 457.7 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 |
c90ea678673f0c93a6c45d94af8f07ada6c48ecc63f497e879b2c4076361696d
|
|
| MD5 |
f2631746d9aa49915ae732018c43c7a2
|
|
| BLAKE2b-256 |
74de00fccb00812df8c3ccc51a0a8b75ebcf1b54995ecfc26e5a717cc0d023ac
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_28_armv7l.whl -
Subject digest:
c90ea678673f0c93a6c45d94af8f07ada6c48ecc63f497e879b2c4076361696d - Sigstore transparency entry: 995173876
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 456.1 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 |
620ace0a9e4ade1f5bae84602712ef882c17c7522dc341741c3c89497731da76
|
|
| MD5 |
a971fb8e1cc50c3e6431538a65a041a9
|
|
| BLAKE2b-256 |
0dfeb1b2d68ceaf4021417a72603a7dd6cbb3320d0c6ffb507ac459c343fcfe5
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
620ace0a9e4ade1f5bae84602712ef882c17c7522dc341741c3c89497731da76 - Sigstore transparency entry: 995173983
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 511.5 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 |
ae15e20279f18f19c2ac93ef92011bc87fb310f80207699e7f46410ff047056f
|
|
| MD5 |
0ae59451beacec8557c88309c547eeb6
|
|
| BLAKE2b-256 |
df575aa23ed6fb6fe89c362a55d4272aa1e98b88fd0047c841b01fcec1d28a83
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
ae15e20279f18f19c2ac93ef92011bc87fb310f80207699e7f46410ff047056f - Sigstore transparency entry: 995173958
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 695.2 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 |
32bcda3bb483b6e45bc6aa3c74bccb5c406116932d69c29a946b26dd5470a5f4
|
|
| MD5 |
f3fde650977854d86ef9a2dcdf0107f0
|
|
| BLAKE2b-256 |
42f049ee7ffc80c7d82c64bbfd6aa0997d6305c6fc26e1d005599f51770b94aa
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
32bcda3bb483b6e45bc6aa3c74bccb5c406116932d69c29a946b26dd5470a5f4 - Sigstore transparency entry: 995173949
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 725.3 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 |
a2df4538653f61dc169189bbc66c97f15ae17a9989f09da4c90ae5305313d045
|
|
| MD5 |
3d95f08fc7a568814c49ab9f0e19cde6
|
|
| BLAKE2b-256 |
1480e45ea873714f4e1a52ea69ffa1711db6c2efdec3bcceb6d9b8f092b3eb30
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
a2df4538653f61dc169189bbc66c97f15ae17a9989f09da4c90ae5305313d045 - Sigstore transparency entry: 995174015
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 738.8 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 |
1eb11dca91281e495f8523d04b781d6e6eaf78eb892da5d470d2953c9d11f9e9
|
|
| MD5 |
996cf14fbb59c58e7d7a1f01ff4319d1
|
|
| BLAKE2b-256 |
cde620bcbc8fa53dccbcf99be15db85f24c5a4b3a6c36cd71246aa5f973d65d1
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
1eb11dca91281e495f8523d04b781d6e6eaf78eb892da5d470d2953c9d11f9e9 - Sigstore transparency entry: 995173828
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 641.8 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 |
1e53c776d856c8691975d357f2ecb3bd319921bee1500ffaf46674436f4b20bc
|
|
| MD5 |
8db94b512a73cf252b103aa2f38cfc59
|
|
| BLAKE2b-256 |
7fb98d515e8b356aacfa6799feeb0c6484e14bd1599eb233a0c1517a76e3d31d
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
1e53c776d856c8691975d357f2ecb3bd319921bee1500ffaf46674436f4b20bc - Sigstore transparency entry: 995173935
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 481.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 |
f136734f01baa990eb47bc4b093eee9ec2d6128f45f68398c933643548747a91
|
|
| MD5 |
e0e1ea450f7deac3ed56c96482a6bffd
|
|
| BLAKE2b-256 |
7f9a504ebc5f89a814121292c279b2a88ff6224e94c05a9247089782560f8b0c
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
f136734f01baa990eb47bc4b093eee9ec2d6128f45f68398c933643548747a91 - Sigstore transparency entry: 995173946
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_28_s390x.whl
- Upload date:
- Size: 530.2 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 |
759457ba07ef7f4938af2303b3a2a732349b4697ecba630e4c253601b993d519
|
|
| MD5 |
69f02f612e7d39441fb8be2c9cb25f2a
|
|
| BLAKE2b-256 |
56e3bac2274b17d1faeae65612d8ce563c6fa7bab6b66631c4ab152ebab0de5a
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_28_s390x.whl -
Subject digest:
759457ba07ef7f4938af2303b3a2a732349b4697ecba630e4c253601b993d519 - Sigstore transparency entry: 995173834
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 523.9 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 |
4196b8096cdada2a2e4050432fc46ca705de7afc1bdaff37b3558d27ba810a05
|
|
| MD5 |
2e65eed3bcf3fa42d9a85988ee7ed186
|
|
| BLAKE2b-256 |
2d35a521ab7be1da290566fcbd7d3d07b505899e35a32d49280c977402ced9cf
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_28_ppc64le.whl -
Subject digest:
4196b8096cdada2a2e4050432fc46ca705de7afc1bdaff37b3558d27ba810a05 - Sigstore transparency entry: 995173900
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 458.9 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 |
dc66195cd52e1ebfc3da737c008b5ead2e04ea2d46fc092cc80b0ac3f5beb414
|
|
| MD5 |
c4251c7a346a9ec4d993b321502bd232
|
|
| BLAKE2b-256 |
06e17a4d970288d7501a008b78e272f2c4c50b7244ce29511da7ea4ab52ae7d3
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_28_armv7l.whl -
Subject digest:
dc66195cd52e1ebfc3da737c008b5ead2e04ea2d46fc092cc80b0ac3f5beb414 - Sigstore transparency entry: 995174024
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 456.8 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 |
ec913d2ce75ec01a9edd721905e17195ca25ff0473cf8885f62e1a12bbb215b5
|
|
| MD5 |
cee9e3014b512d93690c32db52bb37e9
|
|
| BLAKE2b-256 |
c94d8ab1e24f527cb8ef42ad038b186b91d5c9b20ff6e3752f0d78597fc86d64
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
ec913d2ce75ec01a9edd721905e17195ca25ff0473cf8885f62e1a12bbb215b5 - Sigstore transparency entry: 995173988
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 512.5 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 |
476f2b14b461ab4c9a7521bf840ea9b5593db90ae814adf5dfcc2948e146bca5
|
|
| MD5 |
f9e50c57627bb44e6e619b3c050dfd5b
|
|
| BLAKE2b-256 |
924756ae3f2416531667510fc2f8c54e5fa5f0920df8bb59aa65905ae9dd673b
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
476f2b14b461ab4c9a7521bf840ea9b5593db90ae814adf5dfcc2948e146bca5 - Sigstore transparency entry: 995173925
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 695.4 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 |
67a4650867166e41e60288291f584763f21bdc7457340b372afd879d81a8aa6a
|
|
| MD5 |
c9c17f9bdb7ae1a0136450508a5cf45f
|
|
| BLAKE2b-256 |
794b1f7cad8b4228832ac6b4bd4b615c90c49ea30957eb2fc2d67cd9f0a489cf
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
67a4650867166e41e60288291f584763f21bdc7457340b372afd879d81a8aa6a - Sigstore transparency entry: 995173970
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 725.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 |
a539e71b2ca3a39e60ac2fa2ec032ccb06c1fcdaf300bef8d214ed94c255b404
|
|
| MD5 |
f28c29e2fd5914c561a5c6b83647fb8d
|
|
| BLAKE2b-256 |
370218ee356a05c55fd71dce6e11837b575077618da611f32fa107ffa94f1940
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
a539e71b2ca3a39e60ac2fa2ec032ccb06c1fcdaf300bef8d214ed94c255b404 - Sigstore transparency entry: 995174001
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 738.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 |
9290a5d32a5cccda895d0e6df8138da2dcad11732d3b93a83f2f1418f99c7d73
|
|
| MD5 |
de4c8ed32eb019cf60ae1fbba9016895
|
|
| BLAKE2b-256 |
18d3229e5af84325991f9de4f4714a84d7a465d372bd8e361926d3a55a209894
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-musllinux_1_2_armv7l.whl -
Subject digest:
9290a5d32a5cccda895d0e6df8138da2dcad11732d3b93a83f2f1418f99c7d73 - Sigstore transparency entry: 995173959
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 642.0 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 |
987c429a2f8c138214ac29e3c1ec47e8d51ce48da46f703017834484934ca5f9
|
|
| MD5 |
d16e2fdace2a38ba5e808924b0f8b773
|
|
| BLAKE2b-256 |
8fa3a1c49688c0a9e798122fa99fafd3aa716c42ec1a78622d104918a2ef9368
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-musllinux_1_2_aarch64.whl -
Subject digest:
987c429a2f8c138214ac29e3c1ec47e8d51ce48da46f703017834484934ca5f9 - Sigstore transparency entry: 995173884
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 481.5 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 |
20d83b789adc9ba5f435268c436f0c61fb7d4db02e1dfeb01d65928dc3fa4fad
|
|
| MD5 |
7d13ffbb2db276fa32eef50426aa0c7d
|
|
| BLAKE2b-256 |
87f7b8ebe09587449a7e89b13a76e09173ff522842cbee6dd4b2ee06a370d155
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_28_x86_64.whl -
Subject digest:
20d83b789adc9ba5f435268c436f0c61fb7d4db02e1dfeb01d65928dc3fa4fad - Sigstore transparency entry: 995173967
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_28_s390x.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_28_s390x.whl
- Upload date:
- Size: 530.5 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 |
a597c84000793655e9fc143473d95679e81982cb273cb2993935522762b19873
|
|
| MD5 |
29ea937150cbae9658f9e05efc2b4c3c
|
|
| BLAKE2b-256 |
c53de28cc060637b9ce876d1f5cde78e05570f5d784978dc7c02a60d0848c3d5
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_28_s390x.whl -
Subject digest:
a597c84000793655e9fc143473d95679e81982cb273cb2993935522762b19873 - Sigstore transparency entry: 995173865
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 524.1 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 |
48348396f7572b354f8553bebba98083a93b0047241e331ee55370030dfe87bc
|
|
| MD5 |
9042ab2ac474418e14c4b1da4a0ebcb8
|
|
| BLAKE2b-256 |
99a0f188f3c321562ea5ff233f699bd64dbc7f375b1f3ceff6748afd6f63e602
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_28_ppc64le.whl -
Subject digest:
48348396f7572b354f8553bebba98083a93b0047241e331ee55370030dfe87bc - Sigstore transparency entry: 995173813
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 458.7 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 |
0b64fc6ec0416d4c1815dc810a0fddbf03077c13d5fe2b0d288a0933a53fd766
|
|
| MD5 |
df8c5324196d2c0eb299aa9b99c327e8
|
|
| BLAKE2b-256 |
7a6723b935de849091ff36c7befa5f94ac4ee84c5b116913a2ad5e20283ad4d2
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_28_armv7l.whl -
Subject digest:
0b64fc6ec0416d4c1815dc810a0fddbf03077c13d5fe2b0d288a0933a53fd766 - Sigstore transparency entry: 995173776
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 457.2 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 |
0ec2842dd023c67950dae60c5bec191bc12eacfb73f469d234e83b38c452d2ac
|
|
| MD5 |
0831e8c83a3a56a9c244e69bb1193181
|
|
| BLAKE2b-256 |
49c610f1bb57b4fcd13551401339ecdfd6c46ab10ec33467b2b146623ec67629
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_28_aarch64.whl -
Subject digest:
0ec2842dd023c67950dae60c5bec191bc12eacfb73f469d234e83b38c452d2ac - Sigstore transparency entry: 995173952
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rensa-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rensa-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 512.7 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 |
88f66b3df61d0b7ac1bab00e5232f0b0668dac3dae8b6f4abc17ea805dcf53ea
|
|
| MD5 |
93565798f55fefc8a41200f76931c9c2
|
|
| BLAKE2b-256 |
04ce67eecc901714cf815adce84c74b8c97827309a320710af33687a55d0a564
|
Provenance
The following attestation bundles were made for rensa-0.4.0-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.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
88f66b3df61d0b7ac1bab00e5232f0b0668dac3dae8b6f4abc17ea805dcf53ea - Sigstore transparency entry: 995173906
- Sigstore integration time:
-
Permalink:
beowolx/rensa@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/beowolx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f293bf369f20ebee0f1d88c89332b34b18690d3f -
Trigger Event:
push
-
Statement type: