Skip to main content

Accelerated property cache

Project description

propcache

The module provides a fast implementation of cached properties for Python 3.10+.

https://github.com/aio-libs/propcache/actions/workflows/ci-cd.yml/badge.svg https://codecov.io/gh/aio-libs/propcache/branch/master/graph/badge.svg https://badge.fury.io/py/propcache.svg https://readthedocs.org/projects/propcache/badge/?version=latest https://img.shields.io/pypi/pyversions/propcache.svg Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

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 google group: https://groups.google.com/forum/#!forum/aio-libs

Feel free to post your questions and ideas here.

Authors and License

The propcache package is derived from yarl which is written by Andrew Svetlov.

It’s Apache 2 licensed and freely available.

Changelog

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

  • Added support for newer type hints and remove Optional and Union from all annotations – by @Vizonex

    Related issues and pull requests on GitHub: #193.

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=true

    Additionally, 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

  • Fixed reference leak caused by Py_INCREF because Cython has its own reference counter systems – by @Vizonex.

    Related issues and pull requests on GitHub: #162.

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

  • Optimized propcache by replacing sentinel object for checking if the object is NULL and changed dict API for Python C-API – by @Vizonex.

    Related issues and pull requests on GitHub: #121.

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

  • Fixed incorrect decorator usage in the ~propcache.api.under_cached_property example code – by @meanmail.

    Related issues and pull requests on GitHub: #109.

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

  • Removed support for Python 3.8 as it has reached end of life – by @bdraco.

    Related issues and pull requests on GitHub: #57.

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

  • Fixed loading the C-extensions on Python 3.8 – by @bdraco.

    Related issues and pull requests on GitHub: #26.

Features

  • Improved typing for the propcache.api.under_cached_property decorator – by @bdraco.

    Related issues and pull requests on GitHub: #38.

Improved documentation

  • Added API documentation for the propcache.api.cached_property and propcache.api.under_cached_property decorators – by @bdraco.

    Related issues and pull requests on GitHub: #16.

Packaging updates and notes for downstreams

  • Moved propcache.api.under_cached_property and propcache.api.cached_property to propcache.api – by @bdraco.

    Both decorators remain importable from the top-level package, however importing from propcache.api is now the recommended way to use them.

    Related issues and pull requests on GitHub: #19, #24, #32.

  • Converted project to use a src layout – by @bdraco.

    Related issues and pull requests on GitHub: #22, #29, #37.


0.1.0

(2024-10-03)

Features

  • Added armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #5.


0.0.0

(2024-10-02)

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

propcache-0.5.2.tar.gz (50.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

propcache-0.5.2-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

propcache-0.5.2-cp314-cp314t-win_arm64.whl (41.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

propcache-0.5.2-cp314-cp314t-win_amd64.whl (47.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

propcache-0.5.2-cp314-cp314t-win32.whl (43.8 kB view details)

Uploaded CPython 3.14tWindows x86

propcache-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (65.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

propcache-0.5.2-cp314-cp314t-musllinux_1_2_s390x.whl (67.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

propcache-0.5.2-cp314-cp314t-musllinux_1_2_riscv64.whl (64.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

propcache-0.5.2-cp314-cp314t-musllinux_1_2_ppc64le.whl (66.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (59.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (62.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

propcache-0.5.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (64.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (65.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

propcache-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl (56.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

propcache-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl (99.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp314-cp314-win_arm64.whl (38.6 kB view details)

Uploaded CPython 3.14Windows ARM64

propcache-0.5.2-cp314-cp314-win_amd64.whl (42.4 kB view details)

Uploaded CPython 3.14Windows x86-64

propcache-0.5.2-cp314-cp314-win32.whl (39.4 kB view details)

Uploaded CPython 3.14Windows x86

propcache-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (62.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

propcache-0.5.2-cp314-cp314-musllinux_1_2_s390x.whl (64.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

propcache-0.5.2-cp314-cp314-musllinux_1_2_riscv64.whl (61.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

propcache-0.5.2-cp314-cp314-musllinux_1_2_ppc64le.whl (63.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl (57.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (60.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

propcache-0.5.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (61.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (59.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (54.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

propcache-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl (53.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

propcache-0.5.2-cp314-cp314-macosx_10_15_universal2.whl (94.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp313-cp313t-win_arm64.whl (40.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

propcache-0.5.2-cp313-cp313t-win_amd64.whl (46.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

propcache-0.5.2-cp313-cp313t-win32.whl (42.5 kB view details)

Uploaded CPython 3.13tWindows x86

propcache-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (65.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

propcache-0.5.2-cp313-cp313t-musllinux_1_2_s390x.whl (67.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

propcache-0.5.2-cp313-cp313t-musllinux_1_2_riscv64.whl (64.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

propcache-0.5.2-cp313-cp313t-musllinux_1_2_ppc64le.whl (65.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl (59.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl (62.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

propcache-0.5.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (63.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (63.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (66.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (65.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (62.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl (56.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

propcache-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl (56.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

propcache-0.5.2-cp313-cp313t-macosx_10_13_universal2.whl (98.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp313-cp313-win_arm64.whl (37.6 kB view details)

Uploaded CPython 3.13Windows ARM64

propcache-0.5.2-cp313-cp313-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.13Windows x86-64

propcache-0.5.2-cp313-cp313-win32.whl (38.6 kB view details)

Uploaded CPython 3.13Windows x86

propcache-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (62.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

propcache-0.5.2-cp313-cp313-musllinux_1_2_s390x.whl (64.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

propcache-0.5.2-cp313-cp313-musllinux_1_2_riscv64.whl (61.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

propcache-0.5.2-cp313-cp313-musllinux_1_2_ppc64le.whl (63.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl (56.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

propcache-0.5.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (61.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (59.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (54.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

propcache-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl (53.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

propcache-0.5.2-cp313-cp313-macosx_10_13_universal2.whl (94.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp312-cp312-win_arm64.whl (38.2 kB view details)

Uploaded CPython 3.12Windows ARM64

propcache-0.5.2-cp312-cp312-win_amd64.whl (42.3 kB view details)

Uploaded CPython 3.12Windows x86-64

propcache-0.5.2-cp312-cp312-win32.whl (39.0 kB view details)

Uploaded CPython 3.12Windows x86

propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (62.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl (64.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl (61.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl (63.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl (56.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (61.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (64.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (63.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (55.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl (54.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl (95.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp311-cp311-win_arm64.whl (38.4 kB view details)

Uploaded CPython 3.11Windows ARM64

propcache-0.5.2-cp311-cp311-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.11Windows x86-64

propcache-0.5.2-cp311-cp311-win32.whl (39.0 kB view details)

Uploaded CPython 3.11Windows x86

propcache-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (59.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

propcache-0.5.2-cp311-cp311-musllinux_1_2_s390x.whl (61.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

propcache-0.5.2-cp311-cp311-musllinux_1_2_riscv64.whl (59.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

propcache-0.5.2-cp311-cp311-musllinux_1_2_ppc64le.whl (60.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (55.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (57.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

propcache-0.5.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (59.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (58.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (61.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (60.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (57.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (52.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

propcache-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl (52.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

propcache-0.5.2-cp311-cp311-macosx_10_9_universal2.whl (90.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

propcache-0.5.2-cp310-cp310-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.10Windows ARM64

propcache-0.5.2-cp310-cp310-win_amd64.whl (42.2 kB view details)

Uploaded CPython 3.10Windows x86-64

propcache-0.5.2-cp310-cp310-win32.whl (39.0 kB view details)

Uploaded CPython 3.10Windows x86

propcache-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (61.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

propcache-0.5.2-cp310-cp310-musllinux_1_2_s390x.whl (63.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

propcache-0.5.2-cp310-cp310-musllinux_1_2_riscv64.whl (60.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

propcache-0.5.2-cp310-cp310-musllinux_1_2_ppc64le.whl (61.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

propcache-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl (57.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

propcache-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (58.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

propcache-0.5.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (60.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

propcache-0.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (60.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

propcache-0.5.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (62.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

propcache-0.5.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (61.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

propcache-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (58.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

propcache-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (53.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

propcache-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl (53.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

propcache-0.5.2-cp310-cp310-macosx_10_9_universal2.whl (93.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file propcache-0.5.2.tar.gz.

File metadata

  • Download URL: propcache-0.5.2.tar.gz
  • Upload date:
  • Size: 50.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2.tar.gz
Algorithm Hash digest
SHA256 01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427
MD5 811269ef54efe524d204a79f4c01cfc7
BLAKE2b-256 ec44c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2.tar.gz:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: propcache-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe
MD5 59529ee1eec4e56c17869adaba48c44d
BLAKE2b-256 3aed1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 41.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fe67a3d11cd9b4efabfa45c3d00ffba2b26811442a73a581a94b67c2b5faccf6
MD5 5f8a87cea580ed24e8d09edc82ca633c
BLAKE2b-256 e7c4a47d0a63aa309d10d59ede6e9d4cff03a344a79d1f0f4cd0cd74997b53e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 47.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d447bb0b3054be5818458fbb171208b1d9ff11eba14e18ca18b90cbb45767370
MD5 7bccb7183eb13fd9f7c05da863a85282
BLAKE2b-256 88fb46dad6c0ae49ed230ab1b16c890c2b6314e2403e6c412976f4a72d64a527

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2d7aa89ebca5acc98cba9d1472d976e394782f587bad6661003602a619fd1821
MD5 c783d2c29df30284dc52be2951ee90ab
BLAKE2b-256 d507127e8b0bacfb325396196f9d976a22453049b89b9b2b08477cc3145faa44

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc49723e2f60d6b32a0f0b08a3fd6d13203c07f1cd9566cfce0f12a917c967a2
MD5 f3c436d94483762af5dd811c71093372
BLAKE2b-256 dad33368efe79ab21f0cdf86ef49895811c9cc933131d4cde1f28a624e22e712

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9282fb1a3bccd038da9f768b927b24a0c753e466c086b7c4f3c6982851eefb2d
MD5 71dd63f74e9cd0ee34ddf45aa276af33
BLAKE2b-256 cd865f8da315a4309c62c10c0b2516b17492d5d3bbe1bb862b96604db67e2a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 32775082acd2d807ee3db715c7770d38767b817870acfa08c29e057f3c4d5b56
MD5 7e74b28fa4bc4177c2ae7edaf32f002f
BLAKE2b-256 e40e05fd6990369477076e4e280bcb970de760fddf0161a46e988bc95f7940ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f19bb891234d72535764d703bfed1153cc34f4214d5bd7150aee1eec9e8f4366
MD5 71eb20aae39040a4ffd30997b9643472
BLAKE2b-256 c23d1a6cfa1726a48542c1e8784a0761421476a5b68e09b7f36bf95eb954aaba

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a90efd5777e996e42d568db9ac740b944d691e565cbfd31b2f7832f9184b2b8
MD5 1b64ab0897cdb09bb658d0054d68e7d7
BLAKE2b-256 a19c596784cb5824ed61ee960d3f8655a3f0993e107c6e98ab6c818b7fb92ccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7afa37062e6650640e932e4cc9297d81f9f42d9944029cc386b8247dea4da837
MD5 2e7f6b086f79c8c77f664226a3fd0d86
BLAKE2b-256 5a56387e3f7dfce0a9233df41fb888aa1c30222cb4bbbf09537c02dd9bd85fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a473b3440261e0c60706e732b2ed2f517857344fc21bf48fdfe211e2d98eb285
MD5 c80ee3254da1062d932c086d940823cb
BLAKE2b-256 c854c317819ec157cbf6f35df9df9657a6f82daf34d5faf15948b2f639c2192e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd645f03898405cabe694fb8bc35241e3a9c332ec85627584fe3de201452b335
MD5 7e9fa191e83657cc8959dfda3618c253
BLAKE2b-256 47f79f8122e3132e8e354ac41975ef8f1099be7d5a16bc7ae562734e993665c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5538d2c13d93e4698af7e092b57bc7298fd35d1d58e656ae18f23ee0d0378e03
MD5 6f3f9e2818fadb0d024a77457bb71bdd
BLAKE2b-256 b561315bc0fd6c0fc7f80a528b8afd209e5fc4a875ea79571b91b8f50f442907

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8b73ab70f1a3351fbc71f663b3e645af6dd0329100c353081cf69c37433fc6fe
MD5 f7f6de9db716e43593a1ce248453a0c3
BLAKE2b-256 6ca1859942de9a791ff42f6141736f5b37749b8f53e65edfa49638c67dd67e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13fef48778b5a2a756523fdb781326b028ca75e32858b04f2cdd19f394564917
MD5 ceefde6128d257d4994f15166da647b2
BLAKE2b-256 799faba959b435ea18617edd7cf0a7ad0b9c574b8fc7e3d2cd55fb59cb255d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b31822f4474c4036bae62de9402710051d431a606d6a0f907fec79935a071aa
MD5 9a4608f610aab462094268418dd066af
BLAKE2b-256 cb73daf935ea7048ddd7ec8eec5345b4a40b619d2d178b3c0a0900796bc3c794

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 79aa3ff0a9b566633b642fa9caf7e21ed1c13d6feca718187873f199e1514078
MD5 cbcd0dceaf63bf6df2c1feb3db52a1f6
BLAKE2b-256 f5c9c61e134a686949cf7971af3a390148b1156f7be81c73bc0cd12c873e2d48

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4bc8ff1feffc6a61c7002ffe84634c41b822e104990ae009f44a0834430070bb
MD5 5da929ef5817594aaafd473f557bb06a
BLAKE2b-256 8a81fadf555f42d3b762eea8a53950b0489fdc0aa9da5f8ed9e10ce0a4e01b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0d2c9bf8528f135dbb805ce027567e09164f7efa51a2be07458a2c0420f292d0
MD5 f57dc3eecc70739c59983f7bba8d1fa1
BLAKE2b-256 44689ea5103f41d5217d7d6ec24db90018e23aebec070c3f9a6e54d12b841fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 81e3a30b0bb60caa22033dd0f8a3618d1d67356212514f62c57db75cb0ef410c
MD5 d8e0571b035a357133d2d11bd88f5fa3
BLAKE2b-256 61d245c9defbaa1ea297035d9d4cce9e8f80daafbf19319c6007f157c6256ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc6fc3cc62e8501d3ed62894425040d2728ecddb1ed072737a5c70bd537aa9f0
MD5 70b20e688164db81aa0405a0eb7fbee7
BLAKE2b-256 95cabbfe9b910ce57dde8bb4876b4520fc02a4e89497c10de26be936758a3aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51f96d685ab16e88cab128cd37a52c5da540809c8b879fa047731bfcb4ad35a4
MD5 e762bbaf7166c5da166cbf636ffb672c
BLAKE2b-256 8bf338e66b1856e9bd079deea015bc4a55f7767c0e4db2f7dcf69e7e680ba4ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6e7b8719005dd1175be4ab1cd25e9b98659a5e0347331506ec6760d2773a7fb5
MD5 dc3fe4b6890fcf01245a4386d9948905
BLAKE2b-256 8e0d41c602003e8a9b16fe1e7eadf62c7bfba9d5474370b24200bf48b315f45f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 196913dea116aeb5a2ba95af4ddcb7ea85559ae07d8eee8751688310d09168c3
MD5 520cc368c2f70f797becbcd1e5a98d7e
BLAKE2b-256 f09d7258aaa5bdf60fc6f27591eef6fe52768cb0beda7140be477c8b12c9794a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f814362777a9f841adddb200ecdf8f5cb1e5a3c4b7a86378edbd6ccb26edd702
MD5 32a451e2ecc12757fc6798518fa0bb05
BLAKE2b-256 55279cb0b4c679124085327957d42521c99dba04c88c90c3e55a6f0b633ebccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5570dbcc97571c15f68068e529c92715a12f8d54030e272d264b377e22bd17a5
MD5 87f34c808d566b3ff2074e6c0b8d3c53
BLAKE2b-256 da685c6f7622d510cc666a300687e06fd060c1a43361c0c9b20d284f06d8096a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4dc37dec6c6cdad0b57881a5658fd14fbf53e333b1a86cf86559f190e1d9ec4
MD5 90a317db5d19f3ea56ace069586f8bd1
BLAKE2b-256 c501814cfcafbcff954f94c01cf30e097ddc88a076b5440fbcf4570753437d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c66afea89b1e43725731d2004732a046fe6fe955d51f952c3e95a7314a284a39
MD5 7caa8229e1ec1ca512b1f63025038bf9
BLAKE2b-256 c446b3ff8aba2b4953a3e50de2cf72f1b5748b8eca93b15f3dc2c84339084c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e00820e192c8dbebcafb383ebbf99030895f09905e7a0eb2e0340a0bcc2bc825
MD5 fe94f89b527cd79281139d9f5b6e2d0c
BLAKE2b-256 2b767f1bfd6afff4c5e38e36a3c6d68eb5f4b7311ea80baf693db78d95b603c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d0326e2e5e1f3163fa306c834e48e8d490e5fae607a097a40c0648109b47ba80
MD5 73f2118bc88fdf1faf9687ff9edb66f8
BLAKE2b-256 b4182334b26768b6c82be8c69e83671b767d5ef426aa09b0cba6c2ea47816774

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 583c19759d9eec1e5b69e2fbef36a7d9c326041be9746cb822d335c8cedc2979
MD5 04de6db2dea3048899e0621301b9ed10
BLAKE2b-256 4c29fe1aebec2ce57ab985a9c382bded1124431f85078113aa222c5d278430d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba57fffe4ac99c5d30076161b5866336d97600769bad35cc68f7774b15298a4e
MD5 a4a64718b317a675195d641dad965986
BLAKE2b-256 70062f46c318e3307cd7a6a7481def374ce838c0fe20084b39dd54b0879d0e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97797ebb098e670a2f92dd66f32897e30d7615b14e7f59711de23e30a9072539
MD5 7836163b9a574d4d074785012af3839d
BLAKE2b-256 63b14260d67d6bd85e58a66b72d54ce15d5de789b6f3870cc6bedf8ff9667401

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc88b26f08d634f7bc819a7852e5214f5802641ab8d9fd5326892292eee1993e
MD5 b85f9baadabf753616f695c9ca85a7bb
BLAKE2b-256 b506c5a52f419b5d8972f8d46a7577476090d8e3263ff589ce40b5ca4968d5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 46088abff4cba581dea21ae0467a480526cb25aa5f3c269e909f800328bc3999
MD5 fd2157779a5ee7fafe8951a66dd33a29
BLAKE2b-256 e2ea23ee535d90ce8bcc465a3028eb3cc0ce3bd1005f4bb27710b30587de798d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 6de8bd93ddde9b992cf2b2e0d796d501a19026b5b9fd87356d7d0779531a8d96
MD5 988920d39cfd6811a29b2b9cbf4c0ed8
BLAKE2b-256 00d99cddc8efb78d8af264c5ec9f6d10b62f57c515feda8d321595f56010fb23

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0958834041a0166d343b8d2cedcd8bcbaeb4fdbe0cf08320c5379f143c3be6e7
MD5 f1d5d9a2c67e5b91967b3afc393bc1f2
BLAKE2b-256 ae4c0ddbae64321bd4a95bcbfc19307238016b5b1fee645c84626c8d539e5b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 72d61e16dd78228b58c5d47be830ff3da7e5f139abdf0aef9d86cde1c5cf2191
MD5 93086403a024cb5ec403c94470229a57
BLAKE2b-256 0aaa50fb0b5d3968b61a510926ff8b8465f1d6e976b3ab74496d7a4b9fc42515

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef6cea3922890dd6c9654971001fa797b526c16ab5e1e46c05fd6f877be7568
MD5 f85c3951e45d0476ec4aeb24a710421e
BLAKE2b-256 34688bdb7bb7756d76e005490649d10e4a8369e610c74d619f71e1aedf889e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3430bb2bfe1331885c427745a751e774ee679fd4344f80b97bf879815fe8fa55
MD5 185ebfb0e5ff250c088e4fbadbb0310d
BLAKE2b-256 f31a8b08f3a5f1037e9e370c55883ceeeee0f6dd0416fb2d2d67b8bfc91f2a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 452b5065457eb9991ec5eb38ff41d6cd4c991c9ac7c531c4d5849ae473a9a13f
MD5 021cc2b472240d185e5c1a260b211b81
BLAKE2b-256 1c3480f8d0099f8d6bacc4de1624c85672681c8cd1149ca2da0e38fd120b817f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 acd2c8edba48e31e58a363b8cf4e5c7db3b04b3f9e371f601df30d9b0d244836
MD5 dba4d6879762f87375a3051774f7b729
BLAKE2b-256 863b04c1a2e12c57766568ba75ba72b3bf2042818d4c1425fab6fc07155c7cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc76378c62a0f04d0cd82fbb1a2cd2d7e28fcb40d5873f28a6c44e388aaa2751
MD5 3b5f2a7dbfb45f63319311bb6ecaac18
BLAKE2b-256 e403893cf147de2fc6543c5eaa07ad833170e7e2a2385725bbebe8c0503723bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f22cbbac9e26a8e864c0985ff1268d5d939d53d9d9411a9824279097e03a2cb
MD5 bcfdd2609f4b577a1a2786226eee37d4
BLAKE2b-256 851ea3a1a63116a2b8edb415a8bb9a6f0c34bd03830b1e18e8ce2904e1dc1cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a6ddc6ac9e25de626c1f129c1b467d7ecd33ce2237d3fd0c4e429feef0a7ee1f
MD5 8e461921a6a1773a934d1259b331de89
BLAKE2b-256 cab699238894047b13c823be25027e736626cd414a52a5e30d2c3347c2733529

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7467da8a9822bf1a55336f877340c5bcbd3c482afc43a99771169f74a26dedc
MD5 a8f886ff30802941e93ab1e7be2f7c60
BLAKE2b-256 83e45c7462e50625f051f37fb38b8224f7639f667184bbd34424ec83819bb1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f78abfa8dfc32376fd1aacf597b2f2fbbe0ea751419aee718af5d4f82537ef8c
MD5 177146a0093eb4c88b48779bb818585f
BLAKE2b-256 b0b693bea99ca80e19cef6512a8580e5b7857bbe09422d9daa7fd4ef5723306c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f064f8d2b59177878b7615df1735cd8fe3462ed6be8c7b217d17a276489c2b7f
MD5 5c9394511fcb005146b87eeea5345a87
BLAKE2b-256 6519c10badaa463dde8a27ce884f8ee2ec37e6035b7c9f5ff0c8f74f06f08dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cafca7e56c12bb02ae16d283742bef25a61122e9dab2b5b3f2ccbe589ce32164
MD5 5c9528576a007722dc3c817cacc9b196
BLAKE2b-256 9d0e6e9d4ba07c8e56e21ddec1e75f12148142b21ca83a51871babce095334f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10734b5484ea113152ee25a91dccedf81631791805d2c9ccb054958e51842c94
MD5 9e24a2f66a51f2e906df7a499f284b66
BLAKE2b-256 67f09b90ca2a210b3d09bcfcd96ecd0f55545c091535abce2a45de2775cfd357

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a997d0489e9668a384fcfd5061b857aa5361de73191cac204d04b889cfbbafa
MD5 f8e4624e7c3a57b015d59253741d81fd
BLAKE2b-256 f4d452c871e73e864e6b34c0e2d58ac1ec5ccd149497ddc7ad2137ae98323a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a592f5f3da71c8691c788c13cb6734b6d17663d2e1cb8caddf0673d01ef8847d
MD5 ab3f901034b0fa4cf5ea9c0977dd808b
BLAKE2b-256 1b82c1d268bbbf2ef981c5bf0fbbe746db617c66e3bcefe431a1aa8943fbe23a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 37.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ba338430e87ceb9c8f0cf754de38a9860560261e56c00376debd628698a7364f
MD5 4efa75c9ebdc61b904494a2100c943f3
BLAKE2b-256 90ec6ce619cc32bb500a482f811f9cd509368b4e58e638d13f2c68f370d6b475

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dfed59d0a5aeb01e242e66ff0300bc4a265a7c05f612d30016f0b60b1017d757
MD5 0098d8cc40f3f189e63e11d1b3eb769c
BLAKE2b-256 1cfd3f0f10dba4dabad3bf53102be007abf55481067952bde0fdddff439e7c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f156a3529f38063b6dbaf356e15602a7f95f8055b1295a438433a6386f10463d
MD5 5c7053d83bab381a5af8c52b02b1e243
BLAKE2b-256 bd3b484a3a65fc9f9f60c41dcd17b428bace5389544e2c680994534a20755066

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa21e036ce1e1db2be04ba3b85d2df1bb1702fa01932d984c5464c665228ff4
MD5 a489e506eae6bbd848b9b1ea8bf3151e
BLAKE2b-256 9256f5c7d9b4b7595d5127da38974d791b2153f3d1eae6c674af3583ace92ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 40314bca9ac559716fe374094fc81c11dcc34b64fd6c585360f5775690505704
MD5 47c0db344169ce78d64d54a5eda33903
BLAKE2b-256 0b97efb547a55c4bc7381cfb202d6a2239ac621045277bc1ea5dfd3a7f0516c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c60462af8e6dc30c35407c7237ea908d777b22862bbee27bc4699c0d8bcdc45a
MD5 6955f6a214133c4f8d492a216823325f
BLAKE2b-256 f9e2fa59d3a89eac5534293124af4f1d0d0ada091ce4a0ab4610ce03fd2bdd8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3115559b8effafd63b142ea5ed53d63a16ea6469cbc63dce4ee194b42db5d853
MD5 55fdaa881c596945f4e1f82d8b9bb9f7
BLAKE2b-256 804570b39b89516ff8b96bf732fa6fded8cef20f293cb1508690101c3c07ec51

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06187263ddad280d05b4d8a8b3bb7d164cbebd469236544a42e6d9b28ac6a4fa
MD5 5ec645291d172c99317bbb7e903a5400
BLAKE2b-256 f340db650677f554a95b9c01a7c9d93d629e93a15562f5deb4573c9ee136fed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d310c013aad2c72f1c3f2f8dd3279d460a858c551f97aeb8c63e4693cca7b4d2
MD5 cecd8414c928f9480ef5c68f97087c77
BLAKE2b-256 605a28e5d9acbac1cc9ccb67045e8c1b943aa8d79fdf39c93bd73cacd68008ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1dbcf7675229b35d31abb6547d8ebc8c27a830ac3f9a794edff6254873ec7c0a
MD5 7644f833f9065d10367ad0cc55bd346b
BLAKE2b-256 c82263e8cd1bae4c2d2be6493b6b7d10566ddafad88137cfbc99964a1119853c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4db0ba63d693afd40d249bd93f842b5f144f8fcbb83de05660373bcf30517b1d
MD5 36a34ba681365da31fc242c955167fbf
BLAKE2b-256 8bc6979176efdaa3d239e36d503d5af63a0a773b36662ed8f52e5b6a6d9fd40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f7eabc04151c78a9f4d5bbb5f1faf571e4defeb4b585e0fe95b60ff2dbe4d3d7
MD5 497af2a7f7a9716a46d7abd54a114dc6
BLAKE2b-256 4a4a15a03adee24d6350da4292caeac44c34c033d2afe5e87eb370f38854560f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6041d31504dc1779d700e1edcfb08eea334b357620b06681a4eabb57a74e574e
MD5 95af87ff77fd260e96e332092a0a737f
BLAKE2b-256 a1e45d7663dc8235956c8f5281698a3af1d351d8820341ddd890f59d9a9127f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6ae2198be502c10f09b2516e7b5d019816924bc3183a43ce792a7bd6625e6f4
MD5 4d4164249e3348e6386c8ba23336199f
BLAKE2b-256 a9197fa086f5764c59ec8a8e157cd93aa8497acc00aba9dcdec56bfffb32602d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc299c129490f55f254cd90be0deca4764e36e9a7c08b4aa588479a3bbed3098
MD5 13908b91eb69c6c84e0789cee3399c21
BLAKE2b-256 a912a6ba6482bb5ea3260c000c9b20881c95fa11c6b30173715668259f844ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68ce1c44c7a813a7f71ea04315a8c7b330b63db99d059a797a4651bb6f69f117
MD5 ccdfae218bfeeb5419afbc513823d752
BLAKE2b-256 6b6583d1d05655baf63113731bd5a1008435e14f8d1e5a06cbe4ec5b23ad7a31

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 099aaf4b4d1a02265b92a977edf00b5c4f63b3b17ac6de39b0d637c9cac0188a
MD5 ff15c23913463b13f3b786e76ea43e8b
BLAKE2b-256 c509f049e45385503fe67db75a6b6186a7b9f0c3930366dc960522c312a825b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 38.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84
MD5 1f2b54fd9ee22f6a8e0ec0b5c8a46e25
BLAKE2b-256 4d91875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 42.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42
MD5 45f7e0ae0f5127d5163d568929e07e50
BLAKE2b-256 617c5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031
MD5 ff48a99db826dd5d99150d05b2ced661
BLAKE2b-256 cf7466bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a
MD5 d924cd2af07b7e21f8a638f06a7399bf
BLAKE2b-256 12fd77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33
MD5 c8c18f76b1780134077fe2124c0ee145
BLAKE2b-256 b45e70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1
MD5 280c5f4e06048450b49fda865b832996
BLAKE2b-256 14f9590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913
MD5 51f0d76558359bdddc2805f6779eb5e3
BLAKE2b-256 ea9e93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64
MD5 0cf5dcbd9bebe1ea3e7a39ea03ad7cc3
BLAKE2b-256 7060189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a
MD5 20034d4b28708f4cad05f1b30dd6585e
BLAKE2b-256 04acf076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba
MD5 eec2e1b327b09b9e7fae02d15b1e29e2
BLAKE2b-256 ccda4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476
MD5 b148482e55d98a2e88ad35bd3069285f
BLAKE2b-256 14155574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42
MD5 6fe6a6823ba6e7ef09663cd12193bb92
BLAKE2b-256 9e1bf112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9
MD5 879d8d539405ba189b13333e35a50998
BLAKE2b-256 9c4232cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144
MD5 9fdd687724013dada7102602707b8f6e
BLAKE2b-256 44c7085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf
MD5 35c10524ceae3dccc325d89552e9c338
BLAKE2b-256 2c7d49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a
MD5 d3542a63df4e256b4c4f0a40d28b8980
BLAKE2b-256 e613b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba
MD5 f482d72cb2989ff694c37b7c61ba8614
BLAKE2b-256 4acbe27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 38.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 54adaa85a22078d1e306304a40984dc5be99d599bf3dc0a24dc98f7daeab89ab
MD5 5866788236074a4efb1fbe4e3d84f5bb
BLAKE2b-256 c6eb6af6685077d22e8b33358d3c548e3282706a0b3cd85044ffba4e5dd08e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44e488ef40dbb452700b2b1f8188934121f6648f52c295055662d2191959ff82
MD5 61c55bde6f15302c71cc4815788415b4
BLAKE2b-256 424ef17363fb58c0afe05b067361cb6d86ed2d29de6506779a27547c4d183075

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd416c1de191973c52ff1a12a57446bfc7642797b282d7caf2162d7d1b8aa9a0
MD5 e17aa1ce99db3cd8a7411051fc732cfd
BLAKE2b-256 b89b2da6dee38871c3c8772fabc2758325a5c9077d6d18c597737dc04dd884cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 552ffadf6ad409844bc5919c42a0a83d88314cedddaea0e41e80a8b8fffe881f
MD5 47d68e59e1d0507127d7d202ed1f44dd
BLAKE2b-256 0b42314ebc50d8159055411fd6b0bda322ff510e4b1f7d2e4927940ad0f6af20

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e59bc9e66329185b93dab73f210f1a37f81cb40f321501db8017c9aea15dba27
MD5 cbdd0ed652c1b325a73be8883197bbd6
BLAKE2b-256 53ae6e292df9135d659944e96cb3389258e4a663e5b2b5f6c217ef0ddc8d2f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3b199b9b2b3d6a7edf3183ba8a9a137a22b97f7df525feb5ae1eccf026d2a9c6
MD5 04ac6a8836b0396428e8e63a1f350fef
BLAKE2b-256 83c0435dafd27f1cb4a495381dae60e25883ccfe4020bb72818e8184c1678092

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 26a4dca084132874e639895c3135dfad5eb20bae209f62d1aeb31b03e601c3c0
MD5 c85cfa7456b2deb4ba5189dd2263b792
BLAKE2b-256 14c043f649c7aa2a77a3b100d84e9dea3a483120ecb608bfe36ce49eaff517fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85341b12b9d55bad0bded24cac341bb34289469e03a11f3f583ea1cc1db0326c
MD5 df35ad22f63bd6119fc866378b762539
BLAKE2b-256 eb02dba5bc03c9041f2092ea55a449caf5dfe68352c6654511b29ba0654ddb69

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95f1e3f4760d404b13c9976c0229b2b49a3c8e2c62a9ce92efdd2b11ada75e3f
MD5 bc132cd6819c236f3f5feb629ef8a3d5
BLAKE2b-256 b94264f8d90b73fd9cdc1499b48057ff6d9cd2a98a25734c9bb62ecf07e87061

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 66ea454f095ddf5b6b14f56c064c0941c4788be11e18d2464cf643bf7203ff67
MD5 ff662279f62fb293f47e8657cf35c994
BLAKE2b-256 0a67bb777ffd907633563bf35fd859c4ce97b0512c32f4633cf5d1eb7c33512b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5aaa2b923c1944ac8febd6609cb373540a5563e7cbcb0fd770f75dace2eb817b
MD5 c10160f7912bd0b221ea62e0a9557faa
BLAKE2b-256 271b16ab7f2cf2041da2f60d156ba64c2484eadf9168075b4ff43c3ef60045af

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 29f9309a2e42b0d273be006fdb4be2d6c39a47f6f57d8fb1cf9f81481df81b66
MD5 2abfb4a91a7d8b717bd78afb93b825e9
BLAKE2b-256 957d466b3d18022e9897cbda9c735c493c5bd747d7a4c6f5ea1480b4cec434b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0fd59b5af35f74da48d905dcbad55449ba13be91823cb05a9bd590bbf5b61660
MD5 66857ff8e10ad933779110c14d79f1ef
BLAKE2b-256 8327ab851ebd1b7172e3e161f5f8d39e315d54a91bea246f01f4d872d3376aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2293949b855ce597f2826452d17c2d545fb5622379c4ea6fdf525e9b8e8a2511
MD5 f6f46604fa763fc43b42d6dad0022886
BLAKE2b-256 7dfeb3551b41bbc2f5b5bb088fc6920567cd43101253e68fbaa261339eb96fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6844ba6364fb12f403928a82cfd295ab103a2b315c77c747b2dbe4a41894ea7
MD5 b866997156f2fb0fee1fcfec8dd586b6
BLAKE2b-256 15a88ede85d6aa1f79fc7dc2f8fd2c8d65920b8272c3892903c8a1affde48cfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4840ab0ae0216d952f4b53dc6d0b992bfc2bedbfe360bdd9b548bc184c08959
MD5 e2c439bb5470c8d5a349d47091b3e96d
BLAKE2b-256 c2f4651b1225e976bd1a2ba5cfba0c29d096581c2636b437e3a9a7ab6276270a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 74b70780220e2dd89175ca24b81b68b67c83db499ae611e7f2313cb329801c78
MD5 b48627a4fd802028135e4fb418e399fb
BLAKE2b-256 e7f18a8cc1c2c7e7934ab77e0163414f736fadbc0f5e8dd9673b952355ac175b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 38.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 04dc2390d9edbbaef7461f33322555976ffddf0b650a038649d026358714e6c5
MD5 8e0b384f8a0509ead14b1c53b7d8c430
BLAKE2b-256 5793f71588ad08b3e6f4b555b5ef215808a3c02b042d0151ad82fa6f15be677a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fcb98e7598b1ee0addab320d90f65b530297a867dbfe9de52ea838077e16e3d
MD5 8d41519547ab773f2f68e18c9bc4d86a
BLAKE2b-256 5b021dfd5607501a602d19c1c449d2d193b7d1c611f9246b4059026a1189a80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: propcache-0.5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for propcache-0.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8114f28879e0904748e831c3a7774261bd9e75f49be089f389a76f959dcd13fe
MD5 cf940b56089917e372092768824bb563
BLAKE2b-256 8f1ac3915eb059ceec9e758a56e4cfd955292bc0f201be2176a46b76d94b303a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b05d643f944a8c3c4bd86d65ffd87bf3264b617f87791940302bc474d2ff5274
MD5 3e769fac059b385e9fc8a1bc7788eb38
BLAKE2b-256 f618884573f5d97b6d9eba68de759a82c901b7e39d7904d30f7b8d58d42d2a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cc1177027eda740fdb152706bd215a3f124e3eea15afc39f2cb9fe351b50619e
MD5 4d83408c11e9099fed041c28584ec74b
BLAKE2b-256 1f87f638b6e375eae0f30a1a2325d8b34fd85fdc785bb9960cf805f3bf1ec69a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 949c91d1a990cf3b2e8188dfcfb25005e0b834a06c63fa4ef9f360878ce21ecf
MD5 911378dee94d601078d69da9c28bc43d
BLAKE2b-256 98a91e500401ca593b0bdb6bf75a70bc2d723835fd53360edff6af70692c7546

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 823581fd5cb08b12a48bfa11fe962a7916766b6170c17b028fbdf762b85eb9bf
MD5 fc2c91eba1952e73c176686465712bb7
BLAKE2b-256 22db6c695285ccfc49012743ee9c98212b8c5dd0aed7b63cfd816d4a0f7a1601

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0e399a2eccb91ed18721f86aa85757727400b6865c89e88934781deb9c8498b
MD5 d084216a579a999f16f0a2f0d05d8a97
BLAKE2b-256 8a3797489848c54c95578045473954f10956d619ce6a09e7ac137b71cdcb698b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4294d04a94dcab1b3bccd8b66d962dcad411a1d19414b2a41d1445f1de32ad0
MD5 6cb601865b89c7fd9da87f76d7cea29c
BLAKE2b-256 602f09b72b874a9aa0044faf52a69807a6ed618e267ceaa9ec4a63195fa5b504

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1ca071adabaab6e9219924bbe00af821f1ee7de113a9eca1cdc292de3d120f4d
MD5 ad31eb02f47aaccedce57312d84ea942
BLAKE2b-256 ab093da4be9b5b879219ad234aa535b3dd4a080ed1ad48d3a73ca07a9e798f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b96db7141a592cbc968daf1feea83a118e6ab378af4abbc72b248c895414c22d
MD5 398241e64693f22555a440bb3aa070e1
BLAKE2b-256 396e899fed76dc1942b8a64193a4f059d7f1a2c7ef65085e8a9366ed8ec0d199

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4621064bbf28fa77ff64dd5d94367c04684c67d3a5bf1dff25f0cd0d98a38f3b
MD5 936e4b4d537524dcd8874036dbc6ee57
BLAKE2b-256 260b843726fbb0a29a8c5684fdb25971823638399f31e52e9d1f06a02dc9aa6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 decfca4c79dd53ebab484b00cc4b6717d8c369f86e74aa4ca395a64ac651495e
MD5 7254df9fde10d05e2aaa39b92e4aaea9
BLAKE2b-256 b74339b6bdee9699fa1e1641c519feeb64a67e2a9f93bb465c70776b37a7333f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f8ea531c794b9d6274acd4e8d2c2ebcac590a4361d27482edd3010b79f1325e
MD5 a823ca2539d23a5ac8e3a1551087ed0a
BLAKE2b-256 b7dbcf51a71bab2009517d1a7f0ee07657e3bd446c4d69f67e6966cf17bcf956

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf3be92233808fcd338eba0fb4d0b59ec5772af4f4ecfcec450d1bfc0f8b5eb
MD5 4c92c02f439891db33202953e33925dc
BLAKE2b-256 20420e7443c90310498561addf346e7d57fe3c6ba1914e1ba938b5464c7bbfd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29cbaac5ea0212663e6845e04b5e188d5a6ae6dd919810ac835bf1d3b42c3f4c
MD5 968bb4f64c0a814862f53ccc87d5155b
BLAKE2b-256 1a551140a8e067b8ec093a18a4ae7bb0045d9db65da38a08618ddc5e2f1994aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.5.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5a81be28596d6559f6131ef33e10200de6e17643b3c74ce03f9eb103be6ae8b
MD5 3099f5946aa8a9e54822842ff69dae8c
BLAKE2b-256 5b56030b7b4719d53085722893e0009dffb9236aa10bca1b12121bdc5626ef16

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page