No project description provided
Project description
pylibsufr
Pyo3 bindings for the Rust crate libsufr: https://github.com/TravisWheelerLab/sufr/tree/main/libsufr
Implements the libsufr::suffix_array::SuffixArray API.
Suffix arrays can be created and loaded into memory, and used to retrieve various information about query strings.
# Create a suffix array and read it into memory
sequence_delimiter = ord('%')
seq_data = read_sequence_file("data/inputs/3.fa", sequence_delimiter)
outfile = "3.sufr"
builder_args = SufrBuilderArgs(
text = seq_data.seq(),
path = outfile,
sequence_starts = seq_data.start_positions(),
sequence_names= seq_data.sequence_names(),
low_memory = True,
max_query_len = None,
is_dna = True,
allow_ambiguity = False,
ignore_softmask = True,
num_partitions = 16,
seed_mask = None,
random_seed = 42,
)
suffix_array = SuffixArray(builder_args)
# Write a suffix array, then read it afterwards
sequence_delimeter = ord('%')
seq_data = read_sequence_file("data/inputs/3.fa", sequence_delimeter)
outfile = "3.sufr"
builder_args = SufrBuilderArgs(
text = seq_data.seq(),
path = outfile,
sequence_starts = seq_data.start_positions(),
sequence_names= seq_data.sequence_names(),
low_memory = True,
max_query_len = None,
is_dna = True,
allow_ambiguity = False,
ignore_softmask = True,
num_partitions = 16,
seed_mask = None,
random_seed = 42,
)
outpath = SuffixArray.write(builder_args)
assert outpath == outfile
# ...
suffix_array = SuffixArray.read(outpath)
Once a SuffixArray object has been created, it can be queried using the *Option types.
# Count the occurrences of queries in the suffix array
count_args = CountOptions(
queries = ["AC", "GG", "CG"],
max_query_len = None,
low_memory = True
)
res = [(r.query_num, r.query, r.count) for r in suffix_array.count(count_args)]
# Extract the suffixes matching given queries
extract_args = ExtractOptions(
queries = ["CGT", "GG"],
max_query_len = None,
low_memory = True,
prefix_len = 1,
suffix_len = None,
)
results = [(r.query_num, r.query, r.sequences) for r in suffix_array.extract(extract_args)]
result_seqs = [[(s.suffix, s.rank, s.sequence_name, s.sequence_start, s.sequence_range, s.suffix_offset)
for s in r_sequences] for (_, __, r_sequences) in res]
# Locate the suffixes matching given queries
locate_opts = LocateOptions(
queries = ["ACG", "GGC"],
max_query_len = None,
low_memory = True,
)
results = [(r.query_num, r.query, [(p.suffix, p.rank, p.sequence_name, p.sequence_position)
for p in r.positions]) for r in suffix_array.locate(locate_opts)]
See the libsufr docs for more information: https://docs.rs/libsufr/latest/libsufr
Project details
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 pylibsufr-0.1.7.tar.gz.
File metadata
- Download URL: pylibsufr-0.1.7.tar.gz
- Upload date:
- Size: 625.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51c1f4261d704e23c647782a567449f9b54fce35929ce52a589966f66419185e
|
|
| MD5 |
bb13ed0d4c0cda5f73ce568c548983f6
|
|
| BLAKE2b-256 |
8f699112f128ca1df1e4a5e67f3f0781e1171d00fbe44e558bb1f84a9f00a5c2
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7.tar.gz:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7.tar.gz -
Subject digest:
51c1f4261d704e23c647782a567449f9b54fce35929ce52a589966f66419185e - Sigstore transparency entry: 190344361
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb64b30c4ce84544640932c1284ab6022f71e60c919b648cb4c82f350734efcc
|
|
| MD5 |
23dc1be2089e8b78a97f4e1ac00a076a
|
|
| BLAKE2b-256 |
2b8097bb840dd621c64a1642edc82a0434bd0675ec2e35f71cf23840e8518a2d
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
fb64b30c4ce84544640932c1284ab6022f71e60c919b648cb4c82f350734efcc - Sigstore transparency entry: 190344519
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef036ff633c8e4196a992a24e2f359bd7f9a28a46f9ecdd2b4662c00fb81b687
|
|
| MD5 |
cdb0deed413f48aa5ffc4b82eba39ee0
|
|
| BLAKE2b-256 |
85ab99d6f1ff555fdc402fa45882192f22af1839c228548d35cadebfae10e3d5
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
ef036ff633c8e4196a992a24e2f359bd7f9a28a46f9ecdd2b4662c00fb81b687 - Sigstore transparency entry: 190344382
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f151c65451d199a564d0cba784b4f4ad216a36b4927e22cf7349fa2f23f600ed
|
|
| MD5 |
8253a285be621412e2d330ca91b2f8c0
|
|
| BLAKE2b-256 |
ee6fd386e49782fb3cc407793de6e02dcb5e24c114f1295cee3a8f66f6276bc4
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
f151c65451d199a564d0cba784b4f4ad216a36b4927e22cf7349fa2f23f600ed - Sigstore transparency entry: 190344530
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11a973dc49d3c5432008083db22bf1279ff2b4aff4af722fda65ea5f4d1a3dcb
|
|
| MD5 |
ddb9d5db89964c4c4b07b62c65010f4f
|
|
| BLAKE2b-256 |
c00347d5c18969a36338be4c38078d6ad8f6bb5f7250dae37d9a058462af2ac8
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
11a973dc49d3c5432008083db22bf1279ff2b4aff4af722fda65ea5f4d1a3dcb - Sigstore transparency entry: 190344454
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b71c151915ce24d52bffe95dcb1520059b82aad2c50c2da009d814befd3e348
|
|
| MD5 |
5c103bb7ed1ed0dc706809cb605f2851
|
|
| BLAKE2b-256 |
d9223bc3b0121d61ff366184263917a9372071e4cf17767af6c6442b4110bec9
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
2b71c151915ce24d52bffe95dcb1520059b82aad2c50c2da009d814befd3e348 - Sigstore transparency entry: 190344370
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
374c1842d95380a6bb8cc876965a4a6971c5c28f9bffdb1a455086344fe40c55
|
|
| MD5 |
f21303a426c8afd8c493ba04b4b9730d
|
|
| BLAKE2b-256 |
9ba44926354bfcfe6f9a6fba30366685b4b7c7cdc1ab9612f31b80eeb8dc9534
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
374c1842d95380a6bb8cc876965a4a6971c5c28f9bffdb1a455086344fe40c55 - Sigstore transparency entry: 190344632
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0945505486dadc87e842c99f5f3d89511ca1aadb73f54a20db4f8e7653c8cf3
|
|
| MD5 |
4f801758fb81260f9fd1bd351a206fb3
|
|
| BLAKE2b-256 |
550206389d35d8225c3534a4bc49572e90eb01d34926360fc7ef1165b1674f46
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
d0945505486dadc87e842c99f5f3d89511ca1aadb73f54a20db4f8e7653c8cf3 - Sigstore transparency entry: 190344461
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b049347d62759c7c2abf78644ca6d4a6389ddea73ebf4bd62c5578bf2b998e60
|
|
| MD5 |
efb44d20297be1ad93e0b8f345a5dc77
|
|
| BLAKE2b-256 |
41e4b91916aa4b8c1a650b761fb97530e7651cce4aed82138f95341bb98eaf2c
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
b049347d62759c7c2abf78644ca6d4a6389ddea73ebf4bd62c5578bf2b998e60 - Sigstore transparency entry: 190344610
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a54b9636ea885dec832e1641ad1c0129e488317d06b012109d0ce24e8eba381
|
|
| MD5 |
ba870e1fa8148722bf94321ff2eaf1af
|
|
| BLAKE2b-256 |
ee6b34da2965eeb34942066b78fdcfd5b9be0c2b03e1f99447126c25fccb4e8d
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
2a54b9636ea885dec832e1641ad1c0129e488317d06b012109d0ce24e8eba381 - Sigstore transparency entry: 190344492
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d91121a8310a9699b37f1f0f642e53db1834dcd698172cff4855a336a477111
|
|
| MD5 |
1bb3d0ace60e937b4fd47c47ff98a8d5
|
|
| BLAKE2b-256 |
265bdf4e49de4cf9fa82f285048f0a861268d0287ba339ecabbfac8d11c05560
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
6d91121a8310a9699b37f1f0f642e53db1834dcd698172cff4855a336a477111 - Sigstore transparency entry: 190344479
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ee0969b17f927dcf7a6b0139283a2daa32414e9ed4981d6e086b17815a64adb
|
|
| MD5 |
183b900b9c93e4be556020daf61e41e7
|
|
| BLAKE2b-256 |
67f81fe60fba4518461b0405e6f49b7626149d9def035063cfe125cd2a967629
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
9ee0969b17f927dcf7a6b0139283a2daa32414e9ed4981d6e086b17815a64adb - Sigstore transparency entry: 190344668
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1e2db242ac523fbe93b7aa0758374b6d6c4d03caf62c6ec71e70885dbda594a
|
|
| MD5 |
2b4e19356ec73e94ad6576df8b4e0648
|
|
| BLAKE2b-256 |
51f7b533c7488efb639b23ce295fea81eebef83d16a27ef203ed852c77f7ce0b
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
d1e2db242ac523fbe93b7aa0758374b6d6c4d03caf62c6ec71e70885dbda594a - Sigstore transparency entry: 190344558
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21af8583ed58d8eafe061a412b6f91c9e08fdb7ce215aeb0ab7fb64589a58efb
|
|
| MD5 |
97c2616268a7ef335eea4869568b5fd3
|
|
| BLAKE2b-256 |
6a4256a180bd0a2b46cb125c0546159d7fbebaf7f4f1367e5d03cc096cd6e25e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
21af8583ed58d8eafe061a412b6f91c9e08fdb7ce215aeb0ab7fb64589a58efb - Sigstore transparency entry: 190344393
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a93a60b1c77970ef30bfdad25343f492e67a34583b32ae31a6ad0f99dcd2dfe
|
|
| MD5 |
7449320c2f7088655d0fb5aed48f61fd
|
|
| BLAKE2b-256 |
c88309d112e68f539142f466a1822c47754b7af3faadd0b8580e1775564601af
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
8a93a60b1c77970ef30bfdad25343f492e67a34583b32ae31a6ad0f99dcd2dfe - Sigstore transparency entry: 190344548
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0d4ad12223a2808ab0c6a6f7064de13bb194fe6f2799e2f4cfee3c71a218d4a
|
|
| MD5 |
d99316b77f9e0299d43d68c3ee22c87f
|
|
| BLAKE2b-256 |
4f096a8677e3804d743f280171dfe9d9c4479e13e02b75b8a3acf565ea0d86ec
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
e0d4ad12223a2808ab0c6a6f7064de13bb194fe6f2799e2f4cfee3c71a218d4a - Sigstore transparency entry: 190344641
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6a383f2585e40086efb8f6417195ccf437a501b4b342d67b6af8618cef3893e
|
|
| MD5 |
2ffd3638973488234feda629381e3bb5
|
|
| BLAKE2b-256 |
2cf6f3398faf30aa2ff9bef96a04cead9b8111a4fbbda86dd02ef2473fb6272f
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
b6a383f2585e40086efb8f6417195ccf437a501b4b342d67b6af8618cef3893e - Sigstore transparency entry: 190344616
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f08ee07aab2e84a151315f97dece448465c15ef21fd8a4d9478c9428ca19659
|
|
| MD5 |
ffc2a8b968b64a50f3927698606c863b
|
|
| BLAKE2b-256 |
9550bb1d05ebb135c4e83a76a0343291f2e4ef8d6864121a8f78c9e93904f616
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
5f08ee07aab2e84a151315f97dece448465c15ef21fd8a4d9478c9428ca19659 - Sigstore transparency entry: 190344449
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
512027e0f6a1434d1c5d34d47b8391a7f1ef0dbca9aa3b311612a4ac8f5a0f14
|
|
| MD5 |
cd753ae06be66196425568b0862182d5
|
|
| BLAKE2b-256 |
085053e72fc7a45a2de2e7e11d343566f78566bd7687193f1fe1134bb1b1ddb8
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
512027e0f6a1434d1c5d34d47b8391a7f1ef0dbca9aa3b311612a4ac8f5a0f14 - Sigstore transparency entry: 190344533
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c78517d5a465aa143ff4976bad6bafef622fff5e020ea1f4f63ed1c4a845dcdd
|
|
| MD5 |
20a18a37b69275f959aa0ff49bd22d93
|
|
| BLAKE2b-256 |
05b92e92d8a06a6500cc21ae8189637100e56885a884af05ccdc765989f9b322
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
c78517d5a465aa143ff4976bad6bafef622fff5e020ea1f4f63ed1c4a845dcdd - Sigstore transparency entry: 190344421
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd43dce69ab5585727384876eb503cee6d423d57e4c25694efe7376d505146c9
|
|
| MD5 |
ad5c3964f8fb9e197380949ad7bae29d
|
|
| BLAKE2b-256 |
21dbbe9b9cac2c075cc1b87fb55b75458a862f5ff84e8067ea098e0b56240d93
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
cd43dce69ab5585727384876eb503cee6d423d57e4c25694efe7376d505146c9 - Sigstore transparency entry: 190344487
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6aabb7f858b78dc0a61de5faf549d370b99871fa0dae4d5e8e1e5149b64740c4
|
|
| MD5 |
6cef47c5612574f4efb31d4a8ecfcc36
|
|
| BLAKE2b-256 |
310203e1377dfc1c6bf7fa179b225d082e4d4a414f5a60221df4125918535afa
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
6aabb7f858b78dc0a61de5faf549d370b99871fa0dae4d5e8e1e5149b64740c4 - Sigstore transparency entry: 190344431
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fde5fa039ac9f8ef4cc77a2ac47e125099b7498cc437dc1b52cefa8c67b3a578
|
|
| MD5 |
e76f250418015308073e1fb0a585545d
|
|
| BLAKE2b-256 |
cacbd2268e7444c4039ca5b45ef02af4acf0ce8afdb1a0b2d22c815f316066e6
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
fde5fa039ac9f8ef4cc77a2ac47e125099b7498cc437dc1b52cefa8c67b3a578 - Sigstore transparency entry: 190344499
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe2681da00128775dc83625ed06705e1b2ed1fa61a04914a1a1c1aa72f522c2c
|
|
| MD5 |
0f0393574b6aaf57be75950adc59efea
|
|
| BLAKE2b-256 |
565e272f8b7c25b431d59530453b71a972aecdbcb3f07facd9fc2e53cace48b3
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
fe2681da00128775dc83625ed06705e1b2ed1fa61a04914a1a1c1aa72f522c2c - Sigstore transparency entry: 190344520
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9440e5b9980886283f75a8cda7afa516aab7ad06000fecbbf40bf97255ebedb7
|
|
| MD5 |
21e9e4018f5a936767dc44ecafca81a1
|
|
| BLAKE2b-256 |
fa7ef62bf8f6d31a28a2eb59e77d1d0046777f3f55e61498780709e12bb09e26
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
9440e5b9980886283f75a8cda7afa516aab7ad06000fecbbf40bf97255ebedb7 - Sigstore transparency entry: 190344639
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4b974867ea7a7c9b46f9f52d128416c0870fae3939ea440770a1b61c8736c9c
|
|
| MD5 |
ec4ddce1e6e49102c15e100fce1d54d9
|
|
| BLAKE2b-256 |
95e745dddca1fa361647435721d19874408afdea55649cd469036201b89f3c89
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
e4b974867ea7a7c9b46f9f52d128416c0870fae3939ea440770a1b61c8736c9c - Sigstore transparency entry: 190344649
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9f181b149c176616d2cf8d6f6d497e9f499d55300f4e7f125af8a522308c5b0
|
|
| MD5 |
d1a4816980400c9cfdff63535d4714d1
|
|
| BLAKE2b-256 |
71bc610f7da44c845806b48f8ee8e70b071f4b5756dce2d772738da51e3d9670
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
c9f181b149c176616d2cf8d6f6d497e9f499d55300f4e7f125af8a522308c5b0 - Sigstore transparency entry: 190344415
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfdd4d335a83f2820455f028dfbc472eabe2632c97ce9297812bdb66d2b51484
|
|
| MD5 |
9317f07908abd83101fd886642e7f209
|
|
| BLAKE2b-256 |
c4ed926798af7bac89af59975daa286ce1d2525ff146acd7aba02cd99d5ef294
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
bfdd4d335a83f2820455f028dfbc472eabe2632c97ce9297812bdb66d2b51484 - Sigstore transparency entry: 190344397
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5f7b760be73d2330dbc6da7b30fae06ccc34f3703ea6ab2d0d56ee171055616
|
|
| MD5 |
3b405b6962dd2ddc0ea63c8f90943931
|
|
| BLAKE2b-256 |
bed7d57ae8ff501e6d4ae17045ed49712a4201a196a3676f811d4980887b6728
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
c5f7b760be73d2330dbc6da7b30fae06ccc34f3703ea6ab2d0d56ee171055616 - Sigstore transparency entry: 190344376
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
050d554fe44b5d326db9a4afc9e309cdd24d32c499e28b65d680a9115619332c
|
|
| MD5 |
073cc80f3a8667c37d85677e9bcc83f6
|
|
| BLAKE2b-256 |
2c010025c44d50558b24a8038b3a656c49dad3a3df19e81af279edcf723aeaa4
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
050d554fe44b5d326db9a4afc9e309cdd24d32c499e28b65d680a9115619332c - Sigstore transparency entry: 190344512
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b89f3631cf6576bb0f1bd490b5377689e9144ff0f9d58b8948a802b1ff201a8
|
|
| MD5 |
03cbcd5d222df0c48423ca3c6b64ab6b
|
|
| BLAKE2b-256 |
c92b0927df67b14855325aeddbb684b94a5d4457b7c3f2426733c1ce02730b4f
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
7b89f3631cf6576bb0f1bd490b5377689e9144ff0f9d58b8948a802b1ff201a8 - Sigstore transparency entry: 190344525
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abef35ba735dff1af469226ebc1cc37637b253dd83db9e961b31625591505388
|
|
| MD5 |
e44dd2d39b13bc83d630e480a420283a
|
|
| BLAKE2b-256 |
7e189871869e0c956a614f88a4d1ba422835b81709e9bdd532838b792d50a805
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
abef35ba735dff1af469226ebc1cc37637b253dd83db9e961b31625591505388 - Sigstore transparency entry: 190344604
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c88214f2ea3f1bbaa970027d0f2ef054dbc3fc485cba4dca9a43a49ecc1080d
|
|
| MD5 |
462a79203437670c42a439b08df62c48
|
|
| BLAKE2b-256 |
655dbf17363a64043d045e2e6f1c071b6a97cceae148040eab3b92260e918c9a
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
0c88214f2ea3f1bbaa970027d0f2ef054dbc3fc485cba4dca9a43a49ecc1080d - Sigstore transparency entry: 190344436
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faa50027e043d3f042c6832f6509c5c2b5120770943835f72073bf291994e897
|
|
| MD5 |
7f274934a0ce58a0f1d77d9a5c15f6c0
|
|
| BLAKE2b-256 |
b3943505e501440b1e0ff5f6a620e44be69f4ea1f10bf0a57835c795287f4f24
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
faa50027e043d3f042c6832f6509c5c2b5120770943835f72073bf291994e897 - Sigstore transparency entry: 190344404
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
332bdc8c24fdb58af8eeadbb6a9fe98901f4081749515667d14267c85d515ce2
|
|
| MD5 |
5c2bed54886bdd61abf417d4333d6b67
|
|
| BLAKE2b-256 |
d323c38363601352fb1a911d2fd35cfba9dfe1a640d6d2eb2fc1da3f30dde7b2
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
332bdc8c24fdb58af8eeadbb6a9fe98901f4081749515667d14267c85d515ce2 - Sigstore transparency entry: 190344526
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cdf198c3d165d155302c0763b860cb801d0b855eda7b30c917a1b4fb2e793df
|
|
| MD5 |
9c4ab4dd9c9bc06068871dadcd5e9f48
|
|
| BLAKE2b-256 |
108899850a1b6e5b859e55c2f01d57231a18439dc8f18a76bf8bd0f64c3fd9f0
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
7cdf198c3d165d155302c0763b860cb801d0b855eda7b30c917a1b4fb2e793df - Sigstore transparency entry: 190344527
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ae0678b814ad2cdf81a4a1b519428d42dd1729306daa0433d456f6662a16b89
|
|
| MD5 |
30ba211c64af5e9c1dc2d7d8be447a55
|
|
| BLAKE2b-256 |
9f941e4b2d0f5c1f86868461c5329ecaf9b6c2e5f449b4419a51e8e9798ef3ee
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
4ae0678b814ad2cdf81a4a1b519428d42dd1729306daa0433d456f6662a16b89 - Sigstore transparency entry: 190344400
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ddce1bf809e9c0b4c79f8ac6f75260c56ca6ef20117aeaba26bae605972acc9
|
|
| MD5 |
460e5fcc00f7865d449e5adf3fe7c2ec
|
|
| BLAKE2b-256 |
95d2e34d6e01b481659cd2d8c58d082b22b38c9b25ab7a3894ef41f3eee68cb4
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-win_amd64.whl -
Subject digest:
8ddce1bf809e9c0b4c79f8ac6f75260c56ca6ef20117aeaba26bae605972acc9 - Sigstore transparency entry: 190344470
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1082b34e1bc74056d6904761297f26a8aa0d3c13be49680078ab1163d39aaf88
|
|
| MD5 |
29a75233d3b6c6e64482c0617a275b59
|
|
| BLAKE2b-256 |
6be75fcee383df7f2db596594dd1af27173ad054e82fa48116352ee3b7c79e33
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-win32.whl -
Subject digest:
1082b34e1bc74056d6904761297f26a8aa0d3c13be49680078ab1163d39aaf88 - Sigstore transparency entry: 190344544
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6aac02f6f47d1c4cae9abac93a7d3a85cc2fb88845af530cf75a225c32e65fe
|
|
| MD5 |
81666c5ea6b7a2b233977d80b61cdae7
|
|
| BLAKE2b-256 |
c0df2a57ad390a2f3e0befc42dd6e7ffa84a71f343acc929def1ce1f804d8347
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
f6aac02f6f47d1c4cae9abac93a7d3a85cc2fb88845af530cf75a225c32e65fe - Sigstore transparency entry: 190344502
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9eaf2fbac345f8809df007f2caf86d13948eaf42d0d7e9f4cb59cb7d0d56903
|
|
| MD5 |
425f00c2890444c49fea1f95f5783059
|
|
| BLAKE2b-256 |
dbb9bcd05350871ed4c146857ede5adbfd7afa49e634a8d8bab475a7217e614b
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
c9eaf2fbac345f8809df007f2caf86d13948eaf42d0d7e9f4cb59cb7d0d56903 - Sigstore transparency entry: 190344536
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4fa3e6112ab313ad51a94595365929e35b957e99a19f7d29909e338eb3ca4e9
|
|
| MD5 |
6bc756579bf2858c088f44048f3ad4bb
|
|
| BLAKE2b-256 |
54b2d59eb6730893c7a3f1e64782b9df0012b629c1f566e150a9773558505856
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
d4fa3e6112ab313ad51a94595365929e35b957e99a19f7d29909e338eb3ca4e9 - Sigstore transparency entry: 190344673
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f43005cedc89ff1243eb5420458de185523cae37a5e7fc230b5579304f80674
|
|
| MD5 |
828b4775be51f50c32bd3bd107fdd47a
|
|
| BLAKE2b-256 |
3a672bf3bdad4f6b49d9a174c9126af11dbe509159034b5c5cff945452b8c8ac
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
2f43005cedc89ff1243eb5420458de185523cae37a5e7fc230b5579304f80674 - Sigstore transparency entry: 190344408
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01f7e76dde1d9a080b2773efcce24b96aa364df12a936f22fa3ed72f13804e99
|
|
| MD5 |
3133ef0466474c24cb9cb5cadd1173b4
|
|
| BLAKE2b-256 |
4d8208dc5cf5ea3653635866d89bd31924a2c950f311db720abe3ddbe5ca9214
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
01f7e76dde1d9a080b2773efcce24b96aa364df12a936f22fa3ed72f13804e99 - Sigstore transparency entry: 190344386
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63f10142c384aa349047a18d7f1f5a8f81ef364187a9c34fcdd841ac1c77e56a
|
|
| MD5 |
35a483361b99114530786c67730899bf
|
|
| BLAKE2b-256 |
e2ffe78b7f5983e7d18cf5b3ed0c04c5883520e01627d00637590e4f4c250cbe
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
63f10142c384aa349047a18d7f1f5a8f81ef364187a9c34fcdd841ac1c77e56a - Sigstore transparency entry: 190344655
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e14bceb9e781464fb89e602837654ce62827aa3c99a2166d4d9705c9f0e573a9
|
|
| MD5 |
d81ca3d1c3ad23b6a16fd77d3fb330b0
|
|
| BLAKE2b-256 |
fee533f94d3733e3bc70798dd976cee793a65f48dea4a711e8b2222bdf72610e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
e14bceb9e781464fb89e602837654ce62827aa3c99a2166d4d9705c9f0e573a9 - Sigstore transparency entry: 190344517
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cab890970d8641516d2b30e19e790b98f5cd02c9170b08f7b2a0666aacc50af4
|
|
| MD5 |
1a1f868ba6c737885c28687b6ad37f15
|
|
| BLAKE2b-256 |
2fff24bd0a3e4a2a509d8f679204d8e3ec268252240f7babf3d2dd8c1e940f35
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
cab890970d8641516d2b30e19e790b98f5cd02c9170b08f7b2a0666aacc50af4 - Sigstore transparency entry: 190344679
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75dea9d8feb95db72f0e887788595f8060c56b1143a1a2b2c3d2c3bd5464908c
|
|
| MD5 |
67a53cff4f89da302e59aa35de12064d
|
|
| BLAKE2b-256 |
c38cd3045cb7c9c11c8bb660c019a0931ea95579f94483d50627b208de1cc11c
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
75dea9d8feb95db72f0e887788595f8060c56b1143a1a2b2c3d2c3bd5464908c - Sigstore transparency entry: 190344395
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fef0cba8b092637f8adc3f59bb33f9c918afb219ed1d1ad53a15e1ed0e897ef6
|
|
| MD5 |
d656670ad7c6263122292b05ed2e35c8
|
|
| BLAKE2b-256 |
3713211bce9930aeef3bacc07091a9992e012b19b6e59bd39bfedf41997f9480
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
fef0cba8b092637f8adc3f59bb33f9c918afb219ed1d1ad53a15e1ed0e897ef6 - Sigstore transparency entry: 190344401
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6853a68147bd0ccf0afcb113a9849affeb08f021beb3bbb3d38efb7bb142a221
|
|
| MD5 |
3316274286859f9acef64ea9e9a872b7
|
|
| BLAKE2b-256 |
f1cb018a67c57c5f7e3f8cf180969112fcdcecc05c68406989d06ec2b8e915fa
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
6853a68147bd0ccf0afcb113a9849affeb08f021beb3bbb3d38efb7bb142a221 - Sigstore transparency entry: 190344563
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98272252a04d14143658c0d2f704d728e75a72464bcc0efd42bbc7d9fe081793
|
|
| MD5 |
025866c10802fe3798b21199ce82210b
|
|
| BLAKE2b-256 |
655492a33418e4cae56921e333f950eca0c2fc08619a1c9073f6b5d5c22b3926
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
98272252a04d14143658c0d2f704d728e75a72464bcc0efd42bbc7d9fe081793 - Sigstore transparency entry: 190344410
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3ebf45bc04a514abad4b885088e275012b593f61c274f834ad9b96be85e806e
|
|
| MD5 |
94fbf19ce0b11ca53a5adad2ff98bd50
|
|
| BLAKE2b-256 |
b655511a878aed3a3a13dba4f00eba6340719fa05c6b75d0eb791e79686d769a
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-win_amd64.whl -
Subject digest:
e3ebf45bc04a514abad4b885088e275012b593f61c274f834ad9b96be85e806e - Sigstore transparency entry: 190344387
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b04c0fe9db26b565d7c5e5dae89eb6fc60672ba7480f3407246ec18eb359d82e
|
|
| MD5 |
cbb6d18b16eb4098b4d62bb710d09d58
|
|
| BLAKE2b-256 |
1c61c416e78af53a49be555c0b6adf00b6ff64e10ded0854439373295ebb7ee8
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-win32.whl -
Subject digest:
b04c0fe9db26b565d7c5e5dae89eb6fc60672ba7480f3407246ec18eb359d82e - Sigstore transparency entry: 190344457
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12d92eb293a9dc387e9ec114af19cd3094926eea3ec574a18fbaeb118ca7f5b4
|
|
| MD5 |
2906661e0ee65d77ed35bde127b9775a
|
|
| BLAKE2b-256 |
60b474dfdf28de88d6893354f7e1f1a802765f3bfe3498170d49ce02ba0bc7cf
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
12d92eb293a9dc387e9ec114af19cd3094926eea3ec574a18fbaeb118ca7f5b4 - Sigstore transparency entry: 190344440
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b72672a64f6cc6a098159a5dd866b25f673062ba13654da0f8a6f1c3ff97e3e
|
|
| MD5 |
fdddc430eb26b77c32cd05e8e5dd6def
|
|
| BLAKE2b-256 |
10489e9fd1db5fe5a7649d67e8ef995004e0e17ab9e20630ca804c46b1db8fbb
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
0b72672a64f6cc6a098159a5dd866b25f673062ba13654da0f8a6f1c3ff97e3e - Sigstore transparency entry: 190344562
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb852e3d153c04d2db71a5d17b9cdf5743715cf1ac6e08a1c0cfadfe5a1668e4
|
|
| MD5 |
934ce606de16c30d2b822dc40e6c0490
|
|
| BLAKE2b-256 |
ea950572f1e9fdf27cf5ae78022ff8290378675092210fa693d4d2df9c249c53
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
eb852e3d153c04d2db71a5d17b9cdf5743715cf1ac6e08a1c0cfadfe5a1668e4 - Sigstore transparency entry: 190344577
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f259c545443f8e7e009dd9eb0350e225e0661ea0cbb90ffe0e632bf5dfe97e68
|
|
| MD5 |
cf27294c3b75df92df1439e5f6c39a91
|
|
| BLAKE2b-256 |
8dab88f791a35d7a724363d9fad4f461f379e6c5e25075a51b6c7ed2fdb8f808
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
f259c545443f8e7e009dd9eb0350e225e0661ea0cbb90ffe0e632bf5dfe97e68 - Sigstore transparency entry: 190344659
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d86d2b22241445fe2fc04157d06f7a5b807a1e51071df8190be9cd91c292efa
|
|
| MD5 |
5ba020279a3fe245b3aff1ecade3e368
|
|
| BLAKE2b-256 |
34c4ede4d5e8844c59bfe265ded11198c821e59550aabdd43b428c4b62f1ff90
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
7d86d2b22241445fe2fc04157d06f7a5b807a1e51071df8190be9cd91c292efa - Sigstore transparency entry: 190344570
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bcdf0bb3948017b386dc486ec6705e69db87c92fbe2ed59d289d42a6440dbaf
|
|
| MD5 |
d257d4abe15f1c50f3880378e7248546
|
|
| BLAKE2b-256 |
07d0a50c41fbbb15b3517cab469df88406211e6f003b28f618b591919d344a70
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
8bcdf0bb3948017b386dc486ec6705e69db87c92fbe2ed59d289d42a6440dbaf - Sigstore transparency entry: 190344428
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ec9acc2a8b46b551c0bfccfc5f81ceb54150b01b99546316de250289224be4b
|
|
| MD5 |
bbb6cc4f5610ef1f2e740856145913f8
|
|
| BLAKE2b-256 |
b0bc3c2873c324bcea93457bca6af691554e928294b8dcd1c8e89040a9042b66
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
4ec9acc2a8b46b551c0bfccfc5f81ceb54150b01b99546316de250289224be4b - Sigstore transparency entry: 190344680
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bda64b44ffa402a587ce0b3efd775e673df383fbb6381f0b89c7eba674059492
|
|
| MD5 |
87409188387aa47f13ac4032ea716a05
|
|
| BLAKE2b-256 |
261d888f8340bf602539c9d22b0d596dbf149cb6e5ce59f63d9f6977a6793a11
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
bda64b44ffa402a587ce0b3efd775e673df383fbb6381f0b89c7eba674059492 - Sigstore transparency entry: 190344566
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2735c4df0613fad7ccccac250ed18d083f19b1340e772de9f76ef5060e11f8a3
|
|
| MD5 |
01603640af421684ea24ff85e8742e4d
|
|
| BLAKE2b-256 |
178953bef8124a434dd9711f7a088f8e9b2f736752e2608e7af97cb6cba32dab
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
2735c4df0613fad7ccccac250ed18d083f19b1340e772de9f76ef5060e11f8a3 - Sigstore transparency entry: 190344613
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9859c3b5a24cdcfcb25b3a41b02e83657771b1f2079c03ce5671389eca5c7f6d
|
|
| MD5 |
4bdd42739d4076e9026a627e0e235f76
|
|
| BLAKE2b-256 |
c3d8145627749e8e9bb0b6b6b5cfe6959d1ba3a48be22a97b28efd18e571b300
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
9859c3b5a24cdcfcb25b3a41b02e83657771b1f2079c03ce5671389eca5c7f6d - Sigstore transparency entry: 190344596
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1e20daea494f198711652e5381c37e6288edaf64470a5bcf358beed2ef45781
|
|
| MD5 |
651634501297286d8329f2504688cdcf
|
|
| BLAKE2b-256 |
e99e17872a459481888c47eac0b32404dbe2e65294504f1f2e5cc2929eb275b7
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
e1e20daea494f198711652e5381c37e6288edaf64470a5bcf358beed2ef45781 - Sigstore transparency entry: 190344658
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ebbc50d21b66714e6a39ea2c6a7c0b4c2e9720e9ebaae2fa8d2f8dbf7d7f156
|
|
| MD5 |
9efe42b2fe9130dd1f5d41a1bbb92837
|
|
| BLAKE2b-256 |
66d2262f30a497f39513a68b3a6fbcdba55739f0345b926bbddb43017bfe6c82
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
0ebbc50d21b66714e6a39ea2c6a7c0b4c2e9720e9ebaae2fa8d2f8dbf7d7f156 - Sigstore transparency entry: 190344651
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
911ef651d0b23c524a5d2105591f82dd0759438b412438ed98b3269d3f3b7870
|
|
| MD5 |
3fd7fed62eb68549bbd3019b4ec35c4c
|
|
| BLAKE2b-256 |
9a7aea59097d1feeb76a07d5ce39448b34d01b507c4808b95a887df5a1c72513
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-win_amd64.whl -
Subject digest:
911ef651d0b23c524a5d2105591f82dd0759438b412438ed98b3269d3f3b7870 - Sigstore transparency entry: 190344390
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b77558005c15f1a8cb5c41734bc12deb463ba28595e20b8dfd5ab1ca3b75cf6
|
|
| MD5 |
73a1ef2759b6f8ec98e7cb16a0ffaa4b
|
|
| BLAKE2b-256 |
0551f629b50022511ff15a2120826bb3d44a8e2f9d6a2144377239378eec474f
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-win32.whl -
Subject digest:
9b77558005c15f1a8cb5c41734bc12deb463ba28595e20b8dfd5ab1ca3b75cf6 - Sigstore transparency entry: 190344467
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9796e154a6e76416760d29a78d5fcf0168712f95b76f60c22c29235dcd37bea
|
|
| MD5 |
9369289d93782d4a9942c7b1d867d9bf
|
|
| BLAKE2b-256 |
ee23347af12213e7f8c45e86664356fc312a75eee6209b38bbba8e2a77faeeba
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
c9796e154a6e76416760d29a78d5fcf0168712f95b76f60c22c29235dcd37bea - Sigstore transparency entry: 190344505
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1909c38bd6c9c6bc74c6bfc1aa24ea694deab1003e522e891d6b68c165bbf0f
|
|
| MD5 |
a97d34da6ef94f5fbd772b040dffe5b4
|
|
| BLAKE2b-256 |
eede2a4da4a4d2d21c04be7a3405a1e9a82e4046621ee14c8803d0e84b51c058
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
c1909c38bd6c9c6bc74c6bfc1aa24ea694deab1003e522e891d6b68c165bbf0f - Sigstore transparency entry: 190344495
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
643485f1bb770988910afd55fcdaf93ca544c45e8af4564bc2ba898a06afc876
|
|
| MD5 |
1bed7c772de919cd64a5fa980f248e52
|
|
| BLAKE2b-256 |
8ec29b09992906af5988bcd42f71007b3136172e313f5b0a29d7a9cf48561546
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
643485f1bb770988910afd55fcdaf93ca544c45e8af4564bc2ba898a06afc876 - Sigstore transparency entry: 190344388
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2913addce41b9b691d6a66b15bd2732995bf1b978a6e373110fd4cade6cc74d4
|
|
| MD5 |
07c5a2c6a27b1c82e6edabdaf6901009
|
|
| BLAKE2b-256 |
8144817c9bfb8080bce0e5dbffbf9adea81295b103429d359711980a75d64d85
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
2913addce41b9b691d6a66b15bd2732995bf1b978a6e373110fd4cade6cc74d4 - Sigstore transparency entry: 190344574
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5505c2a71e357108d5d4a5117d2f4af726492992834b4ff5e75f198185b79cd7
|
|
| MD5 |
2e84e83978dda1a909248729dd1c546b
|
|
| BLAKE2b-256 |
dcb0aeb55fd5f93ebe2ffabeed094e56004289ff787d0bd21ee73622ed39951e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
5505c2a71e357108d5d4a5117d2f4af726492992834b4ff5e75f198185b79cd7 - Sigstore transparency entry: 190344671
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b2ea5908f54b5ba49d18a4806baa72341116a35aa93a046039864df795c585f
|
|
| MD5 |
ea8ee50c071f43b8a573c2e658999210
|
|
| BLAKE2b-256 |
a0440675d4239fe187756640d46316b6a3e99285a1c74bcb6bd9e47cf2865edb
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
0b2ea5908f54b5ba49d18a4806baa72341116a35aa93a046039864df795c585f - Sigstore transparency entry: 190344476
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
276302d914e971a65fd32e9ec807632189bda039d055fd91d9573dc7d7551947
|
|
| MD5 |
1a09cf3695010adbdcf561fab15b1269
|
|
| BLAKE2b-256 |
21d58c8423b16cb886b880d19c9ea479ca1fe052bcb3e5aa6c6c4ada5a0700df
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
276302d914e971a65fd32e9ec807632189bda039d055fd91d9573dc7d7551947 - Sigstore transparency entry: 190344418
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3df299b0ce04f24162fea90b5c6c68e10c54d1be89d651353c3e74e065a3bb2
|
|
| MD5 |
ac9e606410b66ff53c88f42a22448b8e
|
|
| BLAKE2b-256 |
453ecfaf0961f5e0dc20a8930c2ee0d197c7049abfae48bbf37b3dc840a16972
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
e3df299b0ce04f24162fea90b5c6c68e10c54d1be89d651353c3e74e065a3bb2 - Sigstore transparency entry: 190344619
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e65a447b9c73ad042473a15ab111d62cfd3bf99cd85715934cb63de4b0c2d43b
|
|
| MD5 |
a73e5c17d5df15feb708f6b7dfb64b47
|
|
| BLAKE2b-256 |
2d5f7a6fe2b5a64fd33f362284de4944f2b0b5503466b9af7da212bd192a62dc
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
e65a447b9c73ad042473a15ab111d62cfd3bf99cd85715934cb63de4b0c2d43b - Sigstore transparency entry: 190344434
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1956d1c06807e36e52e2eef0615d1ee96cc25bcddad1d4749728f9d93126b19a
|
|
| MD5 |
2e991c892fdc468f0ca538d737847c7e
|
|
| BLAKE2b-256 |
4093b74c55d933b722e2790442324ecf97ae8383cdb1b7f4e995b944d06a3022
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
1956d1c06807e36e52e2eef0615d1ee96cc25bcddad1d4749728f9d93126b19a - Sigstore transparency entry: 190344551
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b9d1cd1d08242815932d5e669dda80dc0185b5ab8724cbe910e6c91e02934f5
|
|
| MD5 |
4c338177cb27a28bd174cddef16cb23f
|
|
| BLAKE2b-256 |
4f183a75e001584b13f0ff88e2cbe0478b22495dc6dfc0d0ae55eb0209e26a71
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
8b9d1cd1d08242815932d5e669dda80dc0185b5ab8724cbe910e6c91e02934f5 - Sigstore transparency entry: 190344667
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0deda855c4d6ad630e1339b910d58315e2ee026cd5de9e787b21ac83e4484aca
|
|
| MD5 |
c245f72619237f113152b433f1d9a267
|
|
| BLAKE2b-256 |
724756b24f5955fdf153ec7b1bef9cd4138d08bfcc859b2c631da7c4a1061ba6
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
0deda855c4d6ad630e1339b910d58315e2ee026cd5de9e787b21ac83e4484aca - Sigstore transparency entry: 190344540
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1ca9a8c16471520bb29e54dbfdfc2d00e61d06b02ab801e691a54c6bfa591b5
|
|
| MD5 |
7fca5ec0826d12b07d968c8a2f5698cd
|
|
| BLAKE2b-256 |
47903673f50d8e8974a97115d160b496c3063bc6c7addc5c8be52dde50aa5fe2
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-win_amd64.whl -
Subject digest:
e1ca9a8c16471520bb29e54dbfdfc2d00e61d06b02ab801e691a54c6bfa591b5 - Sigstore transparency entry: 190344367
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0275371a0a7616acd64a2bd62ae3c30502676fd0f65a2f2bd7112957da13685e
|
|
| MD5 |
2f0c6d5011f7dbef4b962db7897c3741
|
|
| BLAKE2b-256 |
6626e33c8f2cf0e0a17d2541d00e8e4310cb9aad999e760e495cb868109db626
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-win32.whl -
Subject digest:
0275371a0a7616acd64a2bd62ae3c30502676fd0f65a2f2bd7112957da13685e - Sigstore transparency entry: 190344484
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7da0f6504e6e06fcb1e4db72f383a4fa1bb4c861e7af3f7877f931a252b3ee7a
|
|
| MD5 |
b0e04376a56ee6381b64e65501309f95
|
|
| BLAKE2b-256 |
2b38664d39269284551cc85accb3d2c6e66bc0601aa0d41c0a31add82f5951ca
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
7da0f6504e6e06fcb1e4db72f383a4fa1bb4c861e7af3f7877f931a252b3ee7a - Sigstore transparency entry: 190344389
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28b5666524212595f831b24a08afb62f247b35d333ab54c9dd6415fe020aa1c7
|
|
| MD5 |
e4baf99e037acffa448fd104c3f07bbd
|
|
| BLAKE2b-256 |
b49b343261a1c4bb00b864c32f38b538de244c924c9557c43ba1a9d388ed0014
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
28b5666524212595f831b24a08afb62f247b35d333ab54c9dd6415fe020aa1c7 - Sigstore transparency entry: 190344378
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44f9b6d97d5a00ca695e6bc27b75f2fe804e3f4f52fa6fca90978e33296add6f
|
|
| MD5 |
e84f037e750887c9d86a35ff1b08ce02
|
|
| BLAKE2b-256 |
7a8d9340ce9e3a5b81e509d0379c59b891b373be98de421fda0ea95d5f4b9886
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
44f9b6d97d5a00ca695e6bc27b75f2fe804e3f4f52fa6fca90978e33296add6f - Sigstore transparency entry: 190344379
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bfb17de8403dfe40b33a26fdd62a3b65c24ae7ee3a1e0fcea219dbc40323171
|
|
| MD5 |
63cbc6fe73f7886a35a22f55c6522dc8
|
|
| BLAKE2b-256 |
e3d2c19c4037472bea81ad134e33bdb56a1a163ff95c395daad990377f4e8b47
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
1bfb17de8403dfe40b33a26fdd62a3b65c24ae7ee3a1e0fcea219dbc40323171 - Sigstore transparency entry: 190344580
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3df98011350984a75b692a63c1b274bc37d5f877cdffded66f57cb15dd9d7fe0
|
|
| MD5 |
558023c72d95b0aa34c2f15a48f88a67
|
|
| BLAKE2b-256 |
a81b640df6abce7045af15e1c3f3cd70848b5ad988fe66d70edfaa6ec1d092c8
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
3df98011350984a75b692a63c1b274bc37d5f877cdffded66f57cb15dd9d7fe0 - Sigstore transparency entry: 190344630
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5661b50a3038493ab35e7cd00673815948d811fa090b3dd24d47bef82fe626ab
|
|
| MD5 |
d0e404facbc4a05a1c608ec071be9f55
|
|
| BLAKE2b-256 |
6fe30cdc1d4862f2af65531f9d998af146261fb2d0a11a1e116fb53ad9d89567
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
5661b50a3038493ab35e7cd00673815948d811fa090b3dd24d47bef82fe626ab - Sigstore transparency entry: 190344622
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e5bf47903bc16e60468478edb606ebd9abe12111f3f223f215863905f59a7fb
|
|
| MD5 |
df553b0f927b281c38e478956f7195e1
|
|
| BLAKE2b-256 |
c7359f3d0e1e9ab0fd5995301347535ba9489459829daba7940e0952fc44c094
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
0e5bf47903bc16e60468478edb606ebd9abe12111f3f223f215863905f59a7fb - Sigstore transparency entry: 190344676
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d34b213bc02c69eb91a80d7b58852ea386cd8f09fbb68ac9625c4017fc6aed
|
|
| MD5 |
d0d12189d1444b618cc1a4b1014de870
|
|
| BLAKE2b-256 |
101e82f70bb2257886f0e8646599639be5254de32bfe79ed2bb8d7de38b7b7fa
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
89d34b213bc02c69eb91a80d7b58852ea386cd8f09fbb68ac9625c4017fc6aed - Sigstore transparency entry: 190344507
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fad6e0a4054769e080f8f374b3c5ea150e5918573c296a7a333428e83c819a30
|
|
| MD5 |
ed0ce63ea60f075aa9c3be6e2dd69b00
|
|
| BLAKE2b-256 |
f460d9b72efd53cb3ff7003f0dd9abde5e357b44d3aa1440ee38272130808c80
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
fad6e0a4054769e080f8f374b3c5ea150e5918573c296a7a333428e83c819a30 - Sigstore transparency entry: 190344372
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
811a616ff4c0ebf0d38b94b40f8dadb17365509b2bc89a5d9e62ac14540adaae
|
|
| MD5 |
a5f5c0db61becbcbfde6b5d7089a73fc
|
|
| BLAKE2b-256 |
f60d848a3d3eb18fb38a8ffa24cafd656b171af44d2ce432070d49e94924a8e8
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
811a616ff4c0ebf0d38b94b40f8dadb17365509b2bc89a5d9e62ac14540adaae - Sigstore transparency entry: 190344677
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
441fcd344922cafdf17ff08778b3832bdd7658e3de93baef898e905bf023ebec
|
|
| MD5 |
cd1e0ce30b5b7e4e014ab2a9c972ea71
|
|
| BLAKE2b-256 |
f00666454b5567738313fb03c27c8cefe83c1449abd932db69e6e4395267c29e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-win_amd64.whl -
Subject digest:
441fcd344922cafdf17ff08778b3832bdd7658e3de93baef898e905bf023ebec - Sigstore transparency entry: 190344412
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f61409fefa6098888895c519b63b92a0f45972b341db1e05d68416b9a4a1233
|
|
| MD5 |
ef9478ed8d7b7fb0f573fe9fab83e18f
|
|
| BLAKE2b-256 |
5e941fd1f067e76eeb23f8bb507696a61b6f3e3cf753a2141369e52ad92c0e79
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-win32.whl -
Subject digest:
1f61409fefa6098888895c519b63b92a0f45972b341db1e05d68416b9a4a1233 - Sigstore transparency entry: 190344645
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2260f749fe47dc93f9a5936f83c3d0f0d73c3bc051fa9aac66c2cad1f633ed5
|
|
| MD5 |
b1b852bd18419927cedf94dbf04669ae
|
|
| BLAKE2b-256 |
70c0ec9c425a4346dfd05506958510e7e3ec7f292ac8ca67a4e9a711aa6c4c05
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
f2260f749fe47dc93f9a5936f83c3d0f0d73c3bc051fa9aac66c2cad1f633ed5 - Sigstore transparency entry: 190344627
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4de178fbd9377a17be57bec9c0631301fcf95055819a193bd8f1ee70d4aaee98
|
|
| MD5 |
4dcd26b826845e825900b4cc58d85ac7
|
|
| BLAKE2b-256 |
44cb44e1c01794cd5c93a555b2b50e4c44e63760a1fbe6522209273b404e2f86
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
4de178fbd9377a17be57bec9c0631301fcf95055819a193bd8f1ee70d4aaee98 - Sigstore transparency entry: 190344569
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e979e3349acb6df8a3c440c0b082a2c0e18d50ff979c56895e2d7baaa48af15
|
|
| MD5 |
6fbbcb2e39f3fdadd5350bfebdc34467
|
|
| BLAKE2b-256 |
171a055feb8c42500e5c3a6b8675c149b5127d359025172655c672f2e78f8574
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
4e979e3349acb6df8a3c440c0b082a2c0e18d50ff979c56895e2d7baaa48af15 - Sigstore transparency entry: 190344674
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98514693e2f46af588ad9be114a46947ae7c5ec88b24c63029be8149131bc60a
|
|
| MD5 |
b19c709103fc6149b5ae707a2ddede66
|
|
| BLAKE2b-256 |
d076feaf6dc823cc9ccdd2e01765674cc6e6619318e042ea177429f1f51cfecf
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
98514693e2f46af588ad9be114a46947ae7c5ec88b24c63029be8149131bc60a - Sigstore transparency entry: 190344636
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d621cc8bba9fabe366e6d1fe991a8e309e1c75902dbb07918be948b61daec022
|
|
| MD5 |
27c1179e07b595c2554efe2ae721ffa4
|
|
| BLAKE2b-256 |
ef2cf6c64007356522252e18dab7b9775cf02e3c27210cb44683f117b1b5ac94
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
d621cc8bba9fabe366e6d1fe991a8e309e1c75902dbb07918be948b61daec022 - Sigstore transparency entry: 190344586
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53bfc5f01c5d02e74d49ffcd9c632653bf098334f6d2a879f2596f1fdf9f6b5d
|
|
| MD5 |
f213ce3ab5ed8dc46a2ec3e8c3cbd633
|
|
| BLAKE2b-256 |
95c9211ab0ad88be9f901bdd1881e6661a3c5282504d307af022d406d6c61348
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
53bfc5f01c5d02e74d49ffcd9c632653bf098334f6d2a879f2596f1fdf9f6b5d - Sigstore transparency entry: 190344650
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b2e6b36bdfb9d2a92ec7c0abaca3327dcfcacbe2ba50709f3a41dec25e7d76f
|
|
| MD5 |
49db502d852d660b32cc42f14c77781a
|
|
| BLAKE2b-256 |
aca19e8be112fed9c38ce8bf9177fa4d8c85df6b0740af6d10f6999b903590af
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
4b2e6b36bdfb9d2a92ec7c0abaca3327dcfcacbe2ba50709f3a41dec25e7d76f - Sigstore transparency entry: 190344601
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30066b8334f4e00930f80890bfe2869fbb7b7022ae72a77ea09dba99c5c3eb25
|
|
| MD5 |
ec334284a904fd8222886ae3fe1d0445
|
|
| BLAKE2b-256 |
6d524f9df83d9508277fcbb6bf2c37710f73f175bd209aa0aace0c1a407edbb0
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
30066b8334f4e00930f80890bfe2869fbb7b7022ae72a77ea09dba99c5c3eb25 - Sigstore transparency entry: 190344656
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d367d9b2cb3295e760113f9fdbc8cebbf6757d6019f37cbcad8214ba2b6a74c
|
|
| MD5 |
bb868cbe76c3565e0587f3489c470652
|
|
| BLAKE2b-256 |
828dd44cbbdb985181c575bfc94df8a1d221d002d4e6d6576e2f51c05cdabf9e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
6d367d9b2cb3295e760113f9fdbc8cebbf6757d6019f37cbcad8214ba2b6a74c - Sigstore transparency entry: 190344425
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d9ff34071b2ef4dce4407ed5fe29049cc344c314f5db22db8c497035873f838
|
|
| MD5 |
c415af2fdd6b4018e10de49b0d8eaeab
|
|
| BLAKE2b-256 |
4dbac2729e7b5a71c36a56613297f0dfb0b41fa6fb5bedb9e23580cb896145a9
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
4d9ff34071b2ef4dce4407ed5fe29049cc344c314f5db22db8c497035873f838 - Sigstore transparency entry: 190344542
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dd53e2f1d820c0fae9281fe517648ce72cddb9090794b4db7f33fd13ba28797
|
|
| MD5 |
c5821c6fb4a2fbd70e4dfec4860a6fb4
|
|
| BLAKE2b-256 |
76aecf1119328138094bb432839dced9642aa81a01cd9409b7b5323262f3a273
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-win_amd64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-win_amd64.whl -
Subject digest:
2dd53e2f1d820c0fae9281fe517648ce72cddb9090794b4db7f33fd13ba28797 - Sigstore transparency entry: 190344555
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-win32.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db8cf34b6d1b24cb0ed0afb6594b20ee88b3bb603b2b3a69f5070c890405ccf
|
|
| MD5 |
c6e5de7a3a6c88353ae7dcb8ae189e09
|
|
| BLAKE2b-256 |
da46160e9d4a180c482b527da7f94fe18d14d8a1bb15e9ff6e94f6d04ac36ca0
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-win32.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-win32.whl -
Subject digest:
1db8cf34b6d1b24cb0ed0afb6594b20ee88b3bb603b2b3a69f5070c890405ccf - Sigstore transparency entry: 190344538
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e816f0dc1be97d42eca0562bd386b71ef0aad0687dad240bad11e4963db2459
|
|
| MD5 |
f4f5a2c45adbd99f58912ad56fc241c2
|
|
| BLAKE2b-256 |
1eb28f73451c9ad65e824848fa5d2ff42bf77c3dd46993f4ac149a4647632fed
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
8e816f0dc1be97d42eca0562bd386b71ef0aad0687dad240bad11e4963db2459 - Sigstore transparency entry: 190344363
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
572ab47695cfb737a780982dba3bb906d932a577acd9b1ea0dc2bc2b64f6c6d8
|
|
| MD5 |
a878379897f6d208edfd87fa7dc14722
|
|
| BLAKE2b-256 |
f03177e55f4edfe03946da0f0b2ab7db1d7c87aa3cf86f8f546b91cdb1d9ecdd
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
572ab47695cfb737a780982dba3bb906d932a577acd9b1ea0dc2bc2b64f6c6d8 - Sigstore transparency entry: 190344591
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46d4be4dee29f015581d12d6d0540509e93897167217cdf7ddcf0dd12553edc4
|
|
| MD5 |
51f02b32d4d4359a6c767ba016661330
|
|
| BLAKE2b-256 |
9075590f33727653dafc58308919b45bd7fe4cd98dbcd12125156a1d7c25ff47
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl -
Subject digest:
46d4be4dee29f015581d12d6d0540509e93897167217cdf7ddcf0dd12553edc4 - Sigstore transparency entry: 190344559
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c03baa0f4151011e77e100aca285388ca0e1c1f79afdfb3571090436cb682811
|
|
| MD5 |
ad9494c13653b8d847b21aabb7ac86c7
|
|
| BLAKE2b-256 |
f4b0b61857ae753e398b7ca8f66b2a804a67a147ca5add932af0a772060fb78e
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl -
Subject digest:
c03baa0f4151011e77e100aca285388ca0e1c1f79afdfb3571090436cb682811 - Sigstore transparency entry: 190344654
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3d97db4474d1e6a04f3c0541039c1ced4eec0b7d7af094013f5d9f904225086
|
|
| MD5 |
6f8f94f3357821425904c3826ee58216
|
|
| BLAKE2b-256 |
047688d997508b7e4efd02a0af37b971c8c1402ff6907c380d5c400b2f63fdba
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
c3d97db4474d1e6a04f3c0541039c1ced4eec0b7d7af094013f5d9f904225086 - Sigstore transparency entry: 190344588
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aed0c10dc41e520f3bba1fcb7e03e5d7942e922836ef7c10558269e5959bcb98
|
|
| MD5 |
a34f576c294db5969394e10705c09b1a
|
|
| BLAKE2b-256 |
fadecabdeffbf64152583cb0d7b530a9816e79b55bb2b38d365e3227ddfc91f0
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl -
Subject digest:
aed0c10dc41e520f3bba1fcb7e03e5d7942e922836ef7c10558269e5959bcb98 - Sigstore transparency entry: 190344607
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f82259cbdf6818c96fcf5c72f30c2062e0e749bdb544f1697e960b46c522143
|
|
| MD5 |
a8e3725ac999b6d20b08642b3a279ade
|
|
| BLAKE2b-256 |
4a3b252a8bb939513e2476d07300acb2b861cef2fcbc4cca48d21c45de08a19c
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl -
Subject digest:
9f82259cbdf6818c96fcf5c72f30c2062e0e749bdb544f1697e960b46c522143 - Sigstore transparency entry: 190344445
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2fc165bf25b9a4633eca424ab997eadd8fb75437d81d3fc4700aa622fa177f3
|
|
| MD5 |
9ff8bcd8739fcd87f67fc3190c8a93c0
|
|
| BLAKE2b-256 |
c19a97b81245c010a152c8b6ea2cd10c569f7bd54cd429c335efe558346c09f9
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl -
Subject digest:
b2fc165bf25b9a4633eca424ab997eadd8fb75437d81d3fc4700aa622fa177f3 - Sigstore transparency entry: 190344664
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc0ca26e59bd264c319e36ef096ef106543725ecd718c73449ca7c234ae5a9b9
|
|
| MD5 |
4c6601c862203021ff351421123159fa
|
|
| BLAKE2b-256 |
7faceb948695d0340a94c4be260570c3f3380e40333b1aaf125fa39be6a51e4d
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl -
Subject digest:
cc0ca26e59bd264c319e36ef096ef106543725ecd718c73449ca7c234ae5a9b9 - Sigstore transparency entry: 190344582
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98b7788f7108fffdc248de031604fbc9510551fb638dcdfb258a486a2ce2b79d
|
|
| MD5 |
a5eb4499e474cae1c79a9a5c4501cf3a
|
|
| BLAKE2b-256 |
a42aa5822a9e3d3e1ce15f723eabd3a7c5eba5d14e72d66cf39dff0b19894482
|
Provenance
The following attestation bundles were made for pylibsufr-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
CI.yml on TravisWheelerLab/pylibsufr
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pylibsufr-0.1.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl -
Subject digest:
98b7788f7108fffdc248de031604fbc9510551fb638dcdfb258a486a2ce2b79d - Sigstore transparency entry: 190344662
- Sigstore integration time:
-
Permalink:
TravisWheelerLab/pylibsufr@850f2f3f09109750c80f448508caa3a9603e39f5 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TravisWheelerLab
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@850f2f3f09109750c80f448508caa3a9603e39f5 -
Trigger Event:
push
-
Statement type: