A list-like structure which implements collections.abc.MutableSequence
Project description
frozenlist
Introduction
frozenlist.FrozenList is a list-like structure which implements collections.abc.MutableSequence. The list is mutable until FrozenList.freeze is called, after which list modifications raise RuntimeError:
>>> from frozenlist import FrozenList >>> fl = FrozenList([17, 42]) >>> fl.append('spam') >>> fl.append('Vikings') >>> fl <FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])> >>> fl.freeze() >>> fl <FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])> >>> fl.frozen True >>> fl.append("Monty") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 97, in frozenlist._frozenlist.FrozenList.append self._check_frozen() File "frozenlist/_frozenlist.pyx", line 19, in frozenlist._frozenlist.FrozenList._check_frozen raise RuntimeError("Cannot modify frozen list.") RuntimeError: Cannot modify frozen list.
FrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError:
>>> fl = FrozenList([17, 42, 'spam']) >>> hash(fl) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "frozenlist/_frozenlist.pyx", line 111, in frozenlist._frozenlist.FrozenList.__hash__ raise RuntimeError("Cannot hash unfrozen list.") RuntimeError: Cannot hash unfrozen list. >>> fl.freeze() >>> hash(fl) 3713081631934410656 >>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key >>> dictionary {<FrozenList(frozen=True, [1, 2])>: 'Vikings'}
Installation
$ pip install frozenlist
Documentation
Communication channels
We have a Matrix Space #aio-libs-space:matrix.org which is also accessible via Gitter.
License
frozenlist is offered under the Apache 2 license.
Source code
The project is hosted on GitHub
Please file an issue in the bug tracker if you have found a bug or have some suggestions to improve the library.
Changelog
v1.7.0
(2025-06-09)
Features
Packaging updates and notes for downstreams
Fixed an issue where frozenlist binary wheels would be built with debugging symbols and line tracing enabled, which significantly impacted performance. Line tracing is now disabled by default and can only be enabled explicitly – by @bdraco.
This change ensures that production builds are optimized for performance. Developers who need line tracing for debugging purposes can still enable it by:
Setting the FROZENLIST_CYTHON_TRACING environment variable
Using the --config-setting=with-cython-tracing=true option with pip
Related issues and pull requests on GitHub: #660.
Enabled PIP_CONSTRAINT environment variable in the build configuration to ensure the pinned Cython version from requirements/cython.txt is used during wheel builds.
Related issues and pull requests on GitHub: #661.
v1.6.2
(2025-06-03)
No significant changes.
v1.6.1
(2025-06-02)
Bug fixes
Correctly use cimport for including PyBool_FromLong – by @lysnikolaou.
Related issues and pull requests on GitHub: #653.
Packaging updates and notes for downstreams
Exclude _frozenlist.cpp from bdists/wheels – by @musicinmybrain.
Related issues and pull requests on GitHub: #649.
Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.
Related issues and pull requests on GitHub: #654.
v1.6.0
(2025-04-17)
Bug fixes
Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.
Related commits on GitHub: 41591f2.
Features
Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.
Related issues and pull requests on GitHub: #618.
Started building armv7l wheels – by @bdraco.
Related issues and pull requests on GitHub: #642.
Packaging updates and notes for downstreams
Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.
Related commits on GitHub: 41591f2.
Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.
Related issues and pull requests on GitHub: #618.
The packaging metadata switched to including an SPDX license identifier introduced in PEP 639 – by @cdce8p.
Related issues and pull requests on GitHub: #639.
Contributor-facing changes
GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.
Related issues and pull requests on GitHub: #633.
Organized dependencies into test and lint dependencies so that no unnecessary ones are installed during CI runs – by @lysnikolaou.
Related issues and pull requests on GitHub: #636.
1.5.0 (2024-10-22)
Bug fixes
An incorrect signature of the __class_getitem__ class method has been fixed, adding a missing class_item argument under Python 3.8 and older.
This change also improves the code coverage of this method that was previously missing – by @webknjaz.
Improved documentation
Packaging updates and notes for downstreams
1.4.1 (2023-12-15)
Packaging updates and notes for downstreams
Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.
Related issues and pull requests on GitHub: #553.
Replaced the packaging is replaced from an old-fashioned setup.py to an in-tree PEP 517 build backend – by @webknjaz.
Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.
Here is how this can be done with pip:
$ python3 -m pip install . --config-settings=pure-python=
This will also work with -e | --editable.
The same can be achieved via pypa/build:
$ python3 -m build --config-setting=pure-python=
Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.
Related issues and pull requests on GitHub: #560.
Contributor-facing changes
It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @webknjaz.
This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.
Here’s a usage example:
$ python3 -Im pip install . --config-settings=with-cython-tracing=true
For editable installs, this setting is on by default. Otherwise, it’s off unless requested explicitly.
The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:
$ python -Im pip install -e .
Alternatively, the FROZENLIST_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.
Related issues and pull requests on GitHub: #560.
Coverage collection has been implemented for the Cython modules – by @webknjaz.
It will also be reported to Codecov from any non-release CI jobs.
Related issues and pull requests on GitHub: #561.
A step-by-step Release Guide guide has been added, describing how to release frozenlist – by @webknjaz.
This is primarily targeting the maintainers.
Related issues and pull requests on GitHub: #563.
Detailed Contributing Guidelines on authoring the changelog fragments have been published in the documentation – by @webknjaz.
Related issues and pull requests on GitHub: #564.
1.4.0 (2023-07-12)
The published source distribution package became buildable under Python 3.12.
Bugfixes
Removed an unused typing.Tuple import #411
Deprecations and Removals
Dropped Python 3.7 support. #413
Misc
1.3.3 (2022-11-08)
Fixed CI runs when creating a new release, where new towncrier versions fail when the current version section is already present.
1.3.2 (2022-11-08)
Misc
Updated the CI runs to better check for test results and to avoid deprecated syntax. #327
1.3.1 (2022-08-02)
The published source distribution package became buildable under Python 3.11.
1.3.0 (2022-01-18)
Bugfixes
Do not install C sources with binary distributions. #250
Deprecations and Removals
Dropped Python 3.6 support #274
1.2.0 (2021-10-16)
Features
FrozenList now supports being used as a generic type as per PEP 585, e.g. frozen_int_list: FrozenList[int] (requires Python 3.9 or newer). #172
Added support for Python 3.10. #227
Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. #227
Started shipping platform-specific arm64 wheels for Apple Silicon. #227
1.1.1 (2020-11-14)
Bugfixes
Provide x86 Windows wheels. #169
1.1.0 (2020-10-13)
Features
Add support for hashing of a frozen list. #136
Support Python 3.8 and 3.9.
Provide wheels for aarch64, i686, ppc64le, s390x architectures on Linux as well as x86_64.
1.0.0 (2019-11-09)
Deprecations and Removals
Dropped support for Python 3.5; only 3.6, 3.7 and 3.8 are supported going forward. #24
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
File details
Details for the file frozenlist-1.7.0.tar.gz
.
File metadata
- Download URL: frozenlist-1.7.0.tar.gz
- Upload date:
- Size: 45.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f
|
|
MD5 |
3820fe3685c2d9f544d7a0d4041c089a
|
|
BLAKE2b-256 |
79b1b64018016eeb087db503b038296fd782586432b9c077fc5c7839e9cb6ef6
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0.tar.gz
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0.tar.gz
-
Subject digest:
2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f
- Sigstore transparency entry: 233552396
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-py3-none-any.whl
.
File metadata
- Download URL: frozenlist-1.7.0-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e
|
|
MD5 |
847e5d168f92fdbe0eaf4dc17db01a32
|
|
BLAKE2b-256 |
ee45b82e3c16be2182bff01179db177fe144d58b5dc787a7d4492c6ed8b9317f
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-py3-none-any.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-py3-none-any.whl
-
Subject digest:
9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e
- Sigstore transparency entry: 233552489
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 47.5 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3bf8010d71d4507775f658e9823210b7427be36625b387221642725b515dcf3e
|
|
MD5 |
90e3e0989c3f42b7fd85a3a5fd9e8c97
|
|
BLAKE2b-256 |
bbed41956f52105b8dbc26e457c5705340c67c8cc2b79f394b79bffc09d0e938
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-win_amd64.whl
-
Subject digest:
3bf8010d71d4507775f658e9823210b7427be36625b387221642725b515dcf3e
- Sigstore transparency entry: 233552422
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-win32.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.13t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3a14027124ddb70dfcee5148979998066897e79f89f64b13328595c4bdf77c81
|
|
MD5 |
a4d84553dc1e4f761f553fc9e9b49655
|
|
BLAKE2b-256 |
0b318fbc5af2d183bff20f21aa743b4088eac4445d2bb1cdece449ae80e4e2d1
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-win32.whl
-
Subject digest:
3a14027124ddb70dfcee5148979998066897e79f89f64b13328595c4bdf77c81
- Sigstore transparency entry: 233552605
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 282.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1a85e345b4c43db8b842cab1feb41be5cc0b10a1830e6295b69d7310f99becaf
|
|
MD5 |
4250c9d9e0da53d2f4f1c8ed95eb11c3
|
|
BLAKE2b-256 |
40375f9f3c3fd7f7746082ec67bcdc204db72dad081f4f83a503d33220a92973
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
-
Subject digest:
1a85e345b4c43db8b842cab1feb41be5cc0b10a1830e6295b69d7310f99becaf
- Sigstore transparency entry: 233552606
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
- Upload date:
- Size: 288.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4e7e9652b3d367c7bd449a727dc79d5043f48b88d0cbfd4f9f1060cf2b414104
|
|
MD5 |
9e9688f0ccfcc9853032d66a6733b795
|
|
BLAKE2b-256 |
001147b6117002a0e904f004d70ec5194fe9144f117c33c851e3d51c765962d0
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
-
Subject digest:
4e7e9652b3d367c7bd449a727dc79d5043f48b88d0cbfd4f9f1060cf2b414104
- Sigstore transparency entry: 233552601
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 288.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3d688126c242a6fabbd92e02633414d40f50bb6002fa4cf995a1d18051525657
|
|
MD5 |
99c9521ebb38ea50b9e64e8ddf78fefb
|
|
BLAKE2b-256 |
cd45e365fdb554159462ca12df54bc59bfa7a9a273ecc21e99e72e597564d1ae
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
-
Subject digest:
3d688126c242a6fabbd92e02633414d40f50bb6002fa4cf995a1d18051525657
- Sigstore transparency entry: 233552427
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 266.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a47f2abb4e29b3a8d0b530f7c3598badc6b134562b1a5caee867f7c62fee51e3
|
|
MD5 |
bccd0b37a995b90b35a1c1feae75a144
|
|
BLAKE2b-256 |
bb73f89b7fbce8b0b0c095d82b008afd0590f71ccb3dee6eee41791cf8cd25fd
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl
-
Subject digest:
a47f2abb4e29b3a8d0b530f7c3598badc6b134562b1a5caee867f7c62fee51e3
- Sigstore transparency entry: 233552478
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 290.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c0303e597eb5a5321b4de9c68e9845ac8f290d2ab3f3e2c864437d3c5a30cd65
|
|
MD5 |
c9de2ee8fdf07211a4a1fa427cf37dbf
|
|
BLAKE2b-256 |
4234a3e2c00c00f9e2a9db5653bca3fec306349e71aff14ae45ecc6d0951dd24
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
-
Subject digest:
c0303e597eb5a5321b4de9c68e9845ac8f290d2ab3f3e2c864437d3c5a30cd65
- Sigstore transparency entry: 233552401
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 281.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
32dc2e08c67d86d0969714dd484fd60ff08ff81d1a1e40a77dd34a387e6ebc0c
|
|
MD5 |
a9b61ad9c95c755384be7e9882f59d25
|
|
BLAKE2b-256 |
8867c94103a23001b17808eb7dd1200c156bb69fb68e63fcf0693dde4cd6228c
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
-
Subject digest:
32dc2e08c67d86d0969714dd484fd60ff08ff81d1a1e40a77dd34a387e6ebc0c
- Sigstore transparency entry: 233552483
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f2038310bc582f3d6a09b3816ab01737d60bf7b1ec70f5356b09e84fb7408ab1
|
|
MD5 |
05882f36da4e17d1432f70341e79b1a3
|
|
BLAKE2b-256 |
a61c3efa6e7d5a39a1d5ef0abeb51c48fb657765794a46cf124e5aca2c7a592c
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
f2038310bc582f3d6a09b3816ab01737d60bf7b1ec70f5356b09e84fb7408ab1
- Sigstore transparency entry: 233552400
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 292.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
acd03d224b0175f5a850edc104ac19040d35419eddad04e7cf2d5986d98427f1
|
|
MD5 |
7310360a2d7785f64780738890c7dc86
|
|
BLAKE2b-256 |
883cc840bfa474ba3fa13c772b93070893c6e9d5c0350885760376cbe3b6c1b3
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
acd03d224b0175f5a850edc104ac19040d35419eddad04e7cf2d5986d98427f1
- Sigstore transparency entry: 233552532
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 273.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f34560fb1b4c3e30ba35fa9a13894ba39e5acfc5f60f57d8accde65f46cc5e74
|
|
MD5 |
989cf7ceb8d6727b310350b2e8c27ad6
|
|
BLAKE2b-256 |
831fde84c642f17c8f851a2905cee2dae401e5e0daca9b5ef121e120e19aa825
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
f34560fb1b4c3e30ba35fa9a13894ba39e5acfc5f60f57d8accde65f46cc5e74
- Sigstore transparency entry: 233552574
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 292.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9537c2777167488d539bc5de2ad262efc44388230e5118868e172dd4a552b146
|
|
MD5 |
4ba39a715103eb2e881d28c68f7d29da
|
|
BLAKE2b-256 |
5ecbdf6de220f5036001005f2d726b789b2c0b65f2363b104bbc16f5be8084f8
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
9537c2777167488d539bc5de2ad262efc44388230e5118868e172dd4a552b146
- Sigstore transparency entry: 233552597
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 284.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
765bb588c86e47d0b68f23c1bee323d4b703218037765dcf3f25c838c6fecceb
|
|
MD5 |
9d47a74000cd88f097768508eeab5ab1
|
|
BLAKE2b-256 |
4e2772765be905619dfde25a7f33813ac0341eb6b076abede17a2e3fbfade0cb
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
765bb588c86e47d0b68f23c1bee323d4b703218037765dcf3f25c838c6fecceb
- Sigstore transparency entry: 233552419
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 266.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b8c05e4c8e5f36e5e088caa1bf78a687528f83c043706640a92cb76cd6999384
|
|
MD5 |
1e5e63874b3de87e1b50997bf8df6ec0
|
|
BLAKE2b-256 |
4f00d5c5e09d4922c395e2f2f6b79b9a20dab4b67daaf78ab92e7729341f61f6
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
b8c05e4c8e5f36e5e088caa1bf78a687528f83c043706640a92cb76cd6999384
- Sigstore transparency entry: 233552432
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 48.5 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
912a7e8375a1c9a68325a902f3953191b7b292aa3c3fb0d71a216221deca460b
|
|
MD5 |
bae762c8c031025f4ac080d83a415217
|
|
BLAKE2b-256 |
6986f9596807b03de126e11e7d42ac91e3d0b19a6599c714a1989a4e85eeefc4
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl
-
Subject digest:
912a7e8375a1c9a68325a902f3953191b7b292aa3c3fb0d71a216221deca460b
- Sigstore transparency entry: 233552558
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 48.9 kB
- Tags: CPython 3.13t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
82d664628865abeb32d90ae497fb93df398a69bb3434463d172b80fc25b0dd7d
|
|
MD5 |
e17304eea2a7010272b6cc7f80f0341d
|
|
BLAKE2b-256 |
a47dec2c1e1dc16b85bc9d526009961953df9cec8481b6886debb36ec9107799
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
-
Subject digest:
82d664628865abeb32d90ae497fb93df398a69bb3434463d172b80fc25b0dd7d
- Sigstore transparency entry: 233552476
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl
- Upload date:
- Size: 84.3 kB
- Tags: CPython 3.13t, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a6f86e4193bb0e235ef6ce3dde5cbabed887e0b11f516ce8a0f4d3b33078ec2d
|
|
MD5 |
c48d9ac87bd9e6d840011fc55b5082da
|
|
BLAKE2b-256 |
56d55c4cf2319a49eddd9dd7145e66c4866bdc6f3dbc67ca3d59685149c11e0d
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl
-
Subject digest:
a6f86e4193bb0e235ef6ce3dde5cbabed887e0b11f516ce8a0f4d3b33078ec2d
- Sigstore transparency entry: 233552551
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 43.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
52109052b9791a3e6b5d1b65f4b909703984b770694d3eb64fad124c835d7cba
|
|
MD5 |
f94216fd969630814e819559f50a415a
|
|
BLAKE2b-256 |
3589a487a98d94205d85745080a37860ff5744b9820a2c9acbcdd9440bfddf98
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-win_amd64.whl
-
Subject digest:
52109052b9791a3e6b5d1b65f4b909703984b770694d3eb64fad124c835d7cba
- Sigstore transparency entry: 233552563
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-win32.whl
- Upload date:
- Size: 39.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5fc4df05a6591c7768459caba1b342d9ec23fa16195e744939ba5914596ae3e1
|
|
MD5 |
4389f4a43ba1555db769346d0a40914f
|
|
BLAKE2b-256 |
d78be7f9dfde869825489382bc0d512c15e96d3964180c9499efcec72e85db7e
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-win32.whl
-
Subject digest:
5fc4df05a6591c7768459caba1b342d9ec23fa16195e744939ba5914596ae3e1
- Sigstore transparency entry: 233552599
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 232.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e2cdfaaec6a2f9327bf43c933c0319a7c429058e8537c508964a133dffee412e
|
|
MD5 |
ec903879e36f506ab64a652e0c25ef6e
|
|
BLAKE2b-256 |
ce13c12bf657494c2fd1079a48b2db49fa4196325909249a52d8f09bc9123fd7
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
-
Subject digest:
e2cdfaaec6a2f9327bf43c933c0319a7c429058e8537c508964a133dffee412e
- Sigstore transparency entry: 233552487
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
- Upload date:
- Size: 238.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f3f4410a0a601d349dd406b5713fec59b4cee7e71678d5b17edda7f4655a940b
|
|
MD5 |
cd65eaaa9447dc7a30ace540da18ca28
|
|
BLAKE2b-256 |
b2148d19ccdd3799310722195a72ac94ddc677541fb4bef4091d8e7775752360
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
-
Subject digest:
f3f4410a0a601d349dd406b5713fec59b4cee7e71678d5b17edda7f4655a940b
- Sigstore transparency entry: 233552508
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 236.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3fbba20e662b9c2130dc771e332a99eff5da078b2b2648153a40669a6d0e36ca
|
|
MD5 |
deb536db8b8b837fc919c61574b83224
|
|
BLAKE2b-256 |
3ee8ad683e75da6ccef50d0ab0c2b2324b32f84fc88ceee778ed79b8e2d2fe2e
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
-
Subject digest:
3fbba20e662b9c2130dc771e332a99eff5da078b2b2648153a40669a6d0e36ca
- Sigstore transparency entry: 233552572
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 217.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0aa7e176ebe115379b5b1c95b4096fb1c17cce0847402e227e712c27bdb5a949
|
|
MD5 |
fc2d9a00aa9c10ba9b7e4625ada1c0be
|
|
BLAKE2b-256 |
b8333f8d6ced42f162d743e3517781566b8481322be321b486d9d262adf70bfb
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
-
Subject digest:
0aa7e176ebe115379b5b1c95b4096fb1c17cce0847402e227e712c27bdb5a949
- Sigstore transparency entry: 233552409
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 242.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
376b6222d114e97eeec13d46c486facd41d4f43bab626b7c3f6a8b4e81a5192c
|
|
MD5 |
72007a54a911e85c17572456faa6a77f
|
|
BLAKE2b-256 |
bac9f4b39e904c03927b7ecf891804fd3b4df3db29b9e487c6418e37988d6e9d
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
-
Subject digest:
376b6222d114e97eeec13d46c486facd41d4f43bab626b7c3f6a8b4e81a5192c
- Sigstore transparency entry: 233552586
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 228.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
05579bf020096fe05a764f1f84cd104a12f78eaab68842d036772dc6d4870b4b
|
|
MD5 |
881cc706d07f3a8c73c110dbb821a663
|
|
BLAKE2b-256 |
5952460db4d7ba0811b9ccb85af996019f5d70831f2f5f255f7cc61f86199795
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
-
Subject digest:
05579bf020096fe05a764f1f84cd104a12f78eaab68842d036772dc6d4870b4b
- Sigstore transparency entry: 233552479
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 233.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
04fb24d104f425da3540ed83cbfc31388a586a7696142004c577fa61c6298c3f
|
|
MD5 |
0dd973887747ce294ed089864ff99aef
|
|
BLAKE2b-256 |
f8b72ace5450ce85f2af05a871b8c8719b341294775a0a6c5585d5e6170f2ce7
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
04fb24d104f425da3540ed83cbfc31388a586a7696142004c577fa61c6298c3f
- Sigstore transparency entry: 233552577
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 237.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bd8c4e58ad14b4fa7802b8be49d47993182fdd4023393899632c88fd8cd994eb
|
|
MD5 |
86ea7150654d0ec7fe9818e460696617
|
|
BLAKE2b-256 |
bae28417ae0f8eacb1d071d4950f32f229aa6bf68ab69aab797b72a07ea68d4f
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
bd8c4e58ad14b4fa7802b8be49d47993182fdd4023393899632c88fd8cd994eb
- Sigstore transparency entry: 233552546
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 225.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6aeac207a759d0dedd2e40745575ae32ab30926ff4fa49b1635def65806fddee
|
|
MD5 |
31eedd8386606492b25d3f2ce6697ece
|
|
BLAKE2b-256 |
c045ed2798718910fe6eb3ba574082aaceff4528e6323f9a8570be0f7028d8e9
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
6aeac207a759d0dedd2e40745575ae32ab30926ff4fa49b1635def65806fddee
- Sigstore transparency entry: 233552496
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 232.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dab46c723eeb2c255a64f9dc05b8dd601fde66d6b19cdb82b2e09cc6ff8d8b5d
|
|
MD5 |
5ce65ac544bd1c85be7d355eedf6600c
|
|
BLAKE2b-256 |
197c71bb0bbe0832793c601fff68cd0cf6143753d0c667f9aec93d3c323f4b55
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
dab46c723eeb2c255a64f9dc05b8dd601fde66d6b19cdb82b2e09cc6ff8d8b5d
- Sigstore transparency entry: 233552474
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 232.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8bd7eb96a675f18aa5c553eb7ddc24a43c8c18f22e1f9925528128c052cdbe00
|
|
MD5 |
8837ddce96c7a3e6920a5d6c1ccc52c6
|
|
BLAKE2b-256 |
7231bc8c5c99c7818293458fe745dab4fd5730ff49697ccc82b554eb69f16a24
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
8bd7eb96a675f18aa5c553eb7ddc24a43c8c18f22e1f9925528128c052cdbe00
- Sigstore transparency entry: 233552505
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 215.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6a5c505156368e4ea6b53b5ac23c92d7edc864537ff911d2fb24c140bb175e60
|
|
MD5 |
232d8caab1292acd7303bc9bc5ca4de7
|
|
BLAKE2b-256 |
46b96989292c5539553dba63f3c83dc4598186ab2888f67c0dc1d917e6887db6
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
6a5c505156368e4ea6b53b5ac23c92d7edc864537ff911d2fb24c140bb175e60
- Sigstore transparency entry: 233552537
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 45.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cbb65198a9132ebc334f237d7b0df163e4de83fb4f2bdfe46c1e654bdb0c5d43
|
|
MD5 |
b4f76320fbaece1c221ce1b5fe15b9da
|
|
BLAKE2b-256 |
f425a0895c99270ca6966110f4ad98e87e5662eab416a17e7fd53c364bf8b954
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
-
Subject digest:
cbb65198a9132ebc334f237d7b0df163e4de83fb4f2bdfe46c1e654bdb0c5d43
- Sigstore transparency entry: 233552471
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 47.2 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d1a81c85417b914139e3a9b995d4a1c84559afc839a93cf2cb7f15e6e5f6ed2d
|
|
MD5 |
73171cdb39bf80542a0ac6cccb1a64cf
|
|
BLAKE2b-256 |
832e5b70b6a3325363293fe5fc3ae74cdcbc3e996c2a11dde2fd9f1fb0776d19
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
-
Subject digest:
d1a81c85417b914139e3a9b995d4a1c84559afc839a93cf2cb7f15e6e5f6ed2d
- Sigstore transparency entry: 233552453
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 79.8 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ee80eeda5e2a4e660651370ebffd1286542b67e268aa1ac8d6dbe973120ef7ee
|
|
MD5 |
f1ad3b43dd29177a2137e3acecbb0476
|
|
BLAKE2b-256 |
24906b2cebdabdbd50367273c20ff6b57a3dfa89bd0762de02c3a1eb42cb6462
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl
-
Subject digest:
ee80eeda5e2a4e660651370ebffd1286542b67e268aa1ac8d6dbe973120ef7ee
- Sigstore transparency entry: 233552583
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 43.9 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
563b72efe5da92e02eb68c59cb37205457c977aa7a449ed1b37e6939e5c47c6a
|
|
MD5 |
ea3f06e91edc3670153677f57379d271
|
|
BLAKE2b-256 |
0b15c026e9a9fc17585a9d461f65d8593d281fedf55fbf7eb53f16c6df2392f9
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-win_amd64.whl
-
Subject digest:
563b72efe5da92e02eb68c59cb37205457c977aa7a449ed1b37e6939e5c47c6a
- Sigstore transparency entry: 233552431
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-win32.whl
- Upload date:
- Size: 39.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
426c7bc70e07cfebc178bc4c2bf2d861d720c4fff172181eeb4a4c41d4ca2ad3
|
|
MD5 |
b466449ae078d8e78b30d55cef1c065d
|
|
BLAKE2b-256 |
f37487601e0fb0369b7a2baf404ea921769c53b7ae00dee7dcfe5162c8c6dbf0
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-win32.whl
-
Subject digest:
426c7bc70e07cfebc178bc4c2bf2d861d720c4fff172181eeb4a4c41d4ca2ad3
- Sigstore transparency entry: 233552470
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 237.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
290a172aae5a4c278c6da8a96222e6337744cd9c77313efe33d5670b9f65fc43
|
|
MD5 |
118596cdbfc066846893c632b9d62241
|
|
BLAKE2b-256 |
1c809a0eb48b944050f94cc51ee1c413eb14a39543cc4f760ed12657a5a3c45a
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
-
Subject digest:
290a172aae5a4c278c6da8a96222e6337744cd9c77313efe33d5670b9f65fc43
- Sigstore transparency entry: 233552408
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
- Upload date:
- Size: 249.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
99886d98e1643269760e5fe0df31e5ae7050788dd288947f7f007209b8c33f08
|
|
MD5 |
64a5a3fea5c144fee0ac45745f332667
|
|
BLAKE2b-256 |
80e8edf2f9e00da553f07f5fa165325cfc302dead715cab6ac8336a5f3d0adc2
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
-
Subject digest:
99886d98e1643269760e5fe0df31e5ae7050788dd288947f7f007209b8c33f08
- Sigstore transparency entry: 233552486
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 245.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
73bd45e1488c40b63fe5a7df892baf9e2a4d4bb6409a2b3b78ac1c6236178e01
|
|
MD5 |
9990e34742aec4d21da8e83f567c086a
|
|
BLAKE2b-256 |
bc293a32959e68f9cf000b04e79ba574527c17e8842e38c91d68214a37455786
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
-
Subject digest:
73bd45e1488c40b63fe5a7df892baf9e2a4d4bb6409a2b3b78ac1c6236178e01
- Sigstore transparency entry: 233552593
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 225.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e4389e06714cfa9d47ab87f784a7c5be91d3934cd6e9a7b85beef808297cc025
|
|
MD5 |
70740bce6eda223bd1b65cc079aaa4c9
|
|
BLAKE2b-256 |
8dba9a28042f84a6bf8ea5dbc81cfff8eaef18d78b2a1ad9d51c7bc5b029ad16
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
-
Subject digest:
e4389e06714cfa9d47ab87f784a7c5be91d3934cd6e9a7b85beef808297cc025
- Sigstore transparency entry: 233552595
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 249.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1eaa7e9c6d15df825bf255649e05bd8a74b04a4d2baa1ae46d9c2d00b2ca2cb5
|
|
MD5 |
d62ad34916dcb6bfed81620b62e28fec
|
|
BLAKE2b-256 |
5d32476a4b5cfaa0ec94d3f808f193301debff2ea42288a099afe60757ef6282
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
-
Subject digest:
1eaa7e9c6d15df825bf255649e05bd8a74b04a4d2baa1ae46d9c2d00b2ca2cb5
- Sigstore transparency entry: 233552578
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 236.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
15a7eaba63983d22c54d255b854e8108e7e5f3e89f647fc854bd77a237e767df
|
|
MD5 |
cf5cca7767aa19a7c5b4f294e3e3f75c
|
|
BLAKE2b-256 |
1dfacb4a76bea23047c8462976ea7b7a2bf53997a0ca171302deae9d6dd12096
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
-
Subject digest:
15a7eaba63983d22c54d255b854e8108e7e5f3e89f647fc854bd77a237e767df
- Sigstore transparency entry: 233552407
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 244.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8fc5d5cda37f62b262405cf9652cf0856839c4be8ee41be0afe8858f17f4c94b
|
|
MD5 |
b3bf34439881616e78a43bc3725d315f
|
|
BLAKE2b-256 |
be00711d1337c7327d88c44d91dd0f556a1c47fb99afc060ae0ef66b4d24793d
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
8fc5d5cda37f62b262405cf9652cf0856839c4be8ee41be0afe8858f17f4c94b
- Sigstore transparency entry: 233552514
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 248.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bfe2b675cf0aaa6d61bf8fbffd3c274b3c9b7b1623beb3809df8a81399a4a9c4
|
|
MD5 |
a797ed8cf6ce57d2ad80cd8e54bc3ba9
|
|
BLAKE2b-256 |
06396a17b7c107a2887e781a48ecf20ad20f1c39d94b2a548c83615b5b879f28
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
bfe2b675cf0aaa6d61bf8fbffd3c274b3c9b7b1623beb3809df8a81399a4a9c4
- Sigstore transparency entry: 233552610
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 233.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c193dda2b6d49f4c4398962810fa7d7c78f032bf45572b3e04dd5249dff27e08
|
|
MD5 |
1bb62d836e0a00d9a60a30be813eaba4
|
|
BLAKE2b-256 |
643e5036af9d5031374c64c387469bfcc3af537fc0f5b1187d83a1cf6fab1639
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
c193dda2b6d49f4c4398962810fa7d7c78f032bf45572b3e04dd5249dff27e08
- Sigstore transparency entry: 233552433
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 243.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
aa57daa5917f1738064f302bf2626281a1cb01920c32f711fbc7bc36111058a8
|
|
MD5 |
2a9ebedddd7cf9e5e42948bfb9f8f815
|
|
BLAKE2b-256 |
d6a2a910bafe29c86997363fb4c02069df4ff0b5bc39d33c5198b4e9dd42d8f8
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
aa57daa5917f1738064f302bf2626281a1cb01920c32f711fbc7bc36111058a8
- Sigstore transparency entry: 233552590
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 241.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
488d0a7d6a0008ca0db273c542098a0fa9e7dfaa7e57f70acef43f32b3f69dca
|
|
MD5 |
5735538cc90fa141ae8a005927ce6fdb
|
|
BLAKE2b-256 |
8ddb48421f62a6f77c553575201e89048e97198046b793f4a089c79a6e3268bd
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
488d0a7d6a0008ca0db273c542098a0fa9e7dfaa7e57f70acef43f32b3f69dca
- Sigstore transparency entry: 233552509
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 224.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b0d5ce521d1dd7d620198829b87ea002956e4319002ef0bc8d3e6d045cb4646e
|
|
MD5 |
9c85e1ac99d243e0e5cceeeea12c356c
|
|
BLAKE2b-256 |
24fe74e6ec0639c115df13d5850e75722750adabdc7de24e37e05a40527ca539
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
b0d5ce521d1dd7d620198829b87ea002956e4319002ef0bc8d3e6d045cb4646e
- Sigstore transparency entry: 233552523
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 46.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3dabd5a8f84573c8d10d8859a50ea2dec01eea372031929871368c09fa103478
|
|
MD5 |
74f1c46ebbe1022e3955c91f530d2575
|
|
BLAKE2b-256 |
017a0046ef1bd6699b40acd2067ed6d6670b4db2f425c56980fa21c982c2a9db
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
-
Subject digest:
3dabd5a8f84573c8d10d8859a50ea2dec01eea372031929871368c09fa103478
- Sigstore transparency entry: 233552464
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 48.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1f5906d3359300b8a9bb194239491122e6cf1444c2efb88865426f170c262cdb
|
|
MD5 |
09d29cdf7c353e38db166a8de8ba3c0e
|
|
BLAKE2b-256 |
4c9d02754159955088cb52567337d1113f945b9e444c4960771ea90eb73de8db
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
-
Subject digest:
1f5906d3359300b8a9bb194239491122e6cf1444c2efb88865426f170c262cdb
- Sigstore transparency entry: 233552439
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 81.4 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3dbf9952c4bb0e90e98aec1bd992b3318685005702656bc6f67c1a32b76787f2
|
|
MD5 |
6045ef9b913a0eaa4822c8281b3fbaeb
|
|
BLAKE2b-256 |
efa2c8131383f1e66adad5f6ecfcce383d584ca94055a34d683bbb24ac5f2f1c
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl
-
Subject digest:
3dbf9952c4bb0e90e98aec1bd992b3318685005702656bc6f67c1a32b76787f2
- Sigstore transparency entry: 233552438
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 44.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d
|
|
MD5 |
0f494fa8e8fc38e9918b6de8cf48847e
|
|
BLAKE2b-256 |
5817fe61124c5c333ae87f09bb67186d65038834a47d974fc10a5fadb4cc5ae1
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-win_amd64.whl
-
Subject digest:
387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d
- Sigstore transparency entry: 233552518
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-win32.whl
- Upload date:
- Size: 39.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7
|
|
MD5 |
ff12bee431522f91483d1a4f5faba73f
|
|
BLAKE2b-256 |
696803efbf545e217d5db8446acfd4c447c15b7c8cf4dbd4a58403111df9322d
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-win32.whl
-
Subject digest:
284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7
- Sigstore transparency entry: 233552613
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 233.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56
|
|
MD5 |
2dff9531cbf639392b356ca012b47bbc
|
|
BLAKE2b-256 |
5af5720f3812e3d06cd89a1d5db9ff6450088b8f5c449dae8ffb2971a44da506
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
-
Subject digest:
21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56
- Sigstore transparency entry: 233552604
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
- Upload date:
- Size: 246.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898
|
|
MD5 |
f8ab36953f0b2dd8868b29f58ffbd5c9
|
|
BLAKE2b-256 |
6debd18b3f6e64799a79673c4ba0b45e4cfbe49c240edfd03a68be20002eaeaa
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
-
Subject digest:
45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898
- Sigstore transparency entry: 233552477
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 245.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5
|
|
MD5 |
aedce1844833a7d4145b998b22f0ff64
|
|
BLAKE2b-256 |
73a663b3374f7d22268b41a9db73d68a8233afa30ed164c46107b33c4d18ecdd
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
-
Subject digest:
fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5
- Sigstore transparency entry: 233552497
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 229.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7
|
|
MD5 |
8b8e27033594932b877f6ff66e0fcaf1
|
|
BLAKE2b-256 |
c0a4e4a567e01702a88a74ce8a324691e62a629bf47d4f8607f24bf1c7216e7f
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
-
Subject digest:
ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7
- Sigstore transparency entry: 233552501
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 248.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31
|
|
MD5 |
39a4601a63846a0f4814b3b757563521
|
|
BLAKE2b-256 |
231e58232c19608b7a549d72d9903005e2d82488f12554a32de2d5fb59b9b1ba
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
-
Subject digest:
d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31
- Sigstore transparency entry: 233552469
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 234.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8
|
|
MD5 |
c44c7b8759c061aaaca4fb00c6062e29
|
|
BLAKE2b-256 |
033c3e3390d75334a063181625343e8daab61b77e1b8214802cc4e8a1bb678fc
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
-
Subject digest:
7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8
- Sigstore transparency entry: 233552397
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 239.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98
|
|
MD5 |
a5cec6813f7a5896160b01ef5e2841ec
|
|
BLAKE2b-256 |
d015c01c8e1dffdac5d9803507d824f27aed2ba76b6ed0026fab4d9866e82f1f
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98
- Sigstore transparency entry: 233552541
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 245.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30
|
|
MD5 |
907c67cf9950535ab996483ad55f91e7
|
|
BLAKE2b-256 |
20fb03395c0a43a5976af4bf7534759d214405fbbb4c114683f434dfdd3128ef
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30
- Sigstore transparency entry: 233552403
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 231.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f
|
|
MD5 |
21c1385e713872bc231f0101e764eb2f
|
|
BLAKE2b-256 |
1ffde5b64f7d2c92a41639ffb2ad44a6a82f347787abc0c7df5f49057cf11770
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f
- Sigstore transparency entry: 233552406
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 237.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2
|
|
MD5 |
1532e5f63ebe051548e750842b983961
|
|
BLAKE2b-256 |
792685314b8a83187c76a37183ceed886381a5f992975786f883472fcb6dc5f2
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2
- Sigstore transparency entry: 233552457
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 235.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae
|
|
MD5 |
6261ba408ed606060c4097076b50d2b3
|
|
BLAKE2b-256 |
4d83220a374bd7b2aeba9d0725130665afe11de347d95c3620b9b82cc2fcab97
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae
- Sigstore transparency entry: 233552522
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 224.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86
|
|
MD5 |
4b44ef5a6d1f1d73b467a01858b1674b
|
|
BLAKE2b-256 |
14993f4c6fe882c1f5514b6848aa0a69b20cb5e5d8e8f51a339d48c0e9305ed0
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86
- Sigstore transparency entry: 233552447
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 47.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd
|
|
MD5 |
169df496f616dea360dc22cf356b78b9
|
|
BLAKE2b-256 |
47be4038e2d869f8a2da165f35a6befb9158c259819be22eeaf9c9a8f6a87771
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
-
Subject digest:
34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd
- Sigstore transparency entry: 233552412
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750
|
|
MD5 |
92a7cd3d1f076fb00092a6793c21e705
|
|
BLAKE2b-256 |
75a99c2c5760b6ba45eae11334db454c189d43d34a4c0b489feb2175e5e64277
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
-
Subject digest:
9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750
- Sigstore transparency entry: 233552565
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 82.3 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a
|
|
MD5 |
c8cbc99e257c5b31facaade464c911f4
|
|
BLAKE2b-256 |
347e803dde33760128acd393a27eb002f2020ddb8d99d30a44bfbaab31c5f08a
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
-
Subject digest:
aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a
- Sigstore transparency entry: 233552405
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 43.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6eb93efb8101ef39d32d50bce242c84bcbddb4f7e9febfa7b524532a239b4464
|
|
MD5 |
03db745b2e02eef744c54bd85ae0e66b
|
|
BLAKE2b-256 |
8f5ff69818f017fa9a3d24d1ae39763e29b7f60a59e46d5f91b9c6b21622f4cd
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-win_amd64.whl
-
Subject digest:
6eb93efb8101ef39d32d50bce242c84bcbddb4f7e9febfa7b524532a239b4464
- Sigstore transparency entry: 233552417
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-win32.whl
- Upload date:
- Size: 39.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
400ddd24ab4e55014bba442d917203c73b2846391dd42ca5e38ff52bb18c3c5e
|
|
MD5 |
0c4e92cae3a6d2e0c6842274c273c4c1
|
|
BLAKE2b-256 |
c5bf7dcebae315436903b1d98ffb791a09d674c88480c158aa171958a3ac07f0
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-win32.whl
-
Subject digest:
400ddd24ab4e55014bba442d917203c73b2846391dd42ca5e38ff52bb18c3c5e
- Sigstore transparency entry: 233552609
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 221.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
15900082e886edb37480335d9d518cec978afc69ccbc30bd18610b7c1b22a718
|
|
MD5 |
abdd434a926212a8e1cd2af5b009b5e0
|
|
BLAKE2b-256 |
98c02052d8b6cecda2e70bd81299e3512fa332abb6dcd2969b9c80dfcdddbf75
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
-
Subject digest:
15900082e886edb37480335d9d518cec978afc69ccbc30bd18610b7c1b22a718
- Sigstore transparency entry: 233552529
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
- Upload date:
- Size: 234.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
46d84d49e00c9429238a7ce02dc0be8f6d7cd0cd405abd1bebdc991bf27c15bd
|
|
MD5 |
1a7f9ef393046314e16d750ff984fad6
|
|
BLAKE2b-256 |
553c34cb694abf532f31f365106deebdeac9e45c19304d83cf7d51ebbb4ca4d1
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
-
Subject digest:
46d84d49e00c9429238a7ce02dc0be8f6d7cd0cd405abd1bebdc991bf27c15bd
- Sigstore transparency entry: 233552511
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 232.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
41be2964bd4b15bf575e5daee5a5ce7ed3115320fb3c2b71fca05582ffa4dc9e
|
|
MD5 |
85c498305ae2a1240d10a7c2b51e6b83
|
|
BLAKE2b-256 |
1ac0c224ce0e0eb31cc57f67742071bb470ba8246623c1823a7530be0e76164c
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
-
Subject digest:
41be2964bd4b15bf575e5daee5a5ce7ed3115320fb3c2b71fca05582ffa4dc9e
- Sigstore transparency entry: 233552526
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 218.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
960d67d0611f4c87da7e2ae2eacf7ea81a5be967861e0c63cf205215afbfac59
|
|
MD5 |
9f53aac60df3b74f542744a53603197f
|
|
BLAKE2b-256 |
8f00ecbeb51669e3c3df76cf2ddd66ae3e48345ec213a55e3887d216eb4fbab3
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
-
Subject digest:
960d67d0611f4c87da7e2ae2eacf7ea81a5be967861e0c63cf205215afbfac59
- Sigstore transparency entry: 233552436
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 238.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
69cac419ac6a6baad202c85aaf467b65ac860ac2e7f2ac1686dc40dbb52f6577
|
|
MD5 |
42b2f976507ad16b0e8d5186f8059ec1
|
|
BLAKE2b-256 |
841730d6ea87fa95a9408245a948604b82c1a4b8b3e153cea596421a2aef2754
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
-
Subject digest:
69cac419ac6a6baad202c85aaf467b65ac860ac2e7f2ac1686dc40dbb52f6577
- Sigstore transparency entry: 233552573
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 222.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
24c34bea555fe42d9f928ba0a740c553088500377448febecaa82cc3e88aa1fa
|
|
MD5 |
eebcf05ea607992e91232190c7b27279
|
|
BLAKE2b-256 |
1a52df81e41ec6b953902c8b7e3a83bee48b195cb0e5ec2eabae5d8330c78038
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
-
Subject digest:
24c34bea555fe42d9f928ba0a740c553088500377448febecaa82cc3e88aa1fa
- Sigstore transparency entry: 233552561
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 227.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f89f65d85774f1797239693cef07ad4c97fdd0639544bad9ac4b869782eb1981
|
|
MD5 |
0f10cb2417fbfd46cfc23921680e24a7
|
|
BLAKE2b-256 |
79df8a11bcec5600557f40338407d3e5bea80376ed1c01a6c0910fcfdc4b8993
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
f89f65d85774f1797239693cef07ad4c97fdd0639544bad9ac4b869782eb1981
- Sigstore transparency entry: 233552492
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 233.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ac64b6478722eeb7a3313d494f8342ef3478dff539d17002f849101b212ef97c
|
|
MD5 |
89e3aa61f42af881d7d554e74c4bb94b
|
|
BLAKE2b-256 |
b9d098e8f9a515228d708344d7c6986752be3e3192d1795f748c24bcf154ad99
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
ac64b6478722eeb7a3313d494f8342ef3478dff539d17002f849101b212ef97c
- Sigstore transparency entry: 233552434
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 222.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
af369aa35ee34f132fcfad5be45fbfcde0e3a5f6a1ec0712857f286b7d20cca9
|
|
MD5 |
0ae028a092ad5a614c27f0f0351d92bc
|
|
BLAKE2b-256 |
fb68c1d9c2f4a6e438e14613bad0f2973567586610cc22dcb1e1241da71de9d3
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
af369aa35ee34f132fcfad5be45fbfcde0e3a5f6a1ec0712857f286b7d20cca9
- Sigstore transparency entry: 233552569
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 224.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3789ebc19cb811163e70fe2bd354cea097254ce6e707ae42e56f45e31e96cb8e
|
|
MD5 |
038a687b8d8140a29d4475138d03f63b
|
|
BLAKE2b-256 |
7034f73539227e06288fcd1f8a76853e755b2b48bca6747e99e283111c18bcd4
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
3789ebc19cb811163e70fe2bd354cea097254ce6e707ae42e56f45e31e96cb8e
- Sigstore transparency entry: 233552535
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1ed8d2fa095aae4bdc7fdd80351009a48d286635edffee66bf865e37a9125c50
|
|
MD5 |
3daaae07314451e9c927e2103d089b5f
|
|
BLAKE2b-256 |
1347f9179ee5ee4f55629e4f28c660b3fdf2775c8bfde8f9c53f2de2d93f52a9
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
1ed8d2fa095aae4bdc7fdd80351009a48d286635edffee66bf865e37a9125c50
- Sigstore transparency entry: 233552462
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 213.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1073557c941395fdfcfac13eb2456cb8aad89f9de27bae29fabca8e563b12615
|
|
MD5 |
1c7f42430e26c40668069839a06866a8
|
|
BLAKE2b-256 |
508241cb97d9c9a5ff94438c63cc343eb7980dac4187eb625a51bdfdb7707314
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
1073557c941395fdfcfac13eb2456cb8aad89f9de27bae29fabca8e563b12615
- Sigstore transparency entry: 233552580
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 46.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a0fd1bad056a3600047fb9462cff4c5322cebc59ebf5d0a3725e0ee78955001d
|
|
MD5 |
e2a028ccd3692d140807de8bd1d0b70a
|
|
BLAKE2b-256 |
37129d07fa18971a44150593de56b2f2947c46604819976784bcf6ea0d5db43b
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
-
Subject digest:
a0fd1bad056a3600047fb9462cff4c5322cebc59ebf5d0a3725e0ee78955001d
- Sigstore transparency entry: 233552513
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 47.7 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
716a9973a2cc963160394f701964fe25012600f3d311f60c790400b00e568b61
|
|
MD5 |
ab314f417e86b6daed647bff17ad2840
|
|
BLAKE2b-256 |
77f077c11d13d39513b298e267b22eb6cb559c103d56f155aa9a49097221f0b6
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
-
Subject digest:
716a9973a2cc963160394f701964fe25012600f3d311f60c790400b00e568b61
- Sigstore transparency entry: 233552441
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 81.3 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cc4df77d638aa2ed703b878dd093725b72a824c3c546c076e8fdf276f78ee84a
|
|
MD5 |
1d7b37d2522250fb7b15f3a1b0f00505
|
|
BLAKE2b-256 |
af360da0a49409f6b47cc2d060dc8c9040b897b5902a8a4e37d9bc1deb11f680
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
-
Subject digest:
cc4df77d638aa2ed703b878dd093725b72a824c3c546c076e8fdf276f78ee84a
- Sigstore transparency entry: 233552503
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 44.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
43a82fce6769c70f2f5a06248b614a7d268080a9d20f7457ef10ecee5af82b63
|
|
MD5 |
bbe71ab71f0a19386ef5b45f9ba38406
|
|
BLAKE2b-256 |
5a45827d86ee475c877f5f766fbc23fb6acb6fada9e52f1c9720e2ba3eae32da
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-win_amd64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-win_amd64.whl
-
Subject digest:
43a82fce6769c70f2f5a06248b614a7d268080a9d20f7457ef10ecee5af82b63
- Sigstore transparency entry: 233552415
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-win32.whl
- Upload date:
- Size: 39.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b3950f11058310008a87757f3eee16a8e1ca97979833239439586857bc25482e
|
|
MD5 |
39adfe495ee93459c42be05e7462bf8b
|
|
BLAKE2b-256 |
08490042469993e023a758af81db68c76907cd29e847d772334d4d201cbe9a42
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-win32.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-win32.whl
-
Subject digest:
b3950f11058310008a87757f3eee16a8e1ca97979833239439586857bc25482e
- Sigstore transparency entry: 233552555
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 222.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9ccec739a99e4ccf664ea0775149f2749b8a6418eb5b8384b4dc0a7d15d304cb
|
|
MD5 |
7e9f38a597c77e75a646a328687aedf5
|
|
BLAKE2b-256 |
8b72a19a40bcdaa28a51add2aaa3a1a294ec357f36f27bd836a012e070c5e8a5
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
-
Subject digest:
9ccec739a99e4ccf664ea0775149f2749b8a6418eb5b8384b4dc0a7d15d304cb
- Sigstore transparency entry: 233552567
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl
- Upload date:
- Size: 235.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f22dac33bb3ee8fe3e013aa7b91dc12f60d61d05b7fe32191ffa84c3aafe77bd
|
|
MD5 |
4d8892a617f1616772b1ad5f8e605b9b
|
|
BLAKE2b-256 |
8d4de99014756093b4ddbb67fb8f0df11fe7a415760d69ace98e2ac6d5d43402
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl
-
Subject digest:
f22dac33bb3ee8fe3e013aa7b91dc12f60d61d05b7fe32191ffa84c3aafe77bd
- Sigstore transparency entry: 233552468
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9a19e85cc503d958abe5218953df722748d87172f71b73cf3c9257a91b999890
|
|
MD5 |
1c9db9be824eb222f564c110c0df5e3a
|
|
BLAKE2b-256 |
5e9cca5105fa7fb5abdfa8837581be790447ae051da75d32f25c8f81082ffc45
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
-
Subject digest:
9a19e85cc503d958abe5218953df722748d87172f71b73cf3c9257a91b999890
- Sigstore transparency entry: 233552485
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 220.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e22b9a99741294b2571667c07d9f8cceec07cb92aae5ccda39ea1b6052ed4319
|
|
MD5 |
5d26b94d0f0e63b488d5af579901b59c
|
|
BLAKE2b-256 |
4b1e99c93e54aa382e949a98976a73b9b20c3aae6d9d893f31bbe4991f64e3a8
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl
-
Subject digest:
e22b9a99741294b2571667c07d9f8cceec07cb92aae5ccda39ea1b6052ed4319
- Sigstore transparency entry: 233552449
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 239.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
836b42f472a0e006e02499cef9352ce8097f33df43baaba3e0a28a964c26c7d2
|
|
MD5 |
b17959e625642fcbf8711c5bda5c663a
|
|
BLAKE2b-256 |
441e7dae8c54301beb87bcafc6144b9a103bfd2c8f38078c7902984c9a0c4e5b
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
-
Subject digest:
836b42f472a0e006e02499cef9352ce8097f33df43baaba3e0a28a964c26c7d2
- Sigstore transparency entry: 233552543
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 224.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2ea2a7369eb76de2217a842f22087913cdf75f63cf1307b9024ab82dfb525938
|
|
MD5 |
f7e868a3012fe72168c63569572f399c
|
|
BLAKE2b-256 |
7b227145e35d12fb368d92124f679bea87309495e2e9ddf14c6533990cb69218
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
-
Subject digest:
2ea2a7369eb76de2217a842f22087913cdf75f63cf1307b9024ab82dfb525938
- Sigstore transparency entry: 233552466
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 229.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e793a9f01b3e8b5c0bc646fb59140ce0efcc580d22a3468d70766091beb81b35
|
|
MD5 |
4c93d9ccf91bef25af086b031c34e744
|
|
BLAKE2b-256 |
546eef52375aa93d4bc510d061df06205fa6dcfd94cd631dd22956b09128f0d4
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
e793a9f01b3e8b5c0bc646fb59140ce0efcc580d22a3468d70766091beb81b35
- Sigstore transparency entry: 233552473
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 235.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1137b78384eebaf70560a36b7b229f752fb64d463d38d1304939984d5cb887b6
|
|
MD5 |
0fe3adba21454dc3c0f004ba5f878900
|
|
BLAKE2b-256 |
fc898225905bf889b97c6d935dd3aeb45668461e59d415cb019619383a8a7c3b
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
1137b78384eebaf70560a36b7b229f752fb64d463d38d1304939984d5cb887b6
- Sigstore transparency entry: 233552608
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 224.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c70db4a0ab5ab20878432c40563573229a7ed9241506181bba12f6b7d0dc41cb
|
|
MD5 |
5daa31a813dbe94db5a25109b7c72165
|
|
BLAKE2b-256 |
0a678258d971f519dc3f278c55069a775096cda6610a267b53f6248152b72b2f
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
-
Subject digest:
c70db4a0ab5ab20878432c40563573229a7ed9241506181bba12f6b7d0dc41cb
- Sigstore transparency entry: 233552445
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 226.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
974c5336e61d6e7eb1ea5b929cb645e882aadab0095c5a6974a111e6479f8878
|
|
MD5 |
c7c8073afb0dd4c61a0ca3feccb7882e
|
|
BLAKE2b-256 |
933aa5334c0535c8b7c78eeabda1579179e44fe3d644e07118e59a2276dedaf1
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
974c5336e61d6e7eb1ea5b929cb645e882aadab0095c5a6974a111e6479f8878
- Sigstore transparency entry: 233552416
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 225.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1e63344c4e929b1a01e29bc184bbb5fd82954869033765bfe8d65d09e336a677
|
|
MD5 |
3ba11db4774ade96797462ff4e50333a
|
|
BLAKE2b-256 |
45d2263fea1f658b8ad648c7d94d18a87bca7e8c67bd6a1bbf5445b1bd5b158c
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
-
Subject digest:
1e63344c4e929b1a01e29bc184bbb5fd82954869033765bfe8d65d09e336a677
- Sigstore transparency entry: 233552420
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 216.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
74739ba8e4e38221d2c5c03d90a7e542cb8ad681915f4ca8f68d04f810ee0a87
|
|
MD5 |
fb08702263c3bdf74d2fdacd0466734e
|
|
BLAKE2b-256 |
ee5562c87d1a6547bfbcd645df10432c129100c5bd0fd92a384de6e3378b07c1
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
-
Subject digest:
74739ba8e4e38221d2c5c03d90a7e542cb8ad681915f4ca8f68d04f810ee0a87
- Sigstore transparency entry: 233552437
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 47.2 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dfcebf56f703cb2e346315431699f00db126d158455e513bd14089d992101e44
|
|
MD5 |
159c8bbe3bae699078b918f880e1f8ff
|
|
BLAKE2b-256 |
b78da0d04f28b6e821a9685c22e67b5fb798a5a7b68752f104bfbc2dccf080c4
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
-
Subject digest:
dfcebf56f703cb2e346315431699f00db126d158455e513bd14089d992101e44
- Sigstore transparency entry: 233552506
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 48.2 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7d536ee086b23fecc36c2073c371572374ff50ef4db515e4e503925361c24f71
|
|
MD5 |
3b280923aef022c8007e1b994e0a45b6
|
|
BLAKE2b-256 |
75e1d518391ce36a6279b3fa5bc14327dde80bcb646bb50d059c6ca0756b8d05
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
-
Subject digest:
7d536ee086b23fecc36c2073c371572374ff50ef4db515e4e503925361c24f71
- Sigstore transparency entry: 233552430
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type:
File details
Details for the file frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 82.4 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cea3dbd15aea1341ea2de490574a4a37ca080b2ae24e4b4f4b51b9057b4c3630
|
|
MD5 |
d263119d4059abccc22a36f21a80b577
|
|
BLAKE2b-256 |
ddb1ee59496f51cd244039330015d60f13ce5a54a0f2bd8d79e4a4a375ab7469
|
Provenance
The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
:
Publisher:
ci-cd.yml
on aio-libs/frozenlist
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
-
Subject digest:
cea3dbd15aea1341ea2de490574a4a37ca080b2ae24e4b4f4b51b9057b4c3630
- Sigstore transparency entry: 233552520
- Sigstore integration time:
-
Permalink:
aio-libs/frozenlist@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Branch / Tag:
refs/tags/v1.7.0
- Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
ci-cd.yml@63cbd49b3df13fcd661ae79e5e2eb66c46a1684a
-
Trigger Event:
push
-
Statement type: