propcache
The module provides a fast implementation of cached properties for Python 3.10+.
Introduction
The API is designed to be nearly identical to the built-in functools.cached_property class, except for the additional under_cached_property class which uses self._cache instead of self.__dict__ to store the cached values and prevents __set__ from being called.
For full documentation please read https://propcache.readthedocs.io.
Installation
$ pip install propcache
The library is Python 3 only!
PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install propcache on another operating system where wheels are not provided, the the tarball will be used to compile the library from the source code. It requires a C compiler and and Python headers installed.
To skip the compilation you must explicitly opt-in by using a PEP 517 configuration setting pure-python, or setting the PROPCACHE_NO_EXTENSIONS environment variable to a non-empty value, e.g.:
$ pip install propcache --config-settings=pure-python=false
Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.
API documentation
The documentation is located at https://propcache.readthedocs.io.
Source code
The project is hosted on GitHub
Please file an issue on the bug tracker if you have found a bug or have some suggestion in order to improve the library.
Discussion list
aio-libs GitHub Discussions: https://github.com/aio-libs/propcache/discussions
Feel free to post your questions and ideas here.
0.5.4
(2026-09-15)
Packaging updates and notes for downstreams
Fixed the release wheels being compiled without optimization since version 0.5.0. The build backend set CFLAGS to add -ffile-prefix-map, which replaced the interpreter’s own compiler flags instead of extending them, so -O3 and -DNDEBUG were dropped; the extra flags now go through CPPFLAGS, which is appended. Cached property reads are about 1.5x faster than in 0.5.3 – by @bdraco.
0.5.3
(2026-09-15)
Bug fixes
Fixed a possible crash in the C implementation of cached_property and under_cached_property on free-threaded Python, where a cached value could be freed by another thread while it was being read; errors raised while looking up the cache are now propagated on all builds, and the computed value is no longer leaked if storing it fails – by @bdraco.
Related issues and pull requests on GitHub: #297.
Removals and backward incompatible breaking changes
Improved documentation
Packaging updates and notes for downstreams
The setuptools build dependency lower bound has been restored to be >= 47 after an incorrect automated increase in PR #207 – by @bbhtt.
Related issues and pull requests on GitHub: #207.
Dropped support for free-threaded Python 3.13 – by @Vizonex.
Related issues and pull requests on GitHub: #223.
Dropped the deprecated License :: OSI Approved :: Apache Software License classifier; setuptools 84 warns about it and the dist build treats warnings as errors, so releases could no longer be built – by @bdraco.
Related issues and pull requests on GitHub: #299.
Contributor-facing changes
Dependabot has been restricted to the requirements subdirectory to avoid unintended updates outside dependency requirement files – by @bbhtt.
Related issues and pull requests on GitHub: #207.
Added an AGENTS.md file with contributor guidance for AI coding agents, adapted from the yarl equivalent – by @bdraco.
Related issues and pull requests on GitHub: #231.
Migrated from standalone black and isort pre-commit hooks to ruff format and the ruff I lint rule, sharing a new [tool.ruff] config in pyproject.toml. ruff-check runs with --fix so import-order fixes apply on commit, and the orphan [isort] block in setup.cfg was removed – by @bdraco.
Related issues and pull requests on GitHub: #232.
Switched the cibuildwheel build frontend to build[uv] so that uv provisions every build and test virtual environment in the wheel matrix. Test-dependency installation in particular drops from a multi-second pip install per ABI to a roughly sub-second uv resolve – by @bdraco.
Related issues and pull requests on GitHub: #234.
Dropped the libffi-devel install from the cibuildwheel Linux before-all step. It was added in PR #75 so cffi could build from source during wheel testing; the current wheel-test chain no longer pulls in cffi, so the header package is dead weight – by @bdraco.
Related issues and pull requests on GitHub: #236.
The type preciseness coverage report generated by MyPy is now uploaded to Coveralls and will not be included in the Codecov views going forward – by @aiolibsbot.
Related issues and pull requests on GitHub: #239.
Switched CI/CD to tox-dev/workflow’s reusable-tox.yml driven by an in-tree tox.ini. The build, metadata-validation and lint (pre-commit, spellcheck-docs) jobs all run through the reusable workflow; mypy coverage uploads to Coveralls from a post-tox-job hook – by @bdraco.
Related issues and pull requests on GitHub: #243.
Overrode CIBW_BUILD_FRONTEND=build for the QEMU-emulated odd-arch wheel matrix, since the pypa odd-arch container images do not ship uv preinstalled and the project’s pyproject.toml sets build-frontend = "build[uv]" – by @bdraco.
Related issues and pull requests on GitHub: #246.
Allowed re-running the deploy job after a partial release failure: the Make Release step now skips when the GitHub Release already exists, and the PyPI publish step uses skip-existing so dists that were already uploaded on a prior attempt do not break the retry – by @bdraco.
Related issues and pull requests on GitHub: #247.
Switched the aarch64 and armv7l wheel builds to GitHub’s native ARM runners. The aarch64 wheels now build without QEMU emulation, and armv7l runs on aarch64 hosts so its 32-bit ARM execution is far cheaper than the previous aarch64-on-x86_64 path – by @bdraco.
Related issues and pull requests on GitHub: #248.
Added UV_CONSTRAINT and UV_BUILD_CONSTRAINT alongside PIP_CONSTRAINT and PIP_BUILD_CONSTRAINT in the cibuildwheel environment so the requirements/cython.txt pin is honored under the build[uv] frontend; uv pip ignores the PIP_ variables and reads only the UV_ ones, while the PIP_ variants are kept for the pip fallback path – by @bdraco.
Related issues and pull requests on GitHub: #249.
Fixed coverage for testing benchmarks when codspeed is not installed – by @Vizonex.
Related issues and pull requests on GitHub: #251.
Stopped running the test suite inside the wheel build jobs outside of release builds, since the test matrix installs and tests the same wheels, and added Python 3.15 and 3.15t to the test matrix so those wheels stay covered. Off-tag macOS builds are now limited to the architecture the test matrix runs on. Release builds still build every architecture and test every wheel, and all release checks in the CI workflow now use github.ref_type – by @bdraco.
Related issues and pull requests on GitHub: #300.
0.5.2
(2026-05-08)
No significant changes.
0.5.1
(2026-05-08)
No significant changes.
0.5.0
(2026-05-08)
Features
Removals and backward incompatible breaking changes
Dropped support for Python 3.9 as it has reached end of life.
Related issues and pull requests on GitHub: #216.
Packaging updates and notes for downstreams
Changed the Cython build dependency from ~= 3.1.0 to >= 3.2.0, removing the upper version bound to avoid conflicts for downstream packagers – by @jameshilliard and @gundalow.
The upstream Cython version is pinned to 3.2.4 in the CI/CD environment.
Related issues and pull requests on GitHub: #184, #188, #214.
Start building and shipping riscv64 wheels – by @justeph.
Related issues and pull requests on GitHub: #194.
The PEP 517 build backend now supports a new build-inplace config setting (and PROPCACHE_BUILD_INPLACE environment variable) for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds; they will keep being built in-tree regardless.
Here’s an example of using this setting:
$ python -m build --config-setting=build-inplace=trueAdditionally, when building wheels in an automatically created temporary directory, the build backend now normalizes the respective file system path to a deterministic source checkout directory by injecting the -ffile-prefix-map compiler option into the CFLAGS environment variable, as suggested by known reproducible build practices.
The effect is that downstreams will get reproducible build results.
Related issues and pull requests on GitHub: #218.
0.4.1
(2025-10-08)
Bug fixes
Contributor-facing changes
Fixes the default value for the os parameter in reusable-build-wheel.yml to be ubuntu-latest instead of ubuntu.
Related issues and pull requests on GitHub: #155.
0.4.0
(2025-10-04)
Features
Contributor-facing changes
Builds have been added for arm64 Windows wheels and the reusable-build-wheel.yml workflow has been modified to allow for an OS value (windows-11-arm) which does not include the -latest postfix – by @finnagin.
Related issues and pull requests on GitHub: #133.
Added CI for CPython 3.14 – by @kumaraditya303.
Related issues and pull requests on GitHub: #140.
0.3.2
(2025-06-09)
Improved documentation
Packaging updates and notes for downstreams
Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.
Related issues and pull requests on GitHub: #117.
Made Cython line tracing opt-in via the with-cython-tracing build config setting – by @bdraco.
Previously, line tracing was enabled by default in pyproject.toml, which caused build issues for some users and made wheels nearly twice as slow.
Now line tracing is only enabled when explicitly requested via pip install . --config-setting=with-cython-tracing=true or by setting the PROPCACHE_CYTHON_TRACING environment variable.
Related issues and pull requests on GitHub: #118.
0.3.1
(2025-03-25)
Bug fixes
Improved typing annotations, fixing some type errors under correct usage and improving typing robustness generally – by @Dreamsorcerer.
Related issues and pull requests on GitHub: #103.
0.3.0
(2025-02-20)
Features
Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.
Related issues and pull requests on GitHub: #84.
Packaging updates and notes for downstreams
Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.
Related issues and pull requests on GitHub: #84.
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: #93.
0.2.1
(2024-12-01)
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: 64df0a6.
Fixed wrapped and func not being accessible in the Cython versions of propcache.api.cached_property and propcache.api.under_cached_property decorators – by @bdraco.
Related issues and pull requests on GitHub: #72.
Removals and backward incompatible breaking changes
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: 64df0a6.
0.2.0
(2024-10-07)
Bug fixes
Features
Improved documentation
Packaging updates and notes for downstreams
0.1.0
(2024-10-03)
Features
0.0.0
(2024-10-02)
Initial release.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file propcache-0.5.4.tar.gz.
File metadata
- Download URL: propcache-0.5.4.tar.gz
- Upload date:
- Size: 61.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff6b113f50bc066a698db5d944d2c6dc7507168dd3341e255a8892fd0715a558
|
|
| MD5 |
a0ee7b9105e3b9a423278af3816c1751
|
|
| BLAKE2b-256 |
b39a9fbf4e4ec0c2d7f1c32519fff782ef467859b8faa9fbc5331a96f6395d43
|
Provenance
The following attestation bundles were made for propcache-0.5.4.tar.gz:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4.tar.gz -
Subject digest:
ff6b113f50bc066a698db5d944d2c6dc7507168dd3341e255a8892fd0715a558 - Sigstore transparency entry: 2852958568
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-py3-none-any.whl.
File metadata
- Download URL: propcache-0.5.4-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c60aec739ed00124573cce1178138fd690c7676352d67a37328c1cf51d7468
|
|
| MD5 |
de798732b7d9594bbe24897cc0ac6888
|
|
| BLAKE2b-256 |
f5cd785c64ed382f3f04201870267b02783f63b4678c2acfddc177a3ebcc2727
|
Provenance
The following attestation bundles were made for propcache-0.5.4-py3-none-any.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-py3-none-any.whl -
Subject digest:
62c60aec739ed00124573cce1178138fd690c7676352d67a37328c1cf51d7468 - Sigstore transparency entry: 2852962903
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-win_arm64.whl
- Upload date:
- Size: 45.6 kB
- Tags: CPython 3.15t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc4242ca653c9b30ab51c5f8193323e7bc0928f897ee9103201e59a43abcb72e
|
|
| MD5 |
22716cd22774d0a3d5b9e337fe4a2778
|
|
| BLAKE2b-256 |
57bebcc053f66a97355683884b448198e79580fae8e8fa4d96b9bb01614e9913
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-win_arm64.whl -
Subject digest:
dc4242ca653c9b30ab51c5f8193323e7bc0928f897ee9103201e59a43abcb72e - Sigstore transparency entry: 2852962557
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-win_amd64.whl
- Upload date:
- Size: 48.6 kB
- Tags: CPython 3.15t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02c0a34f16889cf800f10f0247a564d8ce6eeab6ffcd7c87198f769067eb8432
|
|
| MD5 |
2bd4d7a221f1f463d5090e53697ef2e2
|
|
| BLAKE2b-256 |
d4ef8bae0a316d406644450522f2f3d44a4e19632f5f3bb60d1d0e6c53842616
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-win_amd64.whl -
Subject digest:
02c0a34f16889cf800f10f0247a564d8ce6eeab6ffcd7c87198f769067eb8432 - Sigstore transparency entry: 2852963069
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-win32.whl
- Upload date:
- Size: 45.9 kB
- Tags: CPython 3.15t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1df8d8561b21465c5dd56110a01caf897e026d065b4b84e98a488209094272ec
|
|
| MD5 |
dcdc8e96b93956e7146e94a3de4c5bc3
|
|
| BLAKE2b-256 |
ea60d8f72cb24b412487ed4c397f539117d3b74c3c33dd32020e91fe00a958a8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-win32.whl -
Subject digest:
1df8d8561b21465c5dd56110a01caf897e026d065b4b84e98a488209094272ec - Sigstore transparency entry: 2852959600
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 279.4 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3af0c8642b2da4815d86e631232ac8286e17644fad907c19508aa8e7cb4ba8ad
|
|
| MD5 |
9b862a7ea65bdbc725c7a7dfad445a32
|
|
| BLAKE2b-256 |
533c016f1cad8bf4c428d748cf399b2bac603026fbfd6966e6a5579b5c5b6956
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl -
Subject digest:
3af0c8642b2da4815d86e631232ac8286e17644fad907c19508aa8e7cb4ba8ad - Sigstore transparency entry: 2852962675
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl
- Upload date:
- Size: 283.0 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12682126712ddc19b70ff819debbd279e58adf1f0c8f8f8138c18ade2044b284
|
|
| MD5 |
98f2d7e83b9ffb64a91797f87ebf9f85
|
|
| BLAKE2b-256 |
3fd07f79f061e30d135bb615c9782c94a74652033d00b49254edbbf35a9165a8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl -
Subject digest:
12682126712ddc19b70ff819debbd279e58adf1f0c8f8f8138c18ade2044b284 - Sigstore transparency entry: 2852962739
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 248.2 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13e52b6e0bde97dee98ab66552dbff2931649c96f1ac432eac299fe689ec373b
|
|
| MD5 |
0e91c43bc6cda36aa86c77852858959c
|
|
| BLAKE2b-256 |
1aae351b1a5225f5473c411d9a612a229ae147cf0cf65c72ad838b87219ea8e8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl -
Subject digest:
13e52b6e0bde97dee98ab66552dbff2931649c96f1ac432eac299fe689ec373b - Sigstore transparency entry: 2852961023
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 283.1 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3eb2e820e8e2101407da93f17c57cbb7d225461955fc60105daaba14cd421ee2
|
|
| MD5 |
5b29b2918815eb5855d102d77d63c456
|
|
| BLAKE2b-256 |
3a117ddf336288b2678a5f054f8da2e2bd1a719f5d4b7de714d9c6bd588a2313
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl -
Subject digest:
3eb2e820e8e2101407da93f17c57cbb7d225461955fc60105daaba14cd421ee2 - Sigstore transparency entry: 2852962980
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 266.1 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
420162a77f94eb1cf5ef7893f500016dabd548e73de956785a1dd899cc73006a
|
|
| MD5 |
818e2ed9c00584adb38cb79ab1d04821
|
|
| BLAKE2b-256 |
5428fab2809c2e337fe26becea9648e84d5cef46075c91b826acb13e4f9dd04e
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl -
Subject digest:
420162a77f94eb1cf5ef7893f500016dabd548e73de956785a1dd899cc73006a - Sigstore transparency entry: 2852960117
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 280.7 kB
- Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7177c43eddf10a0893c4fec52ebb408fdcd7f7d63962caace9180d8f81b14ece
|
|
| MD5 |
221c1433b0c7ee923ede30ad2b228a21
|
|
| BLAKE2b-256 |
cdb5c0a142b656093ca397039dd3fe166cbb87c945712b534546514a24cd2611
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl -
Subject digest:
7177c43eddf10a0893c4fec52ebb408fdcd7f7d63962caace9180d8f81b14ece - Sigstore transparency entry: 2852960408
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 248.0 kB
- Tags: CPython 3.15t, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef3b928d9c984322b5c44e6964d8dbc653da87d2d8ee1647fa6da43072e650a9
|
|
| MD5 |
3e9abffcf46a5d3e710e547f852df043
|
|
| BLAKE2b-256 |
ac9c34a55396910583ed07926669ab309dde2213a2dec05a7e946bb90ad66908
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
ef3b928d9c984322b5c44e6964d8dbc653da87d2d8ee1647fa6da43072e650a9 - Sigstore transparency entry: 2852961784
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 285.4 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03969626faf0783a592dfa17e28eac06018bd0b44dafae6943d53b92421a7f72
|
|
| MD5 |
c4484a5e04a4e2455ce6ae562a850d71
|
|
| BLAKE2b-256 |
270dc5090f9e6f67cbc30a2b744c7bb0f8006dcba5ec1b0d82f866ae1cc7c5c4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
03969626faf0783a592dfa17e28eac06018bd0b44dafae6943d53b92421a7f72 - Sigstore transparency entry: 2852963276
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 300.1 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
770e8209d018175fc0063936fa9583b6d27e88c5ad31543f3383d66080efdd62
|
|
| MD5 |
68b504039239781a73aa0afd7c6282a4
|
|
| BLAKE2b-256 |
f288c98f49183ecd3e5b204a556f0ca47baa02c2206a500fe8c7ec1726297b0a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
770e8209d018175fc0063936fa9583b6d27e88c5ad31543f3383d66080efdd62 - Sigstore transparency entry: 2852962169
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 294.5 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cacf3c9efd09df409dc33654dd077e1c245ba8fb747b0f0236ef41b7c49b589
|
|
| MD5 |
646ee47fc810251a6840014a3645e1b1
|
|
| BLAKE2b-256 |
5aeb5ce886e902a2e781dddf110993d5329458a9b1a8626b876c65e5e25bf413
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
5cacf3c9efd09df409dc33654dd077e1c245ba8fb747b0f0236ef41b7c49b589 - Sigstore transparency entry: 2852962960
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 295.2 kB
- Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10ef33a68a61ce317e095fd2e202a592ea92392b90944a78c993f0d9a73ab06c
|
|
| MD5 |
feb1c239705442d78bb876091ad89552
|
|
| BLAKE2b-256 |
3fb69ed0a5c939b58b6bed740a05b5d0f919f0b318d03284b4b6d81a0fe8a29a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
10ef33a68a61ce317e095fd2e202a592ea92392b90944a78c993f0d9a73ab06c - Sigstore transparency entry: 2852963007
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl
- Upload date:
- Size: 54.0 kB
- Tags: CPython 3.15t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5470694918830da62fac9e69133b53d23b736d7070e587b27a4a2be37e08e68
|
|
| MD5 |
f074501747c70b367dda3a2f63890291
|
|
| BLAKE2b-256 |
246c924c810be5b7cf218ef47e707cf06d34adb4e3f3a31e3c24c55c6d945a88
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl -
Subject digest:
f5470694918830da62fac9e69133b53d23b736d7070e587b27a4a2be37e08e68 - Sigstore transparency entry: 2852961748
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.15t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d86476a935c88963d9b8e1a9a0d38188790e9622169bfbafa173046846709d3
|
|
| MD5 |
44327ca739ddcb3cef6411a7ca16ba51
|
|
| BLAKE2b-256 |
9f8bdfeff925cb6ced97ede701d5c6a99998da963c6f2e06abbf879c9dac5b54
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl -
Subject digest:
4d86476a935c88963d9b8e1a9a0d38188790e9622169bfbafa173046846709d3 - Sigstore transparency entry: 2852959066
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl
- Upload date:
- Size: 89.8 kB
- Tags: CPython 3.15t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5e8ef588c109725dc713ba69aadcac00a1ef90c2ce9c0a8c7075128f569f47f
|
|
| MD5 |
be36cab8377d26d8ac156038a7028fca
|
|
| BLAKE2b-256 |
70f67e2f4dab0b92ab46111bd48cee9ee1e5f519514c44e3779ede5358d7ada0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl -
Subject digest:
a5e8ef588c109725dc713ba69aadcac00a1ef90c2ce9c0a8c7075128f569f47f - Sigstore transparency entry: 2852963083
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-win_arm64.whl
- Upload date:
- Size: 43.4 kB
- Tags: CPython 3.15, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c83acbce9f2b5e3f5f5eda9e53d2001fed22fcdfef81274a9e02d8fd53b70a30
|
|
| MD5 |
25d57ad3e249f799be47e7735da557f3
|
|
| BLAKE2b-256 |
6510fef04fbdcd44a4a163cb5ff5674599c6d6fdefd64a5a459438f9ad2ba042
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-win_arm64.whl -
Subject digest:
c83acbce9f2b5e3f5f5eda9e53d2001fed22fcdfef81274a9e02d8fd53b70a30 - Sigstore transparency entry: 2852962507
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 46.3 kB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceb3e879afac028f93d272c957814695dc5569e4904262dbee92f6c41bd5e4a3
|
|
| MD5 |
3ac82e82f752204575dd99d33a78f5fe
|
|
| BLAKE2b-256 |
260793cf699ed363681e754d7c3fad587fb09ef6b65618ee193332ad16a68d7b
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-win_amd64.whl -
Subject digest:
ceb3e879afac028f93d272c957814695dc5569e4904262dbee92f6c41bd5e4a3 - Sigstore transparency entry: 2852963286
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-win32.whl
- Upload date:
- Size: 43.5 kB
- Tags: CPython 3.15, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee19113bce2f3acd46432050688b70f61acd6857d75abb9ec96341b7e9ced123
|
|
| MD5 |
f496c286d84b24e892bedcf96dd8ef84
|
|
| BLAKE2b-256 |
ff5c5a59527582e9bcb694b2f08b9894134b65a0f5f79dbff174f054f5f74ed0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-win32.whl -
Subject digest:
ee19113bce2f3acd46432050688b70f61acd6857d75abb9ec96341b7e9ced123 - Sigstore transparency entry: 2852962353
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 227.3 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada748108a43d29b7c328ba7db3755327cd94f028bcc1a7ee3f0addcfacd9c38
|
|
| MD5 |
33320dd5da3b7e1c8027c85cd633b3bb
|
|
| BLAKE2b-256 |
9f84b6a1490922427204fc47df920ed002eec709621de6b79b11592bf45c623a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl -
Subject digest:
ada748108a43d29b7c328ba7db3755327cd94f028bcc1a7ee3f0addcfacd9c38 - Sigstore transparency entry: 2852962951
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl
- Upload date:
- Size: 234.5 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45bebbe252550fec975ba3b62bc6f931643cfd3b5464ef47619cf3fef154e01c
|
|
| MD5 |
e6a56c6c2e1ffbb1c6b9734aa1a1d2b4
|
|
| BLAKE2b-256 |
1861e16462ef18a87247dc9ebbd5c606f46d5ce67e708bd9cc734dd0d9222564
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl -
Subject digest:
45bebbe252550fec975ba3b62bc6f931643cfd3b5464ef47619cf3fef154e01c - Sigstore transparency entry: 2852961967
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 206.2 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
350b272b2279f4135a64fc0c304a5d08e28a137c9573442c606152446638a831
|
|
| MD5 |
d0e8d4a8c31125280456e5c71af00841
|
|
| BLAKE2b-256 |
0429b39cae08c87c140d3d274f0a2c058cb5588e836175c3309e260b230ab07d
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl -
Subject digest:
350b272b2279f4135a64fc0c304a5d08e28a137c9573442c606152446638a831 - Sigstore transparency entry: 2852960521
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 233.2 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58134228927cee6c047d626c08e60a81be604a20578a12ce752cc5c9a84d4826
|
|
| MD5 |
b4e410db2a4fe238367012ca6978b157
|
|
| BLAKE2b-256 |
a8f4025890cc389ac3ec485ecec607d4a7ca47e15bfa2a465746ab98af602536
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl -
Subject digest:
58134228927cee6c047d626c08e60a81be604a20578a12ce752cc5c9a84d4826 - Sigstore transparency entry: 2852963192
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 218.3 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b61805357d966680acf68b3b6d49772631ed9df44ebece10ff1460e117a7da8a
|
|
| MD5 |
12ce6770a0b95c641326fb18862254dc
|
|
| BLAKE2b-256 |
85713f54e1535c8f323d91ba566044d7c2b39ff6f6a2f1d0bd9071779d07b9b3
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl -
Subject digest:
b61805357d966680acf68b3b6d49772631ed9df44ebece10ff1460e117a7da8a - Sigstore transparency entry: 2852963172
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 228.5 kB
- Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a419ee85e654927baabda3929c03c0cc1112bf472ff0dfd6142f4e3a81ca4162
|
|
| MD5 |
21adb553192794265831dccfe7419efc
|
|
| BLAKE2b-256 |
4e72940aed42c73f9da345ca2de0f6e835c726498159abca5f1ef14fb0a2af8a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl -
Subject digest:
a419ee85e654927baabda3929c03c0cc1112bf472ff0dfd6142f4e3a81ca4162 - Sigstore transparency entry: 2852960572
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 206.1 kB
- Tags: CPython 3.15, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e738ab81179510ce79b2eac9a6ecf47feffd9e76d1c72e403005dddb6e36c06c
|
|
| MD5 |
873fcc5f8810974e3c208c2a52147746
|
|
| BLAKE2b-256 |
b9c65a79e0eda3e7b6987d03d8c622ff6d52a42165a12e8418eb37694b9cc4b4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
e738ab81179510ce79b2eac9a6ecf47feffd9e76d1c72e403005dddb6e36c06c - Sigstore transparency entry: 2852960630
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 232.2 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23278f808cd81d5ada7184a76606b925fb3389c60e1077b2cd7da7b1fcf0553c
|
|
| MD5 |
b46c46762f3537bd5d7db78db4c18a85
|
|
| BLAKE2b-256 |
ce4e58b9b1460afc97a4c0b17ee89af701c4011d4d7f46470eba3aaff76a8069
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
23278f808cd81d5ada7184a76606b925fb3389c60e1077b2cd7da7b1fcf0553c - Sigstore transparency entry: 2852959719
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 245.2 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf4f7a79e26bb7efb06ecd50c177833b71df05cbc748701372325e6bcc17f6f
|
|
| MD5 |
14e259433b41c74d4605d89a2db4efc0
|
|
| BLAKE2b-256 |
fb81f1459415cdb6c10d46942779de39bb59a77b38e5a76bb1def9227962eb45
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
ccf4f7a79e26bb7efb06ecd50c177833b71df05cbc748701372325e6bcc17f6f - Sigstore transparency entry: 2852962438
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 241.2 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d21d0d2c82bbfeb1677a9711f38df968f9837576102bb4add1bd449d28d88f1
|
|
| MD5 |
0d704530cdbc02d9f2d4b2c3831d4b0d
|
|
| BLAKE2b-256 |
faddd36ad35986718530498a65e45e3713f9f0e6a580f192ef02d2ef7cae9b52
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
0d21d0d2c82bbfeb1677a9711f38df968f9837576102bb4add1bd449d28d88f1 - Sigstore transparency entry: 2852959506
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 232.9 kB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50e337653721d20ead710da33bf44487fbe8a0db8782714b60306481e9f95b51
|
|
| MD5 |
48bf181b77a360bb05c682618513c45f
|
|
| BLAKE2b-256 |
e907057bdd3a9609ffad59b06239cceee784b047f6c720247bfaa36d2103e138
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
50e337653721d20ead710da33bf44487fbe8a0db8782714b60306481e9f95b51 - Sigstore transparency entry: 2852961617
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 51.7 kB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
174507f82d3594622acb1dd2dafecf2d899d6d506335494e7107767bf05f3aae
|
|
| MD5 |
344f6fc28bcc844b34469f0ea18dbc57
|
|
| BLAKE2b-256 |
a51aad561f99f90884089e6403b76c220610809429ba868a81a2e7ce115d32e0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl -
Subject digest:
174507f82d3594622acb1dd2dafecf2d899d6d506335494e7107767bf05f3aae - Sigstore transparency entry: 2852959024
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl
- Upload date:
- Size: 50.1 kB
- Tags: CPython 3.15, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31eb43ba2edc704ab2ec27815315dd8a19def0fb16215be4cfe8d32fe78ffd51
|
|
| MD5 |
94f93073015ecbf391d13829e9fc4b6a
|
|
| BLAKE2b-256 |
5841c0acd69271de7a1cf439e77d5d60c18575fd09bad56e798b95fa23458ea4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl -
Subject digest:
31eb43ba2edc704ab2ec27815315dd8a19def0fb16215be4cfe8d32fe78ffd51 - Sigstore transparency entry: 2852961932
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl
- Upload date:
- Size: 85.6 kB
- Tags: CPython 3.15, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45bf2e730ab8905d0527fe05a86500f406e64305c34cc81ebe64b4617cab9760
|
|
| MD5 |
5efc55c5cf3f31a0dcb22768e095bc36
|
|
| BLAKE2b-256 |
5825895a11d1e4c5c2acc6d816e2bece34e02d9dc92f2182ae276cd819e9e804
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl -
Subject digest:
45bf2e730ab8905d0527fe05a86500f406e64305c34cc81ebe64b4617cab9760 - Sigstore transparency entry: 2852960729
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 46.0 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
135036c5cfc93864affb0f9af9a27e5d7a71cb7bd745e7b6dbfc2d56cc30e827
|
|
| MD5 |
644b923f13fb069374ba63c769707237
|
|
| BLAKE2b-256 |
694f9fe6f05a47cb550c823155052116f710064b6be5c6e8ec4e9faae7e18115
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-win_arm64.whl -
Subject digest:
135036c5cfc93864affb0f9af9a27e5d7a71cb7bd745e7b6dbfc2d56cc30e827 - Sigstore transparency entry: 2852961861
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 49.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a1fc236528c457cd739c88abe823da851b7ab645d72792f88658114cc340c12
|
|
| MD5 |
e506162dede28d68ede3cef3258948df
|
|
| BLAKE2b-256 |
c1860b1b80fa1ac3a0aac44e2922a6964fbe9cd52af5eab8fa933bf9e90b030c
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-win_amd64.whl -
Subject digest:
8a1fc236528c457cd739c88abe823da851b7ab645d72792f88658114cc340c12 - Sigstore transparency entry: 2852961132
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-win32.whl
- Upload date:
- Size: 46.1 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03b229037d25b801e7af53fd52b9fc49d9439b036fca1e087e02780631adfa97
|
|
| MD5 |
e14c6238f9618542624173b5ffb9975c
|
|
| BLAKE2b-256 |
6436721bb59f682ff060d0c8df64274fca8cd0521b1a54506c2eedaef795b7f5
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-win32.whl -
Subject digest:
03b229037d25b801e7af53fd52b9fc49d9439b036fca1e087e02780631adfa97 - Sigstore transparency entry: 2852962537
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 280.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48cb48c5346a97de792254af77715aa2529c2a1ebc5f586aa0aae44a02f1fe57
|
|
| MD5 |
3db3dd06c5d7d28157ab109b2245bc89
|
|
| BLAKE2b-256 |
d50e30b2b324b93ff31a0bab539c102aae59e84e444031b2742150a7646aa1bb
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
48cb48c5346a97de792254af77715aa2529c2a1ebc5f586aa0aae44a02f1fe57 - Sigstore transparency entry: 2852963139
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl
- Upload date:
- Size: 286.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
445ee3bfb46e85838387fb3c536a73cc0b994dc192b004e40e170adc54aa2a7e
|
|
| MD5 |
473e49de1cfb50834a7267adf9c623e6
|
|
| BLAKE2b-256 |
f64052e1dd5636e9f5a27f6b5a4b4e2f33c322fd72afe956c397d82523ec4a80
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl -
Subject digest:
445ee3bfb46e85838387fb3c536a73cc0b994dc192b004e40e170adc54aa2a7e - Sigstore transparency entry: 2852962229
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 249.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
286867fb156488c251a3721766e380ac4495e4fd6b51aaa1403d89ce7f4359d9
|
|
| MD5 |
e7c1a312670f395c77c9aa3d62623bb4
|
|
| BLAKE2b-256 |
b067b4faebde9da4e8173d0e5a30e8cd31335914af7ef350b988f27fec588cfd
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl -
Subject digest:
286867fb156488c251a3721766e380ac4495e4fd6b51aaa1403d89ce7f4359d9 - Sigstore transparency entry: 2852961834
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 286.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
213bb68d9ced5cf2bf717b1071bf2b09b4b04c426256f9fe6d054c60318424c4
|
|
| MD5 |
0ee63f6722d3efb6ba123f510bf50368
|
|
| BLAKE2b-256 |
83c8f4a865490df0dc0c8531d4e59ac411cb6dc24bb255d2396a6f1c60a368f4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl -
Subject digest:
213bb68d9ced5cf2bf717b1071bf2b09b4b04c426256f9fe6d054c60318424c4 - Sigstore transparency entry: 2852960307
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 270.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a1f4f5ffa55dce6307631f3cb2948e117e665966ea512e0d502b16c24f567e7
|
|
| MD5 |
b0e14e6e4da20b2213e603dc5cf43ce0
|
|
| BLAKE2b-256 |
7cf7a0057808a91fb3b6a5f3602b528f0cdcb3d53e0ff8315d73fabdfdf8fec4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
4a1f4f5ffa55dce6307631f3cb2948e117e665966ea512e0d502b16c24f567e7 - Sigstore transparency entry: 2852959981
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 282.3 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
978f28401afbc76cdc3df9e1717b4229a06b626a1dcc75db4e1f2beb3884c3e9
|
|
| MD5 |
27e0264f7f260fb63afbf0ee6f1addd4
|
|
| BLAKE2b-256 |
271960677af50d93be4256213de7cd487f056944c048b9c0b6f2e45b3a30f666
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
978f28401afbc76cdc3df9e1717b4229a06b626a1dcc75db4e1f2beb3884c3e9 - Sigstore transparency entry: 2852963112
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 249.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a7400cec0256f0a71ae71f9da398f9894c956ff6668a1c9d317b3367316320
|
|
| MD5 |
4df016840d6f1cc7071037c711650c6b
|
|
| BLAKE2b-256 |
1d86f69ab82707534a0cb2057bdca04f9200a71214c7551800f9d34d6ac39e4f
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
17a7400cec0256f0a71ae71f9da398f9894c956ff6668a1c9d317b3367316320 - Sigstore transparency entry: 2852958621
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 287.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a219f0ac59817a9114dd2aa57c13180f993e819ba658c7ddab4b66ed1ee0d370
|
|
| MD5 |
246c1efe61b52287f1e57525604a2706
|
|
| BLAKE2b-256 |
fc57527910c455b5ec62f6871bef45d4f79fea16cb8c966ba0d4a07f0339ddc4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a219f0ac59817a9114dd2aa57c13180f993e819ba658c7ddab4b66ed1ee0d370 - Sigstore transparency entry: 2852961900
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 302.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c174bfd1c48a1b51a3078e95586dde718374bac79719ab3541ec9e74aec40574
|
|
| MD5 |
b883e3b61415342a0537fc47f05af8b8
|
|
| BLAKE2b-256 |
69fdff811fdb6d3d3e67fd9bbfb75881675d34a42d0ef29a45d33e3e233dde07
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
c174bfd1c48a1b51a3078e95586dde718374bac79719ab3541ec9e74aec40574 - Sigstore transparency entry: 2852959786
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 297.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cd3a7edb6b95b9b33998135ebfa18d709da82290fb8f27c858970b5a12c8b56
|
|
| MD5 |
11295f438bcd908a83014d056a056ab6
|
|
| BLAKE2b-256 |
04a1418d956d2735139f77fc35262179f1f52c23aa666de5a8ab3819c1ae7854
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
3cd3a7edb6b95b9b33998135ebfa18d709da82290fb8f27c858970b5a12c8b56 - Sigstore transparency entry: 2852962721
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 297.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f0093ac3e9daada202c2082439d414a625c57184727a46e112a3fb2a81cb788
|
|
| MD5 |
8a2403d91f4065dd8e1f816efcb798d5
|
|
| BLAKE2b-256 |
6f44f48b9a131985659924df5fa5093f68fe72c7ee375329802989ba3126efc6
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
6f0093ac3e9daada202c2082439d414a625c57184727a46e112a3fb2a81cb788 - Sigstore transparency entry: 2852962661
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 54.3 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fa15757fea1dfcd5b7745cad9f4638929605531bd4018ab2adff7955f1a403d
|
|
| MD5 |
90aa3922080f257379481e529e0d4d94
|
|
| BLAKE2b-256 |
eb0702196ae6320c110235bb343f90dbd34be41f8b8964a3ee30db84ec12579e
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
3fa15757fea1dfcd5b7745cad9f4638929605531bd4018ab2adff7955f1a403d - Sigstore transparency entry: 2852960886
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 52.6 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
886b59c4d28ca97dd23b025fdfc50a0356be934efbbbca89ad26230067f86fe5
|
|
| MD5 |
f1ceb40e74d412ad15e05e47ab429b4a
|
|
| BLAKE2b-256 |
cf2f4b79940908c6ab8c795097c102999d7bc1f7e0b8604dfd1c232f9d99d67a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
886b59c4d28ca97dd23b025fdfc50a0356be934efbbbca89ad26230067f86fe5 - Sigstore transparency entry: 2852962146
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 90.7 kB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53eaa697c4d0422ff4cb714d00231b43352064d97b944033b30c1d57cc506ec0
|
|
| MD5 |
9f7f866866899eb08ce1c4dfa990e81b
|
|
| BLAKE2b-256 |
2ce942f1da77cacfc184e6ec929557ef653b7961bbf6f1da460b9221273948b3
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl -
Subject digest:
53eaa697c4d0422ff4cb714d00231b43352064d97b944033b30c1d57cc506ec0 - Sigstore transparency entry: 2852962458
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 43.4 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45488d1a5f9ab5bd90aaa1ca20f50fe1922b8ffad71a2009d2adf41355897aac
|
|
| MD5 |
d51273a7956ad21a19459d842bf80f4b
|
|
| BLAKE2b-256 |
a119c8d0d36a9d16cba5dcee67d389c9333b988c8986a653a61c00a451817a46
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-win_arm64.whl -
Subject digest:
45488d1a5f9ab5bd90aaa1ca20f50fe1922b8ffad71a2009d2adf41355897aac - Sigstore transparency entry: 2852960682
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 46.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a095db8e15a6020db149ecbed6461939fe74f6acaa3ae8b702a1fe8c38cd983
|
|
| MD5 |
eb0496df9345e96ea2ae33e8e88e0f11
|
|
| BLAKE2b-256 |
1e9ea0ac821a2229186af5e2e3c3635a78abb23cfddca57f38513ab5d70420f3
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-win_amd64.whl -
Subject digest:
0a095db8e15a6020db149ecbed6461939fe74f6acaa3ae8b702a1fe8c38cd983 - Sigstore transparency entry: 2852958806
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-win32.whl
- Upload date:
- Size: 43.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30cc1cebaf9aef49db06357a50398323ae04d70460c0491837d026ab7d6452ea
|
|
| MD5 |
190f71e7c21bf9702dfafd95f5a3574d
|
|
| BLAKE2b-256 |
12495ef1c5cf98591da3c5b952b39e6a298084cc1ce353bc70f85e82397a5036
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-win32.whl -
Subject digest:
30cc1cebaf9aef49db06357a50398323ae04d70460c0491837d026ab7d6452ea - Sigstore transparency entry: 2852959318
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 228.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fb0a5be8d9aa213150e8d8148a42aca4984b285bcad1e69587dc4298edd929b
|
|
| MD5 |
bdf9417637a3e09f0c0446c6f4064bf6
|
|
| BLAKE2b-256 |
1537c988229753629ef1cfd5198337a83e624780ea2b3787efe9e747c05aad2d
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
9fb0a5be8d9aa213150e8d8148a42aca4984b285bcad1e69587dc4298edd929b - Sigstore transparency entry: 2852959664
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl
- Upload date:
- Size: 234.8 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
720cf832eb2d0b0dfee129cb3335a26f6ce3cc45ee1187e8f0731758caa16792
|
|
| MD5 |
555a79d2620fdde3bfebc682d3aca9d9
|
|
| BLAKE2b-256 |
924d411ef380cddad28dc001f1c6d75ec72c76cd3817030f68ec1ccfba0ec6c1
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl -
Subject digest:
720cf832eb2d0b0dfee129cb3335a26f6ce3cc45ee1187e8f0731758caa16792 - Sigstore transparency entry: 2852961998
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 204.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b2f3bec4261a94019575481c726c29850f72e27907773c75b1de421e20e9f9d
|
|
| MD5 |
65f53713ae3f50a03caf05b5470d6bcc
|
|
| BLAKE2b-256 |
cca9feec61ed296d993db9dd097e0f6723e3f576a647722367547495e4c5b05c
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl -
Subject digest:
1b2f3bec4261a94019575481c726c29850f72e27907773c75b1de421e20e9f9d - Sigstore transparency entry: 2852962093
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 233.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e9ab13760aa8b6d0881ae7cb04fd891d8d490cd2554ea8e79bb278399169bcc
|
|
| MD5 |
61bbe14e825764deec4172f6a26fcb19
|
|
| BLAKE2b-256 |
ff39b62eee45e5ea4de094a258cbb3b01c1e856ca51ddfd95b43135c5effd1eb
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl -
Subject digest:
9e9ab13760aa8b6d0881ae7cb04fd891d8d490cd2554ea8e79bb278399169bcc - Sigstore transparency entry: 2852963031
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 216.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e985382be6d15da8d0c2710a6fa7b9070fc9ecdeefb7f580e88373984ec8be3
|
|
| MD5 |
c6579f789e786a9e2e8993ec0926eadd
|
|
| BLAKE2b-256 |
e17db53922ba7d9e5bf797324e63aa05906ec240871899f779628df068743e2d
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
4e985382be6d15da8d0c2710a6fa7b9070fc9ecdeefb7f580e88373984ec8be3 - Sigstore transparency entry: 2852962374
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 228.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bee7d3aed13d56f54e681df38c3a23031bc9e3863f687d9d598825c9146acd7d
|
|
| MD5 |
096d98ee5b0bdda9f2d8b4f45375e572
|
|
| BLAKE2b-256 |
b85eec4bb09a70b26ea99d76a8292c3383b960b296de2b347ac9986678f1761c
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
bee7d3aed13d56f54e681df38c3a23031bc9e3863f687d9d598825c9146acd7d - Sigstore transparency entry: 2852960993
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 204.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0951315a6b3142ee2167404d707743f0157c110091342b1aa0accac5cf0e4acf
|
|
| MD5 |
828c88b174e939014bd263d9423a91cb
|
|
| BLAKE2b-256 |
f94c6766e5f60bcda26d244333aa71d0a702c1c9b21b251d543c7af5953d1eee
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
0951315a6b3142ee2167404d707743f0157c110091342b1aa0accac5cf0e4acf - Sigstore transparency entry: 2852962423
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 232.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc07876cfb079b6f6f36d21ce75784ad6c2c6b563eeac0ed26c2fa2669b85df9
|
|
| MD5 |
e118f301bce411c06e2b128c2f3673f8
|
|
| BLAKE2b-256 |
96d3e97cd6f5de2176bd90ed4076c7a9b5e09d0f0b9687d00a576507988bb62c
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
cc07876cfb079b6f6f36d21ce75784ad6c2c6b563eeac0ed26c2fa2669b85df9 - Sigstore transparency entry: 2852961033
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 245.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b9100a93b372418d8688f3f2a3e5b45c64d70ca4d6176e121aca1e3bfc1e32f
|
|
| MD5 |
2931c17aad6ccd8897a8fcec765f79d4
|
|
| BLAKE2b-256 |
a23e763e370340db16115c5e63ad46e21ef0770a7f06928b3d3b62d8f8edfca4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
7b9100a93b372418d8688f3f2a3e5b45c64d70ca4d6176e121aca1e3bfc1e32f - Sigstore transparency entry: 2852962483
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a8d5ff04eb1f85698a78d20c62a14676e7b960dcafde09a388d60ad377d355d
|
|
| MD5 |
757b02bc1ec345a928353c9880233a74
|
|
| BLAKE2b-256 |
7295f222f13b6fe623310be0eb61a673bf26df439ce27e563ca8e422d0818777
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
7a8d5ff04eb1f85698a78d20c62a14676e7b960dcafde09a388d60ad377d355d - Sigstore transparency entry: 2852962653
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 232.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
251c63dd46a0659bb875cb254dc4c1e79ee91a847c737cd62373295afc2235dc
|
|
| MD5 |
282ff3f67984d331505377075f983044
|
|
| BLAKE2b-256 |
f17470ac8430e28f21e442c7bcb964eb46c4363f6881ade4aa0e978bfd8d503a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
251c63dd46a0659bb875cb254dc4c1e79ee91a847c737cd62373295afc2235dc - Sigstore transparency entry: 2852962251
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 51.9 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d759d05634f1b038fb625a66662a8c85e5a8fec912da381b5149ddac107482b
|
|
| MD5 |
7e1d35b9c8f9e00234c361929939e9c4
|
|
| BLAKE2b-256 |
e222b533b493d7025456f44518b33e53e000021a20fe7c27b88cf3d341df7186
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
1d759d05634f1b038fb625a66662a8c85e5a8fec912da381b5149ddac107482b - Sigstore transparency entry: 2852962329
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 50.2 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cfe0a92ae30151869e67a4b5f5e105e4e03ad30b3f38e5211b5bf77d0881993
|
|
| MD5 |
c6a7a6d4b7c6a79275ec8c3805e04e38
|
|
| BLAKE2b-256 |
e4e16710bb44510c4e4a8e0f004bbaf3cecfd048141309c77bae56d4e5a6ebc1
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
4cfe0a92ae30151869e67a4b5f5e105e4e03ad30b3f38e5211b5bf77d0881993 - Sigstore transparency entry: 2852959216
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 85.9 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6720ba44ad7e72174314d0e1fb0172494cff5c73a3a8a2159c3d2402ff15565
|
|
| MD5 |
ac39071338a07ef594d7a4836ee1b475
|
|
| BLAKE2b-256 |
33c907e227b930c8ae513b8ef1aae3793499be097bffcdf7aee4fb8b33db4cd1
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl -
Subject digest:
e6720ba44ad7e72174314d0e1fb0172494cff5c73a3a8a2159c3d2402ff15565 - Sigstore transparency entry: 2852962577
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 42.4 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69fc35c0779522da366c563e5faf203ffc1f8ff0021d5b1337fa4efa5be73177
|
|
| MD5 |
7073a06bd4d2a085b9b89d94f8db9de9
|
|
| BLAKE2b-256 |
9a7050b031cafe72a5c1878b903ee87303f71313345566bf3d6ec202e5ddc9ec
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-win_arm64.whl -
Subject digest:
69fc35c0779522da366c563e5faf203ffc1f8ff0021d5b1337fa4efa5be73177 - Sigstore transparency entry: 2852961555
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 45.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c889f6fa84957bc7e8b4eab71fd16a0455068d5045e3aa40c733071d2b2fd77
|
|
| MD5 |
6d39cbeba70973d6c101c2b0a8e73b4a
|
|
| BLAKE2b-256 |
01bce0a7b84af04ec02d73a48aa71f091e1e4a2107e3074b7ce12195b66901f4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-win_amd64.whl -
Subject digest:
0c889f6fa84957bc7e8b4eab71fd16a0455068d5045e3aa40c733071d2b2fd77 - Sigstore transparency entry: 2852959550
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-win32.whl
- Upload date:
- Size: 42.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e413d7a4a9b4866b7a761d6060d434b64d23cd35122eda3b026a0bbe8196b25
|
|
| MD5 |
ec70effd14349e34aae45474099c67cf
|
|
| BLAKE2b-256 |
b1bbdf90f62c9cf7c93ea235f6f9405143bba802914607317266dd81fc8d737e
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-win32.whl -
Subject digest:
3e413d7a4a9b4866b7a761d6060d434b64d23cd35122eda3b026a0bbe8196b25 - Sigstore transparency entry: 2852959379
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 229.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c02c0e570c5c7e077b0181a9f3cdb7d4c3617d1cda6b5c95bd5d34022923d82c
|
|
| MD5 |
3d1ffa7604067cecd6cd76c888cebb57
|
|
| BLAKE2b-256 |
ee2895456fabd2daf6be89049a13fbf03341756014d2959c83d12957d4c49694
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
c02c0e570c5c7e077b0181a9f3cdb7d4c3617d1cda6b5c95bd5d34022923d82c - Sigstore transparency entry: 2852962128
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl
- Upload date:
- Size: 235.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5793c7698a53f56f4a1889a4737c7eeb1b7ad0842fa6b1abca22913ff79c8c1
|
|
| MD5 |
d10b7d4aacc19c400025db51d7eb0e3b
|
|
| BLAKE2b-256 |
ba5af99c92068f1e0f5c886899ce0e4a619db376ca98c5279d93f95bd86906af
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl -
Subject digest:
a5793c7698a53f56f4a1889a4737c7eeb1b7ad0842fa6b1abca22913ff79c8c1 - Sigstore transparency entry: 2852960469
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 204.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
425f8cc86ab5018b4b8d4a23bc8e74d964bd3d757c3702e301aa79be76c53f6c
|
|
| MD5 |
4440844af9e7d4e41a3a3c2c95e092d9
|
|
| BLAKE2b-256 |
557edbd637572a279692e5518d117274a9331bf5faac59f191d30e82521a3ec7
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl -
Subject digest:
425f8cc86ab5018b4b8d4a23bc8e74d964bd3d757c3702e301aa79be76c53f6c - Sigstore transparency entry: 2852962634
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 233.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cc528e760a8af06f2b13e9b9f362cd90c7c718ea61228a96dbd31ba16ed7f47
|
|
| MD5 |
9edd7fab0aa92650f3b8effd7da1bef8
|
|
| BLAKE2b-256 |
dc72fbf17c589f92c0b3bbf6709a425661f8ef2ed0d46b38985a7d7b5a0f6b91
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl -
Subject digest:
7cc528e760a8af06f2b13e9b9f362cd90c7c718ea61228a96dbd31ba16ed7f47 - Sigstore transparency entry: 2852962773
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 220.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96f7c5c15656040ddcbc51e56dc59b58aa25999d743c126abd425b9766ab43e9
|
|
| MD5 |
2f1eeb8561647e4b15918dc14c6d88b2
|
|
| BLAKE2b-256 |
d96d11014938d3fe9bea2ea2dcf930f26ed565bfb2f5be3c756362ea48c92636
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
96f7c5c15656040ddcbc51e56dc59b58aa25999d743c126abd425b9766ab43e9 - Sigstore transparency entry: 2852958945
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 225.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae58f361bd5dae942717c65d3413b478c70aea9c462599e7b9adad3731db3894
|
|
| MD5 |
f237b24a9d5d86bdca84c81b8f077185
|
|
| BLAKE2b-256 |
1df4e87bc7629af9a14a752b218764a78742d73c2c563ac58315da6841f0cbe4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
ae58f361bd5dae942717c65d3413b478c70aea9c462599e7b9adad3731db3894 - Sigstore transparency entry: 2852960364
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 204.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2ba30a89035b57b73e00475de948521602f543d79ce01db10b04b36c4c76fc8
|
|
| MD5 |
f50f8cda50570e8a6ea0b844945728f7
|
|
| BLAKE2b-256 |
5c9a08385733c9321c9bb78039d3ff31045e4fca962d9665023c4eb70f998819
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
c2ba30a89035b57b73e00475de948521602f543d79ce01db10b04b36c4c76fc8 - Sigstore transparency entry: 2852959890
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 234.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f85915e00dcb1cd9f2f890ead064ed40a27df06f0db65be427b29482ae357572
|
|
| MD5 |
0ee2144238f3b2c52ebc411ac2e90dee
|
|
| BLAKE2b-256 |
ed7408e6c1faf26ee2732023a3828787ba535557122774f4a386b1f715cbd8e0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f85915e00dcb1cd9f2f890ead064ed40a27df06f0db65be427b29482ae357572 - Sigstore transparency entry: 2852963264
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 246.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db3ae52ccc150dbc84704e9d642743897f3e1c54742ff34cacb661e52e3818a9
|
|
| MD5 |
d464ccc674ff61b53bc26d195291933b
|
|
| BLAKE2b-256 |
7d712b35e91455209b85ee98f7859583e0814fab57d3af0f2381aaee34c37304
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
db3ae52ccc150dbc84704e9d642743897f3e1c54742ff34cacb661e52e3818a9 - Sigstore transparency entry: 2852962291
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 240.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3e98c55bde2bcf7db3c70d1aed7ae9aa8aebbf19a250c66645cde44cdb8b867
|
|
| MD5 |
7ee837627d4c8b857f74bf6448ce74bb
|
|
| BLAKE2b-256 |
ae8f0de9d4c8e05ce0be71b436919a216bd7fc5cc6e2691c0602295efb22b9ed
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
c3e98c55bde2bcf7db3c70d1aed7ae9aa8aebbf19a250c66645cde44cdb8b867 - Sigstore transparency entry: 2852962710
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 233.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbab5f5ff6897c81f355d079010cdae85b02e5a0b518b5251523b8ad8ae9ac3c
|
|
| MD5 |
ebedbd51bbbe4ed65fc7a9265a4afb96
|
|
| BLAKE2b-256 |
73360093091ebb270fcd1bc1f6e095f93b2e0ed7f1011c28837dc2dbe5f96b99
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
dbab5f5ff6897c81f355d079010cdae85b02e5a0b518b5251523b8ad8ae9ac3c - Sigstore transparency entry: 2852959834
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 51.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44149f46500a0a41b95b4d99c2e586a77319539730607b9892974a092788b111
|
|
| MD5 |
665235bbf2a68c7f268b1a150151c47d
|
|
| BLAKE2b-256 |
257dc1ab1ef09e9d4d835be5d58c0a32a1e1de8397abaa4e502a9d4141328cad
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
44149f46500a0a41b95b4d99c2e586a77319539730607b9892974a092788b111 - Sigstore transparency entry: 2852959150
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 50.0 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1d52a05dc417279f7e5c7618c5dfbbc29923aaf9bc0a5c1802ddcebf54c61a0
|
|
| MD5 |
9398fc16e6f93ec6ea8f28ebb38bee59
|
|
| BLAKE2b-256 |
8f615f9c29c3aa67c30238c4eadf95149b1d983a48f69b86b0cff927a7d6df13
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
e1d52a05dc417279f7e5c7618c5dfbbc29923aaf9bc0a5c1802ddcebf54c61a0 - Sigstore transparency entry: 2852961275
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 85.3 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36c0d9db44b523ef93d03341b1c42d69ff01d673c053d1b1c6c3a363bcaa39ba
|
|
| MD5 |
42e37c9122ee5580ec07069818b44077
|
|
| BLAKE2b-256 |
784c3b1365d58a667689e067e13d055fcd92bdf8d9a2fca3d9201b47ed5b3631
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl -
Subject digest:
36c0d9db44b523ef93d03341b1c42d69ff01d673c053d1b1c6c3a363bcaa39ba - Sigstore transparency entry: 2852962939
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8876b39961e33d912afe3c1bee18ee564fdad0206f873cc15d522756b7f50737
|
|
| MD5 |
cf31d365ef90f788797b1555b48c219d
|
|
| BLAKE2b-256 |
08b972028c5b56ced97f456de6aefa79435ca64d7f77af78ea8cf3c76fc5195f
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-win_arm64.whl -
Subject digest:
8876b39961e33d912afe3c1bee18ee564fdad0206f873cc15d522756b7f50737 - Sigstore transparency entry: 2852961184
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 46.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98914de2c4d7f0f9f4a8c6ea4bf05841f4175796941e3ef7d47eb718f22311fb
|
|
| MD5 |
5196f250280d0d2ac2a68055fa8e8e2f
|
|
| BLAKE2b-256 |
587b6e8ef26f6d510a7916064fec68d55fcbfbdf7eb01e377480d66a122152d8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-win_amd64.whl -
Subject digest:
98914de2c4d7f0f9f4a8c6ea4bf05841f4175796941e3ef7d47eb718f22311fb - Sigstore transparency entry: 2852961412
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-win32.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3083bfe87f95c756e610bd8025f26cbd1cd4aaa03a422f2d65efb7a97cd53d8
|
|
| MD5 |
2d482f91e8e7aca6a1666bbbd0ba075e
|
|
| BLAKE2b-256 |
5da9424e38838793d37160b4379c702f61c74c598fc6cd17204adbe3c554f7a8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-win32.whl -
Subject digest:
b3083bfe87f95c756e610bd8025f26cbd1cd4aaa03a422f2d65efb7a97cd53d8 - Sigstore transparency entry: 2852963095
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 247.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a235f73d6e020855dc29dff012d920c02ee0feab8d73a24185a7569f4be1161
|
|
| MD5 |
d967336fe6db672bdead71b169e92e37
|
|
| BLAKE2b-256 |
516feeca9647245d5f92e87d53e5f14335bb42fce1a7e6842c8045b364eded8b
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
8a235f73d6e020855dc29dff012d920c02ee0feab8d73a24185a7569f4be1161 - Sigstore transparency entry: 2852960805
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl
- Upload date:
- Size: 254.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1f5a500bfcbb2c0ab85e98a0dcd70f5899d34efe365a0187700369a79603031
|
|
| MD5 |
7984a99bd6f467b69c47058554e3432a
|
|
| BLAKE2b-256 |
f1b7adfae4bf9c63bccf12e2d9690a175c6579047a6eec3b5a6a5f51428c15e2
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl -
Subject digest:
d1f5a500bfcbb2c0ab85e98a0dcd70f5899d34efe365a0187700369a79603031 - Sigstore transparency entry: 2852961310
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 214.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ffafcbfc7b549ab940047e505c831eabac5e67de53e1bc174adbc5285c55944
|
|
| MD5 |
7059ff18790f8b742999763d17634771
|
|
| BLAKE2b-256 |
c20d41b848036db6621370c1f2e5471a7da8149c730f8552a5257567721f4576
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl -
Subject digest:
7ffafcbfc7b549ab940047e505c831eabac5e67de53e1bc174adbc5285c55944 - Sigstore transparency entry: 2852962692
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 251.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a2a8a50a93dee0268a860a07fa3b4bd968f8ce4dbd794957da772f395368526
|
|
| MD5 |
2270f9fc3ff994fea9ae5a8a00447687
|
|
| BLAKE2b-256 |
8584cb08d79f1762daafeb2b030c470cd0c725c97b8ad67412457c6f35c53e9d
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl -
Subject digest:
9a2a8a50a93dee0268a860a07fa3b4bd968f8ce4dbd794957da772f395368526 - Sigstore transparency entry: 2852961690
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 238.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdee8205a44d0be91bbac4c41b95d86641b72dfc7aef1279400e4fda3f26a937
|
|
| MD5 |
6f52160a0f0d3b758fcb58966a945874
|
|
| BLAKE2b-256 |
9f366683597de4907e70c717e3588c541202c66086a72ff3db58be49de66e72c
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
cdee8205a44d0be91bbac4c41b95d86641b72dfc7aef1279400e4fda3f26a937 - Sigstore transparency entry: 2852963049
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 246.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fbc1a15dc8cd1689508758d626b372b1f09d28d9577667feaf9e6bfcd8efcbc
|
|
| MD5 |
9a6a858e0c9b50843884531109970e90
|
|
| BLAKE2b-256 |
6ae24d11bea8fd6a777149c6c20645f873952eab5de3a2497aa11648ec9ab6ab
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
4fbc1a15dc8cd1689508758d626b372b1f09d28d9577667feaf9e6bfcd8efcbc - Sigstore transparency entry: 2852961449
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 216.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6af4693716bfb03f1752ef1b30faa593db2c01d5272e9b8564a1549452a979ab
|
|
| MD5 |
f5a0f0d0bcc68c96d0bb63170482a277
|
|
| BLAKE2b-256 |
332ca763a8251f50fba042af0fb1f02bfec4b31381e40aff760db2be7b2e1f84
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
6af4693716bfb03f1752ef1b30faa593db2c01d5272e9b8564a1549452a979ab - Sigstore transparency entry: 2852959931
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 250.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2814ecd8e818f487bee4b0f921bc4d1c176cc5fc71ac0f072d0fa67eda4ac14b
|
|
| MD5 |
65500a5840028baaac05c48568766aa7
|
|
| BLAKE2b-256 |
859f83a07b6ec0e043c050cfdd35fb0cf1b7897b91d554d6eea293740309afe7
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
2814ecd8e818f487bee4b0f921bc4d1c176cc5fc71ac0f072d0fa67eda4ac14b - Sigstore transparency entry: 2852962755
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 265.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4d7a54719b67338a305dca2ce6aafe366817df94ddfd4b5514374356f5ca546
|
|
| MD5 |
9ce685dba616b1e95609782f15ed645a
|
|
| BLAKE2b-256 |
cbd5ee6350fb0be9122bb6c67082a876d34b90d980d100c106af4b81023e04f4
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
a4d7a54719b67338a305dca2ce6aafe366817df94ddfd4b5514374356f5ca546 - Sigstore transparency entry: 2852960936
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 257.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a74bfa37147cc08fb29df10bd9c16f40fa7f860cd3a6d2fff853323a94f6e17f
|
|
| MD5 |
c4680c283be97dd4a0328656981e6b8e
|
|
| BLAKE2b-256 |
b0193742a5eed62317b03b4002ee865dc9fd720308bdd0da1f29a5786c630311
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
a74bfa37147cc08fb29df10bd9c16f40fa7f860cd3a6d2fff853323a94f6e17f - Sigstore transparency entry: 2852958885
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 251.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60a64cbccaa11b7760ce705a14ada17ba459e7ca9f23ba587eb013821032d7ef
|
|
| MD5 |
dfa1f6ff0ee89ab310988248f5200b8c
|
|
| BLAKE2b-256 |
834f48865bd02a16ee5236bc46166b2946f37b93e07b0eae355dac0be0b216ca
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
60a64cbccaa11b7760ce705a14ada17ba459e7ca9f23ba587eb013821032d7ef - Sigstore transparency entry: 2852961230
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87a3caecf8095e48dc72f84bfa42e23a848cf410cc9cc13031fba4869b706a21
|
|
| MD5 |
69a7d392ae67d5b971944dd5802c5579
|
|
| BLAKE2b-256 |
25881d7df7201750b37765ef2b23bc1c526c028dadde80afa0f57a118fc01182
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
87a3caecf8095e48dc72f84bfa42e23a848cf410cc9cc13031fba4869b706a21 - Sigstore transparency entry: 2852960240
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 51.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcbf346a318a5e30063f547630b02bb787ce2f45b6368d5da143660b6a3835d8
|
|
| MD5 |
776aac40a7831886062803169baad664
|
|
| BLAKE2b-256 |
dff4f3ffaee281b276da854ac1d7a6a506d26cbc62ea2e623756f1d0a4a1ba1a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
dcbf346a318a5e30063f547630b02bb787ce2f45b6368d5da143660b6a3835d8 - Sigstore transparency entry: 2852963304
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 87.3 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b28f41fa3b8c6900457f858ec5b03998f3a6d535fbc1bb2edec5961ea05ec429
|
|
| MD5 |
b618aeb52d78b041b8e0fd040745db4c
|
|
| BLAKE2b-256 |
71cd348d58f142aebc4873345c6b31087629182ca6e0f2b3caeaa528cf882eba
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl -
Subject digest:
b28f41fa3b8c6900457f858ec5b03998f3a6d535fbc1bb2edec5961ea05ec429 - Sigstore transparency entry: 2852960772
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 43.5 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42a9a856a4a6e2f6c10f1318c07e7daa498d6593abe745c71dae4521a26ca39
|
|
| MD5 |
ce280461447d80f9fc0d90ab1a9f1a11
|
|
| BLAKE2b-256 |
41075222e2665bbf6e45847492ecbf3b9f3e4975a0ae300e5fd465df7d48ce55
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-win_arm64.whl -
Subject digest:
d42a9a856a4a6e2f6c10f1318c07e7daa498d6593abe745c71dae4521a26ca39 - Sigstore transparency entry: 2852958686
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 46.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e904d4d01f36bd6e197590be1533c44e06058771e0746dd073a8ebb3ef880858
|
|
| MD5 |
d5a6ba881f9994119657fb479bfe5be0
|
|
| BLAKE2b-256 |
0a8a3db6a3543d8101263b4c52978b6276a04ead2caff2c5ab880d934f47bd89
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-win_amd64.whl -
Subject digest:
e904d4d01f36bd6e197590be1533c44e06058771e0746dd073a8ebb3ef880858 - Sigstore transparency entry: 2852962811
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-win32.whl
- Upload date:
- Size: 42.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f86f7259efe2c951f43e57d471c9b41daa5bfc7db9f67189059cf1ae6d77fd9
|
|
| MD5 |
679c34b2cfb529e5bd39d6ce64812a5a
|
|
| BLAKE2b-256 |
d9e2c32a7df3f39caa7f11b2eb37ea5b6960a6946f2bc7c4b8ff97bbdf6d6b6e
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-win32.whl -
Subject digest:
9f86f7259efe2c951f43e57d471c9b41daa5bfc7db9f67189059cf1ae6d77fd9 - Sigstore transparency entry: 2852959264
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 230.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40e94adb1e7d39ff28a8bd8d8b8fbd1df6b9f40976dbe379134f1ce058e532dd
|
|
| MD5 |
7988b54577f1171050fcf7c6cc8ea56f
|
|
| BLAKE2b-256 |
3d80c80f6adaaa1e51f0db2dce8c9b3714d94ec45e358a21f9a1910b10b40a80
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
40e94adb1e7d39ff28a8bd8d8b8fbd1df6b9f40976dbe379134f1ce058e532dd - Sigstore transparency entry: 2852962968
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl
- Upload date:
- Size: 240.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4054acf80d40456a0537f2913b349718649d8d6458a14ab7f48d0ce28c30869d
|
|
| MD5 |
425c69d1a327a98596f41adf9775e30f
|
|
| BLAKE2b-256 |
746bd510c0c378cabbf9d0ac7b663af6d00f2e9074073d93b20c85f24aa5c071
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl -
Subject digest:
4054acf80d40456a0537f2913b349718649d8d6458a14ab7f48d0ce28c30869d - Sigstore transparency entry: 2852961519
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 208.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd2ac8f5b643454c2cc6b6118b13da16e88f4a6434fc3ba61aca384029f04f36
|
|
| MD5 |
1a36bf26eef7ff30cf7cba7a5ecddd1e
|
|
| BLAKE2b-256 |
892df9c47691aa024c8299a3afacd78d22a01ab57eb627b481b6089708e71017
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl -
Subject digest:
dd2ac8f5b643454c2cc6b6118b13da16e88f4a6434fc3ba61aca384029f04f36 - Sigstore transparency entry: 2852962203
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 239.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3ef2818d63bc86071e9d2989ae75a1bc32b8f7059cfd9f5abbbee70c32e2ed6
|
|
| MD5 |
efd7828ec29525cf4cef0d2c1be6c7c2
|
|
| BLAKE2b-256 |
654726810d889d89bba31db397e6a88f8984af775f5ed6bad0a29dce84324cff
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl -
Subject digest:
c3ef2818d63bc86071e9d2989ae75a1bc32b8f7059cfd9f5abbbee70c32e2ed6 - Sigstore transparency entry: 2852962518
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 223.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dba2f02d2d5c09ef8a0e6c1a42aeaa451f4be9898cb00b04fe98717da2eb23b
|
|
| MD5 |
ea7bd11e2d3c746405943b0f9f5a2bd1
|
|
| BLAKE2b-256 |
9ca3570d92fc952eae93b676f3a1568f4b89264102abd3c982ab6a9ebec58dcf
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
2dba2f02d2d5c09ef8a0e6c1a42aeaa451f4be9898cb00b04fe98717da2eb23b - Sigstore transparency entry: 2852961070
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 233.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
594eb4c6ec35e7179b058481f4e9f02521b56de16fa577c4b85c76fb1bf8a9f8
|
|
| MD5 |
a0a39105fed6dea7a4191b6e7586402f
|
|
| BLAKE2b-256 |
625c9324fab27d6088eecc47fe4332bf7aaf8c1ded93c36f558391e8a06d41a7
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
594eb4c6ec35e7179b058481f4e9f02521b56de16fa577c4b85c76fb1bf8a9f8 - Sigstore transparency entry: 2852962599
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 209.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
004e685b315646c410771836e72a44f143bbe624f29653a42687815069a303d5
|
|
| MD5 |
3a7692689e64377008a19c7b37825537
|
|
| BLAKE2b-256 |
3c071e0a9bb310830f2245edbd5cd3c6d24a783c053c4efd8e08e386e513c940
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
004e685b315646c410771836e72a44f143bbe624f29653a42687815069a303d5 - Sigstore transparency entry: 2852961377
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 235.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e9368e87a3efc285e559131092c5db643eb8e56de4ee42064d5baec22ef2bb5
|
|
| MD5 |
3e83a480bb0ea60045707ce4bc95f0bd
|
|
| BLAKE2b-256 |
c706519a5ebb48b6f94beb48396e55c905f12246a25c3a3608a7ec7bceabf50e
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6e9368e87a3efc285e559131092c5db643eb8e56de4ee42064d5baec22ef2bb5 - Sigstore transparency entry: 2852959419
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 251.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f2d880ff60f45898f4acfa152aac8d04e3ee627d90ff4003491bf92239d5757
|
|
| MD5 |
36adc9781f8583c75c837a583cf8358d
|
|
| BLAKE2b-256 |
bc5ddf0684fc2b1732a01a7bec26d7897369022712422d25b09c37ce7dbc88a2
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
4f2d880ff60f45898f4acfa152aac8d04e3ee627d90ff4003491bf92239d5757 - Sigstore transparency entry: 2852961481
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 246.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56fc3f7599528db40b1efa0889a620116e2704144495273d66066e8164e45838
|
|
| MD5 |
f730c9f98cfb06fbc0339aeb850b30b8
|
|
| BLAKE2b-256 |
5cb4442715b2e980df51be52d203549279e027728f24c80b00b5e525e31cd5ea
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
56fc3f7599528db40b1efa0889a620116e2704144495273d66066e8164e45838 - Sigstore transparency entry: 2852962920
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 238.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62530ca89187827e4a4fe733f971abe81a7542eeea48ff61995f19b64d7199c8
|
|
| MD5 |
db789efdf2d6bb1012bf0c4814306b2a
|
|
| BLAKE2b-256 |
86a87c6cd6bfead1a11f2e411e688640e6d26574cb0bde7dcaa7423b0b65ed7a
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
62530ca89187827e4a4fe733f971abe81a7542eeea48ff61995f19b64d7199c8 - Sigstore transparency entry: 2852962837
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fc24f209c1b7f7f688b66b98293954f5504279760999b58920ee12dd8471c1d
|
|
| MD5 |
a4816196582696a1008eef8228e63815
|
|
| BLAKE2b-256 |
05cfb5248180bf056cc76acc60c9c6e8c0ebbfdbd1c6cffd31fd14996927b7c8
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
3fc24f209c1b7f7f688b66b98293954f5504279760999b58920ee12dd8471c1d - Sigstore transparency entry: 2852960190
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 50.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cbfff4423eef4cc6cafc021469641a2b835f610b2647a6c5281903e21b8670d
|
|
| MD5 |
c916c986bc1c7f98028a3669746293de
|
|
| BLAKE2b-256 |
e74b5a52e1a7b43563f7d408814194bb23cc8bf214eb6b86639b667a33a8d0d0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
9cbfff4423eef4cc6cafc021469641a2b835f610b2647a6c5281903e21b8670d - Sigstore transparency entry: 2852963157
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 86.4 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
897d1ddf6716e8f47200f7aad9a0efa6cc7586df66c6defa572f9eab379c078e
|
|
| MD5 |
201e5a7bdb84d8a79ac6823ca976d978
|
|
| BLAKE2b-256 |
1e4014b21e505b7921617466576423f188a5c9caddfdaa1cf4b2b8a83d8fe216
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl -
Subject digest:
897d1ddf6716e8f47200f7aad9a0efa6cc7586df66c6defa572f9eab379c078e - Sigstore transparency entry: 2852961578
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 44.0 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c7599df2b57ebeea8de011b5f2f7b85de95e76037d43d34b95e328430275487
|
|
| MD5 |
0a9f0d4340c3aab23f3e26e3c1437f6d
|
|
| BLAKE2b-256 |
6687e71b24adc8ece61782ba3d6f3879e6a07fdb85bce21a9c529524184e3ec6
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-win_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-win_arm64.whl -
Subject digest:
6c7599df2b57ebeea8de011b5f2f7b85de95e76037d43d34b95e328430275487 - Sigstore transparency entry: 2852963251
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 46.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
146f48a9e4812611a7581003b1a39de56c34967046310c4171a68ef908c9a745
|
|
| MD5 |
fbdeab28ab05ecc0ce93184ca3bd1a33
|
|
| BLAKE2b-256 |
80570a0b4b1122f4ed5bcd1c626d910003cdf5282c2a12f8a1cfa17970b3ded2
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-win_amd64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-win_amd64.whl -
Subject digest:
146f48a9e4812611a7581003b1a39de56c34967046310c4171a68ef908c9a745 - Sigstore transparency entry: 2852962989
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-win32.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-win32.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
141fdbd73748db0cf7636035030aaac383d2efde8f34e7bc24594cc776d225b8
|
|
| MD5 |
187d80438a602b37987cd5dc866e2772
|
|
| BLAKE2b-256 |
55c051e5d1ad504e9529831606534c48e272db751072eee9ff07e4abe37e50bd
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-win32.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-win32.whl -
Subject digest:
141fdbd73748db0cf7636035030aaac383d2efde8f34e7bc24594cc776d225b8 - Sigstore transparency entry: 2852962883
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 218.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d605bb239b796e82a81c6709548b2bd460ab73b4590cb0c83de8a2dd9694d0f
|
|
| MD5 |
99063f0321d9249cde9c46bcc9c74bdf
|
|
| BLAKE2b-256 |
3af9b1a0bd47218216b935d019912d6fec1676ae7c07f15fa82bfb54b8d58976
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
3d605bb239b796e82a81c6709548b2bd460ab73b4590cb0c83de8a2dd9694d0f - Sigstore transparency entry: 2852962792
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl
- Upload date:
- Size: 228.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1783582065a1f07f9d9ee1e992e13f15d7dc8fb1eb3a7476d43eb3f2e69d26bb
|
|
| MD5 |
25167e7b8c044f6cfb24cb6fe97a8578
|
|
| BLAKE2b-256 |
410b7b19eb20bb0b1f9476d08f6e387ae094dc6870fc06d459ea1f35f28b25d3
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl -
Subject digest:
1783582065a1f07f9d9ee1e992e13f15d7dc8fb1eb3a7476d43eb3f2e69d26bb - Sigstore transparency entry: 2852962861
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 201.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9f165403b81fea7e89c932d89046a1e3d9a3a60e8d7ef2f249dccdcb0982bf5
|
|
| MD5 |
550f8d64cab664b61f27e6339adf4097
|
|
| BLAKE2b-256 |
ceb759c16e245a549df202b4ebe2de91fa58a67dc4373df9840e372a64224dee
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl -
Subject digest:
e9f165403b81fea7e89c932d89046a1e3d9a3a60e8d7ef2f249dccdcb0982bf5 - Sigstore transparency entry: 2852962702
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl
- Upload date:
- Size: 228.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
279655a16973f1ee2bd2fe79973137681642fd9ae0d89215bba263726eb0dc3a
|
|
| MD5 |
03364eed28d773224da310ed86994f76
|
|
| BLAKE2b-256 |
4b3d0189b6537f4a8cd795e685a130a6f47aeda78a5b7b062574705cffc685ca
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl -
Subject digest:
279655a16973f1ee2bd2fe79973137681642fd9ae0d89215bba263726eb0dc3a - Sigstore transparency entry: 2852960841
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 211.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc2461ecc45f17893f8207e73b46ea8ba93e33630e51cf4af3fbc21d47462b1a
|
|
| MD5 |
7d7cf0f1cc55f6740d53915be910a002
|
|
| BLAKE2b-256 |
6bd4bf563e19ac9a5cc47113431337fdf2ee3573859f3f3e0a58e59833e9b75d
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
fc2461ecc45f17893f8207e73b46ea8ba93e33630e51cf4af3fbc21d47462b1a - Sigstore transparency entry: 2852962047
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 219.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f273dcf7149a50527c4fd1f55cfe9eac0f60753f5af544b4c9352578e20c0874
|
|
| MD5 |
bf525698b77a85879f7ecb74e4e5f83f
|
|
| BLAKE2b-256 |
6fb4a468700d0526dfb2ca6af5d790125de5894acc7d8ecd99243ecedfa4c4cc
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
f273dcf7149a50527c4fd1f55cfe9eac0f60753f5af544b4c9352578e20c0874 - Sigstore transparency entry: 2852958752
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 202.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8e017eeb7482bed34cdb0d61cf2bcfc88d104bbab296a17cd16a6af8aabc70e
|
|
| MD5 |
2b7c3db88816da3546d53dc679f504d8
|
|
| BLAKE2b-256 |
9d5354bd510bb5d473edf66914602885226187218b4e3a5017e9dd80bceea41f
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
d8e017eeb7482bed34cdb0d61cf2bcfc88d104bbab296a17cd16a6af8aabc70e - Sigstore transparency entry: 2852963234
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 224.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f574e460d1c8a08384a016fdb09ccf3543433263ed6b2f97104f979e64ea57c2
|
|
| MD5 |
e89784aa196f535d80312fa74ce583ff
|
|
| BLAKE2b-256 |
f0515adee15e12a7e314cece4543fbf295b0fe1b504dc78b32dff4c8eb1e29b0
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f574e460d1c8a08384a016fdb09ccf3543433263ed6b2f97104f979e64ea57c2 - Sigstore transparency entry: 2852962396
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 240.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec6a85f424afa8d23e0d9a094e5dbb6eda01da91c92b9183cd433768247ffc97
|
|
| MD5 |
18f628b2234782ea90cb3533ee1bc8ad
|
|
| BLAKE2b-256 |
127c08c15c7df256f94a6b4563f74165c3242fb554cdd1909b661d093c31b976
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
ec6a85f424afa8d23e0d9a094e5dbb6eda01da91c92b9183cd433768247ffc97 - Sigstore transparency entry: 2852963219
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 234.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f3551b8a35c1df3e7ea4d2d86edee15f0dde1bddd434a71744048683544d0ef
|
|
| MD5 |
9a2c605c64423e4979a42adec4c3ac1c
|
|
| BLAKE2b-256 |
7487a3e199c45b26587f073db655d19c30d2144b0f883827ba6ab77acf5c7d45
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
9f3551b8a35c1df3e7ea4d2d86edee15f0dde1bddd434a71744048683544d0ef - Sigstore transparency entry: 2852959472
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 226.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9281e922c072158c91974d4589f1dbe0fee6d467f284c28e463f9f5a4d933f4
|
|
| MD5 |
c0350343719ae47fdfd38d0d75cae19a
|
|
| BLAKE2b-256 |
bfd17fd3ffb5ca0e669a8fbf55d9fbb17c50ff5f44becfefcab27a9b9b67908f
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c9281e922c072158c91974d4589f1dbe0fee6d467f284c28e463f9f5a4d933f4 - Sigstore transparency entry: 2852958844
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 52.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d83b12902eb8bce151259c86c03ba746600b2d994543de46e370cecf96c452f2
|
|
| MD5 |
45a87d7d7a8840ee2b714d834f9829f3
|
|
| BLAKE2b-256 |
ff9a6be90814d8762952594a9e380161802541bff690f3a2e011dcc28ec193ce
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
d83b12902eb8bce151259c86c03ba746600b2d994543de46e370cecf96c452f2 - Sigstore transparency entry: 2852960053
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 50.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f911c395cef73c510bac566da9507bb6a43e7763d0c79138dc60ee53f11207e
|
|
| MD5 |
4ab130972b3b30d0bd9e0a550ef5bfc9
|
|
| BLAKE2b-256 |
3e6dceeca1762ed51230c08d557591404f844ecef5e294550136155572f7faae
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
8f911c395cef73c510bac566da9507bb6a43e7763d0c79138dc60ee53f11207e - Sigstore transparency entry: 2852962622
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type:
File details
Details for the file propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 87.2 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b77c313314524ca9c38fbd70f73515d04597ac58c40c939bc0e71eeb4abff680
|
|
| MD5 |
68b9a9159b3efdbc38fc6bb6f149fc76
|
|
| BLAKE2b-256 |
ecdd997704118aea215cc5f65c277f5323657b4ba44c1f9a32fb11c8064e4997
|
Provenance
The following attestation bundles were made for propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl:
Publisher:
ci-cd.yml on aio-libs/propcache
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl -
Subject digest:
b77c313314524ca9c38fbd70f73515d04597ac58c40c939bc0e71eeb4abff680 - Sigstore transparency entry: 2852963311
- Sigstore integration time:
-
Permalink:
aio-libs/propcache@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Branch / Tag:
refs/tags/v0.5.4 - Owner: https://github.com/aio-libs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@cc9882f95c6aadbfe7b88898e3f0230e4a38341a -
Trigger Event:
push
-
Statement type: