A fast, correct YAML library for Python, written in Rust
Project description
🪨 YAMLRocks
Rock-solid YAML for Python, written in Rust.
About
YAMLRocks is the rock-solid YAML library for Python: a Rust-backed extension that parses and emits YAML fast, follows the YAML 1.2 specification (with a YAML 1.1 compatibility mode), and, unlike PyYAML, round-trips documents while preserving comments, anchors, and formatting.
Rock-solid means three things: correct, secure by default, and fast, with a Rust core doing the heavy lifting. (The R in Rock is for Rust.)
The Python YAML ecosystem has long forced a trade-off. YAMLRocks refuses it:
| Library | Fast | YAML 1.2 | Comments / round-trip | Native includes |
|---|---|---|---|---|
| PyYAML | with C loader | ✗ (1.1 only) | ✗ | ✗ |
| ruamel.yaml | ✗ (pure Python) | ✓ | ✓ | ✗ |
| YAMLRocks | ✓ (Rust) | ✓ | ✓ | ✓ |
It is also fast. Release-build benchmarks (python bench/bench.py) show how
many times faster YAMLRocks is:
| Operation | vs PyYAML (C loader) | vs ruamel.yaml |
|---|---|---|
Parse (loads) |
~5-10x faster | ~85-135x faster |
Serialize (dumps) |
~15-19x faster | ~155-210x faster |
Split config (!include, hundreds of files) |
~18x faster | n/a |
It is safe against the common YAML attack classes, free-threaded (nogil) ready,
and ships with JSON Schema validation, a PyYAML-compatible shim, rich standard-library
type support, and the !secret and !env_var config tags.
YAMLRocks is also tested against a reproducible real-world corpus covering Home
Assistant, ESPHome, Ansible, Kubernetes, Docker Compose, GitHub Actions,
CloudFormation, GitOps, Helm, OpenAPI, dbt, CircleCI, Serverless, and Tekton.
Each standalone YAML file must parse and round-trip byte-for-byte; selected Home
Assistant configs are additionally tested through their full !include graph.
See real-world verification for the current corpus and
scope.
YAMLRocks is pre-1.0 software. The core promises are already explicit: safe loading by default, YAML 1.2 semantics, reproducible real-world verification, and byte-for-byte round-trip for unmodified documents. Some advanced APIs may still change before 1.0 while the project gathers production feedback. See the stability and roadmap page for the 1.0 contract.
Installation
pip install yamlrocks
Building from source requires a Rust toolchain; see Setting up development environment below for the uv-based build.
Usage
The API stays small: loads returns native Python objects and dumps
returns bytes.
import yamlrocks
# Parse YAML into native Python objects
data = yamlrocks.loads(b"key: value\nlist:\n - 1\n - 2")
# {'key': 'value', 'list': [1, 2]}
# Serialize back to YAML bytes (dumps() returns bytes)
yamlrocks.dumps(data)
# b'key: value\nlist:\n - 1\n - 2\n'
# Multiple documents
yamlrocks.loads_all(b"---\na: 1\n---\nb: 2")
# [{'a': 1}, {'b': 2}]
# Load and dump files directly
config = yamlrocks.load("config.yaml")
yamlrocks.dump(config, "config.yaml")
YAML 1.1 compatibility
YAML 1.2 is the default, so yes/no/on/off are plain strings. Opt into the
1.1 schema when you need its booleans and octals:
yamlrocks.loads(b"enabled: yes") # {'enabled': 'yes'}
yamlrocks.loads(b"enabled: yes", option=yamlrocks.OPT_YAML_1_1) # {'enabled': True}
OPT_UPGRADE_1_1 reads 1.1 and always emits canonical 1.2, so a project can
ease off the legacy spellings without a manual conversion step.
Structure-preserving round-trip
doc = yamlrocks.loads(content, option=yamlrocks.OPT_ROUND_TRIP)
doc["server"]["host"] = "example.com" # deep edits write through to the AST
print(doc.to_yaml().decode()) # comments and formatting preserved
An unmodified document re-emits byte-for-byte identical; only the nodes you touch are rewritten.
Native includes (read and write back)
doc = yamlrocks.loads(
content,
option=yamlrocks.OPT_ROUND_TRIP | yamlrocks.OPT_INCLUDES,
include_dir="/config",
)
doc["automation"][0]["trigger"] = "state" # edit a value from an included file
yamlrocks.dump_includes(doc, include_dir="/config")
# Only the modified included file is rewritten; the root config is untouched.
Supported tags: !include, !include_dir_named, !include_dir_list,
!include_dir_merge_named, !include_dir_merge_list.
Annotated mode (source-location tracking)
data = yamlrocks.loads(content, option=yamlrocks.OPT_ANNOTATED)
data.__line__ # 1
data["server"].__line__ # 3
YAMLRocksAnnotatedDict/YAMLRocksAnnotatedList/YAMLRocksAnnotatedStr subclass dict/list/str, so
they behave exactly like the built-ins while carrying __line__, __column__,
and __file__, compatible with Home Assistant's annotated YAML.
Option flags
Options compose with |, the integer bit-flag pattern:
| Flag | Effect |
|---|---|
OPT_YAML_1_1 |
YAML 1.1 schema (yes/no booleans, octals, etc.) |
OPT_UPGRADE_1_1 |
Read 1.1, always emit canonical 1.2 |
OPT_ROUND_TRIP |
Return a YAMLRocksDocument preserving comments and formatting |
OPT_ANNOTATED |
Return subclasses with source locations |
OPT_INCLUDES |
Resolve !include tags (needs include_dir) |
OPT_DUPLICATE_KEYS_ERROR |
Reject a repeated mapping key |
OPT_INDENT_2 / OPT_INDENT_4 |
Indentation width for dumps |
OPT_SORT_KEYS |
Sort mapping keys when dumping |
OPT_FLOW_STYLE |
Emit flow style ({}/[]) |
OPT_LITERAL_STRINGS |
Emit multi-line strings as literal blocks (|) |
OPT_EXPLICIT_START / OPT_EXPLICIT_END |
Emit --- / ... markers |
See the documentation for the full option set, including the standard-library type and datetime flags.
Documentation
Full documentation lives at yaml.rocks: getting-started guides, recipes (Home Assistant, config editors), the complete API reference, security notes, and head-to-head comparisons with PyYAML and ruamel.yaml.
Changelog & Releases
This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.
Releases are based on Semantic Versioning, and use the format
of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented
based on the following:
MAJOR: Incompatible or major changes.MINOR: Backwards-compatible new features and enhancements.PATCH: Backwards-compatible bugfixes and package updates.
Contributing
This is an active open-source project. We are always open to people who want to use the code or contribute to it.
We've set up a separate document for our contribution guidelines.
Using AI tools to help is fine, but you must review and understand everything you submit. Please read our AI Policy first; autonomous agents are not allowed, and unreviewed AI output will be closed.
Thank you for being involved! :heart_eyes:
Setting up development environment
The easiest way to start is by opening a CodeSpace here on GitHub, or by using the Dev Container feature of Visual Studio Code.
YAMLRocks is a Rust extension built with maturin and managed with uv, which
handles the Python version, the virtual environment, and every dependency from
pyproject.toml. You need:
- A Rust toolchain
- uv (it installs a suitable Python 3.12+ for you)
- Node.js 22+ (only for the documentation site and some lint hooks)
To set up the environment and build the extension:
uv sync # create the venv and install all dev dependencies
uv run maturin develop # build and install the extension (rerun after Rust changes)
As this repository uses the prek framework, all changes are linted and tested with each commit. You can run all checks manually:
prek run --all-files
To run just the tests (always under a memory guard during development):
timeout 120 bash -c 'ulimit -v 3000000; uv run pytest'
See CONTRIBUTING.md for the full workflow, including the
just task runner and how to fetch the optional test-data submodules.
Authors & contributors
The original setup of this repository is by Franck Nijhof.
For a full list of all authors and contributors, check the contributor's page.
License
MIT License
Copyright (c) 2026 Franck Nijhof
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yamlrocks-0.3.0.tar.gz.
File metadata
- Download URL: yamlrocks-0.3.0.tar.gz
- Upload date:
- Size: 650.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a0f2f841801831e348853e41458fad6d12d4f68942964ebe1e7033b0fbf0711
|
|
| MD5 |
a1eaad87ded623cf0cb91edc24459db8
|
|
| BLAKE2b-256 |
4ea8ab810e24232b904a715d24c1cbca6b3c50def02efc1f8ea5e6b073a5bf66
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0.tar.gz:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0.tar.gz -
Subject digest:
8a0f2f841801831e348853e41458fad6d12d4f68942964ebe1e7033b0fbf0711 - Sigstore transparency entry: 1938126709
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-win_arm64.whl
- Upload date:
- Size: 525.2 kB
- Tags: CPython 3.15t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
059b1c0b519444d4f015447736afd7185879191d9ccaa1851cbd74d103198b8d
|
|
| MD5 |
3d4a976d9d97bda88c9deabaa9bfd64a
|
|
| BLAKE2b-256 |
6be0a8bd630e4afa638626667cc089f2d1545c50d490eb471c2bd909fde9d790
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-win_arm64.whl -
Subject digest:
059b1c0b519444d4f015447736afd7185879191d9ccaa1851cbd74d103198b8d - Sigstore transparency entry: 1938127420
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-win_amd64.whl
- Upload date:
- Size: 564.7 kB
- Tags: CPython 3.15t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df1a1c23afdfc4706c3124a897c8da229b47b29d905a30d38145650df4452466
|
|
| MD5 |
a6296bdcc0c047cf62fd447b81c52a2b
|
|
| BLAKE2b-256 |
01c764af5b2b1a00ed85ea71e4eed9a616fa2cab308205eac0e82d9fc0ede3b5
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-win_amd64.whl -
Subject digest:
df1a1c23afdfc4706c3124a897c8da229b47b29d905a30d38145650df4452466 - Sigstore transparency entry: 1938130212
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-win32.whl
- Upload date:
- Size: 520.9 kB
- Tags: CPython 3.15t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbf6b28c4baaf35e9d4ff48587bd28351507b7951dc44fa76c901fb6821df82a
|
|
| MD5 |
7a2992297ea08104cca16129b15f7595
|
|
| BLAKE2b-256 |
59353da40ddf6a5a75fe515f576343d94ac325abf40f76b205da83f7869dfda7
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-win32.whl -
Subject digest:
cbf6b28c4baaf35e9d4ff48587bd28351507b7951dc44fa76c901fb6821df82a - Sigstore transparency entry: 1938130161
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 615.4 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f80cfb19fab510aa60b3a941e6e8ac59627d6eb365079601eaeebe30ef813881
|
|
| MD5 |
d37daf0c49a52a5163ff8ea23b372aaa
|
|
| BLAKE2b-256 |
03dc644282f57bccc7aa70337badddeb98c7db2789ffea14bbfcde36e3509478
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f80cfb19fab510aa60b3a941e6e8ac59627d6eb365079601eaeebe30ef813881 - Sigstore transparency entry: 1938127686
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl
- Upload date:
- Size: 558.1 kB
- Tags: CPython 3.15t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faaa42f24a51b7309cb9b789af666d9c046e79003c4592a580b0463fa841580b
|
|
| MD5 |
1e620eb7fbde945ec9af0a64ad81b9d1
|
|
| BLAKE2b-256 |
16005834e71a7c66662a9cc67a97636ed8d32bc8e88f33ef8c60863c63678982
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl -
Subject digest:
faaa42f24a51b7309cb9b789af666d9c046e79003c4592a580b0463fa841580b - Sigstore transparency entry: 1938127347
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 597.9 kB
- Tags: CPython 3.15t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d98f310b24fd700397c2842704c8c2e4cfdbf34ef8589804bb7efce6cfacb229
|
|
| MD5 |
3762b0192fc9d22c707683f00b5c9f46
|
|
| BLAKE2b-256 |
6aaae067ed328f9524f26757ceb57505787fbe0da3319af34cfbdcdd6a4212f0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315t-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315t-macosx_10_12_x86_64.whl -
Subject digest:
d98f310b24fd700397c2842704c8c2e4cfdbf34ef8589804bb7efce6cfacb229 - Sigstore transparency entry: 1938127877
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-win_arm64.whl
- Upload date:
- Size: 527.9 kB
- Tags: CPython 3.15, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd3fd9b9a6b1e68954ae511298f609942787a6003483e6a1b15346de0b509863
|
|
| MD5 |
963d60f949a92c5dbc91938cec5e4d26
|
|
| BLAKE2b-256 |
af0b49470c78eb0dcb54e17f9c3494d54c8b36d2d4a518bf04ff290e173fc301
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-win_arm64.whl -
Subject digest:
fd3fd9b9a6b1e68954ae511298f609942787a6003483e6a1b15346de0b509863 - Sigstore transparency entry: 1938128098
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 567.0 kB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ad3884a203213f45f6b3609d9ba5147840d3bc9f688b98bbd4b934de213edbe
|
|
| MD5 |
bf7f5c3fd08202253304afac20c76ec6
|
|
| BLAKE2b-256 |
1c6b66577b393c6b6912f5091b2b3dccbc570d6a71cc296258ab4352fc05debf
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-win_amd64.whl -
Subject digest:
7ad3884a203213f45f6b3609d9ba5147840d3bc9f688b98bbd4b934de213edbe - Sigstore transparency entry: 1938127915
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-win32.whl
- Upload date:
- Size: 524.6 kB
- Tags: CPython 3.15, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b54f7c647802f181ad3d2926afe9efbf00a75db5ba17c413d174cd58651d00
|
|
| MD5 |
2ba2ef659def7b82f989a91d57cf8702
|
|
| BLAKE2b-256 |
899b550a4d13626e46cc645f707a8952bdea95900a1389b8f56117d854a06df5
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-win32.whl -
Subject digest:
c5b54f7c647802f181ad3d2926afe9efbf00a75db5ba17c413d174cd58651d00 - Sigstore transparency entry: 1938130481
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 616.5 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7de0e72d0d8dda9933272cf380d99f062bb69e4649d2fe7c0eb4ad0e488a81c
|
|
| MD5 |
2ddebf0aed12984232f817b513709332
|
|
| BLAKE2b-256 |
1abf4c6a36d01fe646780a2bc7096d929578a708780d26069c0d38338a3db4f0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b7de0e72d0d8dda9933272cf380d99f062bb69e4649d2fe7c0eb4ad0e488a81c - Sigstore transparency entry: 1938129578
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 563.7 kB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7b585c7b4d50dd684b845da14889fcc0c11d96cce870e3a9374df2d1bf1e1c7
|
|
| MD5 |
0a68dc750754693cd028991529d43998
|
|
| BLAKE2b-256 |
19c2c451c6372ebc4da5f88b6f345d6af3060077acfe2eaec877863e6407a3b0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-macosx_11_0_arm64.whl -
Subject digest:
b7b585c7b4d50dd684b845da14889fcc0c11d96cce870e3a9374df2d1bf1e1c7 - Sigstore transparency entry: 1938128327
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp315-cp315-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp315-cp315-macosx_10_12_x86_64.whl
- Upload date:
- Size: 603.5 kB
- Tags: CPython 3.15, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c842331b7bf449f5ea6001aa6cbcedf20f036b48af615760c6785859c5dd7c2a
|
|
| MD5 |
704e104ec6bea6f8f8060f92f265b0e0
|
|
| BLAKE2b-256 |
6e04b842f085c5b172ac218b1d222cf3c2c16203462a3b93d20a76c76bc49583
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp315-cp315-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp315-cp315-macosx_10_12_x86_64.whl -
Subject digest:
c842331b7bf449f5ea6001aa6cbcedf20f036b48af615760c6785859c5dd7c2a - Sigstore transparency entry: 1938127949
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 525.1 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
353d68dab261ed29fb945d0ab11d7e42a2b11a9d43057e4c83a0a1ec776dd950
|
|
| MD5 |
5bdd547e6cce57c65ee59f03a9437dfa
|
|
| BLAKE2b-256 |
e1db90ebb9d183bb3f138f10daa66c3b0e8a61d23741efe450bfbd8998e392bd
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-win_arm64.whl -
Subject digest:
353d68dab261ed29fb945d0ab11d7e42a2b11a9d43057e4c83a0a1ec776dd950 - Sigstore transparency entry: 1938128621
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 564.7 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffde94a9bef0fa9ee9ac2b4b042b5f2e82ddbe310c439f8d11c9b1a78ef81a83
|
|
| MD5 |
ca05e04cdb8f5fdad036acdaa53c93cf
|
|
| BLAKE2b-256 |
685eff37a27069ca9383b5fe736b52dc9d5f3ea89c2c0a95df95fa5c9efce079
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-win_amd64.whl -
Subject digest:
ffde94a9bef0fa9ee9ac2b4b042b5f2e82ddbe310c439f8d11c9b1a78ef81a83 - Sigstore transparency entry: 1938127472
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 520.7 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b2c458ae7a5b5e6ed9e96ee1242d890cc00046d11bc7f5a85c2c40cc5041395
|
|
| MD5 |
7ea8f242251f5b0291b11d7d43891771
|
|
| BLAKE2b-256 |
66f369c57dc123ddad237cb5e87fcabeab02eea146c7eb89023145cab6c3595a
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-win32.whl -
Subject digest:
0b2c458ae7a5b5e6ed9e96ee1242d890cc00046d11bc7f5a85c2c40cc5041395 - Sigstore transparency entry: 1938128254
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 829.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57b5d8045b193f7844ba86a4a7b6513279eaa3e9930db572aa047d369f22c5ec
|
|
| MD5 |
2144b49f7dd8a96b6a84f3cbe6321295
|
|
| BLAKE2b-256 |
93e6fed12a4851cb109f520b4f7fc0bd8c5ee472e9b9289248070955eab14c16
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
57b5d8045b193f7844ba86a4a7b6513279eaa3e9930db572aa047d369f22c5ec - Sigstore transparency entry: 1938127274
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 755.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a8340bc6d314b3a252fbc72cc896bd08a34a4a8a6b6c22ffe6cd623dd7116f9
|
|
| MD5 |
1e4342232a464ecdb22fb9109fbb4bc3
|
|
| BLAKE2b-256 |
51edc99c86612344174ef65b00f8d524a33807e2eb9e9fda2edc82e03c4c63ac
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
3a8340bc6d314b3a252fbc72cc896bd08a34a4a8a6b6c22ffe6cd623dd7116f9 - Sigstore transparency entry: 1938127762
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 615.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bf952e23768f2130b21cb8b740ba44e398827320a146dc9be47cf6d24b347b6
|
|
| MD5 |
b318e0d6f03b59078192cf6128f3efab
|
|
| BLAKE2b-256 |
a8fa94041198e44c370d525eb5634c188faf65dc51bd0d0533e8dfc712b6290c
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5bf952e23768f2130b21cb8b740ba44e398827320a146dc9be47cf6d24b347b6 - Sigstore transparency entry: 1938128829
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 578.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
760f937ab6590e28b2de9020b8596ef1fe46f0e45f8872bae20880f65842c930
|
|
| MD5 |
7016591fb510872112ea8a29b1da0e06
|
|
| BLAKE2b-256 |
41ea4609e535774c6751d35066d26e3e01f0fa4effed23aa7838a9200b881299
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
760f937ab6590e28b2de9020b8596ef1fe46f0e45f8872bae20880f65842c930 - Sigstore transparency entry: 1938127564
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 558.1 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4fc6976ddd028fc40a1f8fff9b73e217ed4ca7a4133aed9d5e53676692eb7e3
|
|
| MD5 |
030502aaaaaabc3bbe555fdb946cb43e
|
|
| BLAKE2b-256 |
4f510d31ab80a53060ec3726edd9a92c087778ab9a855de48436ac9ba25f2db4
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
e4fc6976ddd028fc40a1f8fff9b73e217ed4ca7a4133aed9d5e53676692eb7e3 - Sigstore transparency entry: 1938127672
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 597.9 kB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daa0904a243a3606380ebbac060e42cf59ce65781324be53a3a86410433a6902
|
|
| MD5 |
b2efdfa3d069fdce7301054af491860e
|
|
| BLAKE2b-256 |
2697b909e29b90d784e3e800ced6ef30082f2e33c73761befcec341722695096
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl -
Subject digest:
daa0904a243a3606380ebbac060e42cf59ce65781324be53a3a86410433a6902 - Sigstore transparency entry: 1938129657
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 527.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed78c1db6a3232635577850bf4d09754c2802e428e18a0128163fc218183d88a
|
|
| MD5 |
5c89932040d18dc774181cb3d67958f8
|
|
| BLAKE2b-256 |
991f0ff3e503578c13757fc3068c98f3bd7237b6fa5be4fda417cc06565995c7
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-win_arm64.whl -
Subject digest:
ed78c1db6a3232635577850bf4d09754c2802e428e18a0128163fc218183d88a - Sigstore transparency entry: 1938127088
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 566.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82b0b21ede64bf96e55d2d97985244a0b186a0c5b2439db23346a2171735994e
|
|
| MD5 |
a5e2d23cf3a379be7f363b396f341409
|
|
| BLAKE2b-256 |
03727b175dd7145ab80a7e272dbadcefdd27cde67cb02db30517538a6f46468b
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-win_amd64.whl -
Subject digest:
82b0b21ede64bf96e55d2d97985244a0b186a0c5b2439db23346a2171735994e - Sigstore transparency entry: 1938128577
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 524.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b7bff939bc5399ddf537e3c3eddda7d2f6adda8369943228c2102d2e2a77880
|
|
| MD5 |
6437dbf9d319d738476232f1c766707c
|
|
| BLAKE2b-256 |
e862c5edb92c2be1ca0de56c3b67fe245f75bbaa0318c77de5b95ef1f74835fa
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-win32.whl -
Subject digest:
0b7bff939bc5399ddf537e3c3eddda7d2f6adda8369943228c2102d2e2a77880 - Sigstore transparency entry: 1938127740
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 830.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df0e4a53ea932a0c03b02fc6614fadf917bc92820a19a7ea0da875eb8a3c3019
|
|
| MD5 |
16d8f7805e63a969789125eedf30db18
|
|
| BLAKE2b-256 |
bbedc3a836147a330bfb8a2c73b5ea1e259c66f3a44bf725d4ee002f66b4998f
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
df0e4a53ea932a0c03b02fc6614fadf917bc92820a19a7ea0da875eb8a3c3019 - Sigstore transparency entry: 1938127618
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 857.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d0e4c0d3d8f9ee3a577431d626af5300286878071d26ac813a6b0db2b35e192
|
|
| MD5 |
1df211dbcd48e75dcd2837d47a99a362
|
|
| BLAKE2b-256 |
4799f792b10955eec3994ffcf998298cf3ac99a57955eacbb67ecf63235e3a80
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
6d0e4c0d3d8f9ee3a577431d626af5300286878071d26ac813a6b0db2b35e192 - Sigstore transparency entry: 1938128153
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 873.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f8dfb27fc8200b09f5cc7193e9d9f13242e1e757737222536b3aaa4452ba67e
|
|
| MD5 |
c39b34524290ecf15a2cd59f5e0dd8c9
|
|
| BLAKE2b-256 |
cfdca5b0a0743e430fe2b3e27e3d7a405698b8dc0f534974c6c8e3f32b814fc3
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
5f8dfb27fc8200b09f5cc7193e9d9f13242e1e757737222536b3aaa4452ba67e - Sigstore transparency entry: 1938128058
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 758.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0f88336bdcfe556d3a0bbdac1afd751379023128e57938236364dc53f9f3b16
|
|
| MD5 |
a7106760dc695b851bae455f3fbeb00e
|
|
| BLAKE2b-256 |
2f21827c3043ce542008344f757e238cb08d7a88fec17e64f36dd66ab4b81ad0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
f0f88336bdcfe556d3a0bbdac1afd751379023128e57938236364dc53f9f3b16 - Sigstore transparency entry: 1938126959
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 616.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aaf85aa3c64c651c71f1b259320f1619121ce55618b45096883ae8ba57addf0f
|
|
| MD5 |
5d7a6a249fb325a4bfdc5e688163a933
|
|
| BLAKE2b-256 |
a79e13d60109660dc1f4062e6e75c8e94cde503ba5e27bf95761619d5afeb9b3
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
aaf85aa3c64c651c71f1b259320f1619121ce55618b45096883ae8ba57addf0f - Sigstore transparency entry: 1938129153
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 666.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b20af969bc8bc440c07891ea91c45b8ee30ff42a81d04b609b91e3fcf6eec6
|
|
| MD5 |
854b2da158c86c54a5c0779dec1f9bf4
|
|
| BLAKE2b-256 |
acb25fb5cae4f988fcd086a81e7d9a86c92d38d4c47fe1c1347a37cd2b538ec8
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
62b20af969bc8bc440c07891ea91c45b8ee30ff42a81d04b609b91e3fcf6eec6 - Sigstore transparency entry: 1938130073
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 596.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6978133a361bf17102da8b73bd4062832986c891906093bd6c216bb43acd8d96
|
|
| MD5 |
7ca9ae9a6190e1f1afc0b537fe50fee2
|
|
| BLAKE2b-256 |
b64d2579650ba174e6b13336223a275208541c062a6ee87fa60d2313a1039054
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
6978133a361bf17102da8b73bd4062832986c891906093bd6c216bb43acd8d96 - Sigstore transparency entry: 1938128202
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 580.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c42d401f95302cbde0d8452764de81ad48df3918c2fc2a4564995b8ac99d3af9
|
|
| MD5 |
ed1462778a37e80a59df051b2414500f
|
|
| BLAKE2b-256 |
f18d4178fc90292b560224db276dbf35f7d635a95da9b2c8ab2215b8c6634219
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c42d401f95302cbde0d8452764de81ad48df3918c2fc2a4564995b8ac99d3af9 - Sigstore transparency entry: 1938128013
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 650.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5671fd3f8396cd5a1132176452301c2f39a803cf0e43590f42753009d7829a14
|
|
| MD5 |
aaefc67ae41b65b7a9d9e8d8c7e3f052
|
|
| BLAKE2b-256 |
c20a8456bc6cdea1ee6473f4de8a3d244124c6d1955473b53370a6033bd5f4eb
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
5671fd3f8396cd5a1132176452301c2f39a803cf0e43590f42753009d7829a14 - Sigstore transparency entry: 1938129811
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 563.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c48e14bd6e9a050f9be120232f1f504a791e6e9037feb8ce67b9045f1482c63
|
|
| MD5 |
ec57fc97dfa5bb07bd252ff03ad8b32b
|
|
| BLAKE2b-256 |
1a10407eb1f6dfb0d76e5ea1e9f7c6d5b1b1626c6a8ad7ecec7a17104e34d6c2
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
1c48e14bd6e9a050f9be120232f1f504a791e6e9037feb8ce67b9045f1482c63 - Sigstore transparency entry: 1938129030
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 603.6 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca252dcc49afbbed64a60030b7dd4e567de11f184c127e8bd7f4b7dad70d9394
|
|
| MD5 |
7c8f6b5b51d5bc696454d406ff4047ff
|
|
| BLAKE2b-256 |
c6ea75565c5d3f0bb78cb70c637a7d3186918091e76d0f02f73abc313599690f
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
ca252dcc49afbbed64a60030b7dd4e567de11f184c127e8bd7f4b7dad70d9394 - Sigstore transparency entry: 1938127577
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 527.8 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1dc4dbfbd0c5cc3d37e7d6dc730aee03c3a222afbbb09c90f80a43bf844b79f
|
|
| MD5 |
8a81ab05366a9d0881cfe6d3c2cbe01a
|
|
| BLAKE2b-256 |
a6dd69bbf37f7c22039f0df61c1602d2525e2c85f1a7c156b279d8f8d7d46a08
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-win_arm64.whl -
Subject digest:
e1dc4dbfbd0c5cc3d37e7d6dc730aee03c3a222afbbb09c90f80a43bf844b79f - Sigstore transparency entry: 1938130005
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 566.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
453cbe48bf900b9dc2e81917dff35f3fa8c0d5224d4dd2fcd6dd378a091a921c
|
|
| MD5 |
e3c3a3cb9443590e244ccc729065b121
|
|
| BLAKE2b-256 |
a293347e811188f665f1ec9e8d63849f6a2c1850b9ee22f13db396c8c30a04e0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
453cbe48bf900b9dc2e81917dff35f3fa8c0d5224d4dd2fcd6dd378a091a921c - Sigstore transparency entry: 1938126783
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 523.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c8bf8d5f7a2c06f018920c66770e9af98a24ae9ed10ea4324ef74fed7ac6f6b
|
|
| MD5 |
0922dcec74121b6e79e894bf8a626ea3
|
|
| BLAKE2b-256 |
fdb8395e5bf391164cebad2c61bfeea9bea3bd8418bf3587309b7d2abc2337c8
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-win32.whl -
Subject digest:
1c8bf8d5f7a2c06f018920c66770e9af98a24ae9ed10ea4324ef74fed7ac6f6b - Sigstore transparency entry: 1938127980
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 829.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fc53fbdf6eab1fad9f5051ce12494767d369d56f62d05197786c1138582c94a
|
|
| MD5 |
d4e2ca630df31ca84379d12fba07076f
|
|
| BLAKE2b-256 |
b6cbde785e3949c4baf9c0e6fc8690e9f0dc4678629f0175c7ca07a382a566e1
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
5fc53fbdf6eab1fad9f5051ce12494767d369d56f62d05197786c1138582c94a - Sigstore transparency entry: 1938129082
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 857.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0894e86942ede10a1ae6454adf225e377f5e8ba27242a6c8fa624b8ed6564f9b
|
|
| MD5 |
f24d24aca0dd0d331d4f0becd3e82ee4
|
|
| BLAKE2b-256 |
0d81d418318e3e75356a42988f3479728c0173e9f4818b72ea35eb59962af17c
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
0894e86942ede10a1ae6454adf225e377f5e8ba27242a6c8fa624b8ed6564f9b - Sigstore transparency entry: 1938128430
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 872.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f70f0356a3bf2478275d0edb02abdea9f9d56c42c51e7edf34bafe7cdd8f809
|
|
| MD5 |
1edb55c3ecc0f0235e410b2e88216a02
|
|
| BLAKE2b-256 |
fbe6b175ad97fa339a776b528cdeed8bb5f5868d295dedd9c0f62c45fc4ee1e0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
2f70f0356a3bf2478275d0edb02abdea9f9d56c42c51e7edf34bafe7cdd8f809 - Sigstore transparency entry: 1938129965
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 758.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
076a0ff3e992bd7e289cb91cdfa4e757cf233febddc454610f9aa4fa1e68929c
|
|
| MD5 |
a6855597fe51b28e1617eceb2bf935de
|
|
| BLAKE2b-256 |
b911bbee0e3225cf1922e5a8d04963cbd67adb75ff6ec89cb0150d3e06db29f2
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
076a0ff3e992bd7e289cb91cdfa4e757cf233febddc454610f9aa4fa1e68929c - Sigstore transparency entry: 1938128767
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 616.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4495690bd047c02a86f48050e578553a8b2ca6424ef258dd91c03035095cc852
|
|
| MD5 |
f9ebdfae332e23ea9b70144ffde73e7c
|
|
| BLAKE2b-256 |
4043289962df59cb872b463c83a32c693670ac8d1e3ab5d0d19d080f59bb6a87
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4495690bd047c02a86f48050e578553a8b2ca6424ef258dd91c03035095cc852 - Sigstore transparency entry: 1938129887
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 665.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71eeac942513f31c12e30412f7f2351ce9a8d56d9443905c3434340f6fdecc44
|
|
| MD5 |
66757ff5e06a0a1315d6138a8844455a
|
|
| BLAKE2b-256 |
fe23b5f15adb1244e8ce566a21630f0ae771bed728fb8692373c6dd4311744b4
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
71eeac942513f31c12e30412f7f2351ce9a8d56d9443905c3434340f6fdecc44 - Sigstore transparency entry: 1938127798
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 595.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7957bac72f3f850cce18f2824942de7d9dbed3b82c9306da8a5f0b87c971337f
|
|
| MD5 |
703ea687313e1f13f4ed5e58f8af0c5f
|
|
| BLAKE2b-256 |
920e5031048094048371fe670c53c5e87ba29ab08a126d56665aa21f9350c058
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
7957bac72f3f850cce18f2824942de7d9dbed3b82c9306da8a5f0b87c971337f - Sigstore transparency entry: 1938130337
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 580.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cd90d6c9a59a6962a8d7efe52b3205e83bd1ddcd7c4611b888fa0885836719b
|
|
| MD5 |
2bfc5eca9f864a456c7fa9f8087d0dfb
|
|
| BLAKE2b-256 |
7a8537e1ef45c2cf281111ac60fb5dc76348d29ca246a53648e30109cbcb5c8e
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
8cd90d6c9a59a6962a8d7efe52b3205e83bd1ddcd7c4611b888fa0885836719b - Sigstore transparency entry: 1938127841
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 649.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2347af07e86cc44ea18a8a97fc88e141beb94b27b0d6a26b7064e6feea44d843
|
|
| MD5 |
f2de2a281ebefa14410ddd4e8d771c33
|
|
| BLAKE2b-256 |
8f09fb48776c9cb871ac53b2ea23b4eac670d7297714109b8e527c56b6bd5d47
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
2347af07e86cc44ea18a8a97fc88e141beb94b27b0d6a26b7064e6feea44d843 - Sigstore transparency entry: 1938129732
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 563.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cc4197d6b4e4ab0e7b6f668b38f822b61f1855605e356309300ab4c157fcea9
|
|
| MD5 |
bf9946f28c383926fcf8fa906110a15b
|
|
| BLAKE2b-256 |
19b6d8d0c5168c8e358f1054bd507fd89af855d619bb9f9af5664a01040f47eb
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
7cc4197d6b4e4ab0e7b6f668b38f822b61f1855605e356309300ab4c157fcea9 - Sigstore transparency entry: 1938127208
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 603.1 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db1fe63c65b0db6cce66d8e9ab1537da64f9b33f7d9de8d0d545189a237160cd
|
|
| MD5 |
71239078941f05cf3535504d9074085e
|
|
| BLAKE2b-256 |
922e3c233af3a86dec360cbff9cc3a8a1b66c0eb955b38b706b10211da7f5505
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
db1fe63c65b0db6cce66d8e9ab1537da64f9b33f7d9de8d0d545189a237160cd - Sigstore transparency entry: 1938129486
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 528.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e08fac6f23833125b58e6ccea8be685167009444208265b02bcb7b3b3994f2a
|
|
| MD5 |
f60e69574b471d7a45955372962bf849
|
|
| BLAKE2b-256 |
435a5692d93bfa49ea6ccbd4f5491d6044c707c5c49d27608b0ff161bcc8f7d9
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-win_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-win_arm64.whl -
Subject digest:
1e08fac6f23833125b58e6ccea8be685167009444208265b02bcb7b3b3994f2a - Sigstore transparency entry: 1938128504
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 566.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
460f5293cd532e64dbd4dc0348b408f6c9e10e47b8de1b4942d894910580554d
|
|
| MD5 |
37c211861528f79a97b667c405a95f86
|
|
| BLAKE2b-256 |
00a846752dd6b818dc4fddf70ce4fd74680c286cfb296fb4101b866f05f9ff75
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
460f5293cd532e64dbd4dc0348b408f6c9e10e47b8de1b4942d894910580554d - Sigstore transparency entry: 1938127030
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 523.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d317af2715b2bd58936914cb9ad7afa763fa8f29bd7812bbf09b3665f4df383
|
|
| MD5 |
71c14654e15dee58c2a9b4bf2826877a
|
|
| BLAKE2b-256 |
9f9d89bd8d53aad2d4c1cd6bc58ecea3574739c5ac4f2b50a5e74ee902f036d1
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-win32.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-win32.whl -
Subject digest:
5d317af2715b2bd58936914cb9ad7afa763fa8f29bd7812bbf09b3665f4df383 - Sigstore transparency entry: 1938128727
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 829.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0b3ff7facb745e9e134112e108fc447b5f1cd698f656f654df796b40cd0b04b
|
|
| MD5 |
a273bf25c4f4cc8b85b1a0d05235e918
|
|
| BLAKE2b-256 |
be829a0e4f98cc44a2fd10be1c2ea958bc7487f02644292918e0d633ff7256d0
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
e0b3ff7facb745e9e134112e108fc447b5f1cd698f656f654df796b40cd0b04b - Sigstore transparency entry: 1938129418
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 857.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15243d1d6f8e29b5c51f3da73cc9800aac68cc15fe76e75130008db8b33164e9
|
|
| MD5 |
9e38be4d2c32f089cc00717a97955e7e
|
|
| BLAKE2b-256 |
17554b17d5af229704a2ad6add79e8b87ae4535329980db9611dd4f63ed2b2c1
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
15243d1d6f8e29b5c51f3da73cc9800aac68cc15fe76e75130008db8b33164e9 - Sigstore transparency entry: 1938127533
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 873.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7500cb8f4288fa0b2719dd46c3270e65c3a1b14c6e03d1b0837cd836358130d
|
|
| MD5 |
f16bda908d037920d2255536a5c314a7
|
|
| BLAKE2b-256 |
21ab80c004d3f31bf61786caa8b0ae90508433abf2c8da8ed833f821e51e91bb
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
c7500cb8f4288fa0b2719dd46c3270e65c3a1b14c6e03d1b0837cd836358130d - Sigstore transparency entry: 1938127139
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 757.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22d04999cd05d4b2b7b3cb6183b5276aeb9f0aea650eceaa2136ddcdcf5a5f66
|
|
| MD5 |
28144053a30d4e1a702074a082455196
|
|
| BLAKE2b-256 |
eb6aabdf830d9d12921a89ed8d6f6a5c0766208bd143f8775766372d0fb8cb5c
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
22d04999cd05d4b2b7b3cb6183b5276aeb9f0aea650eceaa2136ddcdcf5a5f66 - Sigstore transparency entry: 1938129336
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 616.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69efe588b2f3303210369e028fb626a9cd25387edf4d6c1dbef6d6e08bce4e84
|
|
| MD5 |
fba1d3fbe4a6247b3c18ec2a649d1a70
|
|
| BLAKE2b-256 |
bd050ab2123b888590219ade23a0fe013e3ac7514206369dccdb7c9e3a484521
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
69efe588b2f3303210369e028fb626a9cd25387edf4d6c1dbef6d6e08bce4e84 - Sigstore transparency entry: 1938128671
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 665.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0de51a631617c50cc01221aeb60a9cbb57dca07d8f647fb5d08f0c2bda838fca
|
|
| MD5 |
147642e1f89851034ddf49eca5c83725
|
|
| BLAKE2b-256 |
613239ea6fb5fc459236210e661847d0d2cc58ee758349bcd3a9f1cd69d80608
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
0de51a631617c50cc01221aeb60a9cbb57dca07d8f647fb5d08f0c2bda838fca - Sigstore transparency entry: 1938127713
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 596.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e86e54057b57d19a5fc1a317883c9b286f3f4dbb27638ca74b202e3c1e4c56c
|
|
| MD5 |
e565738a4412c5a96591e700dfb82c15
|
|
| BLAKE2b-256 |
19221244f60daa64c47b25c91dca2ef84d4f328a5c17da10303337b2854736b1
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
8e86e54057b57d19a5fc1a317883c9b286f3f4dbb27638ca74b202e3c1e4c56c - Sigstore transparency entry: 1938127643
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 580.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ea4b01cbef2f6ccf1113bbab0014b5c78f9eb21787cb67d563e5444efd11d47
|
|
| MD5 |
3c4212ddeda56933f8332181da100a52
|
|
| BLAKE2b-256 |
fcb8f53ab724f9f7b280fea8b163e6fa7b329d2debba87155aebbfacd700787a
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
0ea4b01cbef2f6ccf1113bbab0014b5c78f9eb21787cb67d563e5444efd11d47 - Sigstore transparency entry: 1938128913
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 650.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
252656ce999d2cae9e3f474f370868591bafd1d79b65402757b8e5b6cae000e0
|
|
| MD5 |
97ea5a88adf5d476e0c6ed2ef7fa0724
|
|
| BLAKE2b-256 |
43afb2f923f65f867bc383e1b8a45b5b16790dea4b64ab7398e486817f608499
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
252656ce999d2cae9e3f474f370868591bafd1d79b65402757b8e5b6cae000e0 - Sigstore transparency entry: 1938130414
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 563.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5195bb74b32f754b15391f3734c12400df3b25502950eb8f06b1b8a27e34fbc
|
|
| MD5 |
f9bc9562ec2e0da7f9600d61518b351a
|
|
| BLAKE2b-256 |
58e89b75b3773b17e1dfc12cb818bfa6bd45f485dd333bdd858ec7698a030220
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
a5195bb74b32f754b15391f3734c12400df3b25502950eb8f06b1b8a27e34fbc - Sigstore transparency entry: 1938129205
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type:
File details
Details for the file yamlrocks-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: yamlrocks-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 602.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b733e78e4fc1a15933b119ea6c18f7a70c3f3e2feddc1eecad86309b7ad2e5e
|
|
| MD5 |
ab79bd729ce9e114795fe3d7b42b3d25
|
|
| BLAKE2b-256 |
ad4aaa70a7ce65ef5dcb8a242305593bc49efa47adc6612dba9d102188768054
|
Provenance
The following attestation bundles were made for yamlrocks-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yaml on frenck/YAMLRocks
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yamlrocks-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
5b733e78e4fc1a15933b119ea6c18f7a70c3f3e2feddc1eecad86309b7ad2e5e - Sigstore transparency entry: 1938126888
- Sigstore integration time:
-
Permalink:
frenck/YAMLRocks@4571093f0904d16cc6167d6268815d5556f4e029 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/frenck
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yaml@4571093f0904d16cc6167d6268815d5556f4e029 -
Trigger Event:
release
-
Statement type: