Skip to main content

Accelerated property cache

Project description

propcache

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

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.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.4.1.tar.gz (46.4 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.4.1-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

propcache-0.4.1-cp314-cp314t-win_arm64.whl (40.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

propcache-0.4.1-cp314-cp314t-win_amd64.whl (46.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

propcache-0.4.1-cp314-cp314t-win32.whl (42.5 kB view details)

Uploaded CPython 3.14tWindows x86

propcache-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (257.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

propcache-0.4.1-cp314-cp314t-musllinux_1_2_s390x.whl (263.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

propcache-0.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (262.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl (247.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (260.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

propcache-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (262.9 kB view details)

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

propcache-0.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (280.0 kB view details)

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

propcache-0.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (273.6 kB view details)

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

propcache-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (275.7 kB view details)

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

propcache-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl (48.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

propcache-0.4.1-cp314-cp314t-macosx_10_13_x86_64.whl (46.4 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

propcache-0.4.1-cp314-cp314t-macosx_10_13_universal2.whl (81.5 kB view details)

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

propcache-0.4.1-cp314-cp314-win_arm64.whl (38.1 kB view details)

Uploaded CPython 3.14Windows ARM64

propcache-0.4.1-cp314-cp314-win_amd64.whl (41.3 kB view details)

Uploaded CPython 3.14Windows x86-64

propcache-0.4.1-cp314-cp314-win32.whl (38.1 kB view details)

Uploaded CPython 3.14Windows x86

propcache-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (197.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp314-cp314-musllinux_1_2_s390x.whl (204.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

propcache-0.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl (202.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (193.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (197.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (201.4 kB view details)

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

propcache-0.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (215.4 kB view details)

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

propcache-0.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.5 kB view details)

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

propcache-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.0 kB view details)

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

propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl (78.2 kB view details)

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

propcache-0.4.1-cp313-cp313t-win_arm64.whl (39.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

propcache-0.4.1-cp313-cp313t-win_amd64.whl (44.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

propcache-0.4.1-cp313-cp313t-win32.whl (41.4 kB view details)

Uploaded CPython 3.13tWindows x86

propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl (263.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (262.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl (247.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (261.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (263.3 kB view details)

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

propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (280.4 kB view details)

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

propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (273.9 kB view details)

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

propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (275.9 kB view details)

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

propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl (48.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl (46.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl (81.5 kB view details)

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

propcache-0.4.1-cp313-cp313-win_arm64.whl (37.2 kB view details)

Uploaded CPython 3.13Windows ARM64

propcache-0.4.1-cp313-cp313-win_amd64.whl (40.8 kB view details)

Uploaded CPython 3.13Windows x86-64

propcache-0.4.1-cp313-cp313-win32.whl (37.6 kB view details)

Uploaded CPython 3.13Windows x86

propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (199.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl (205.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl (203.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (196.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (199.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.4 kB view details)

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

propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (218.1 kB view details)

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

propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (211.2 kB view details)

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

propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (208.2 kB view details)

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

propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (46.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl (77.8 kB view details)

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

propcache-0.4.1-cp312-cp312-win_arm64.whl (37.8 kB view details)

Uploaded CPython 3.12Windows ARM64

propcache-0.4.1-cp312-cp312-win_amd64.whl (41.7 kB view details)

Uploaded CPython 3.12Windows x86-64

propcache-0.4.1-cp312-cp312-win32.whl (38.1 kB view details)

Uploaded CPython 3.12Windows x86

propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (215.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl (227.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl (220.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (213.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (216.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.6 kB view details)

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

propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (238.5 kB view details)

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

propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (230.2 kB view details)

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

propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.5 kB view details)

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

propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (47.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl (80.1 kB view details)

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

propcache-0.4.1-cp311-cp311-win_arm64.whl (38.1 kB view details)

Uploaded CPython 3.11Windows ARM64

propcache-0.4.1-cp311-cp311-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.11Windows x86-64

propcache-0.4.1-cp311-cp311-win32.whl (38.1 kB view details)

Uploaded CPython 3.11Windows x86

propcache-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (205.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp311-cp311-musllinux_1_2_s390x.whl (216.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

propcache-0.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl (212.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (202.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (208.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (210.0 kB view details)

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

propcache-0.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (228.1 kB view details)

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

propcache-0.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (221.8 kB view details)

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

propcache-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.9 kB view details)

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

propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (47.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl (45.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl (80.2 kB view details)

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

propcache-0.4.1-cp310-cp310-win_arm64.whl (38.2 kB view details)

Uploaded CPython 3.10Windows ARM64

propcache-0.4.1-cp310-cp310-win_amd64.whl (41.6 kB view details)

Uploaded CPython 3.10Windows x86-64

propcache-0.4.1-cp310-cp310-win32.whl (38.1 kB view details)

Uploaded CPython 3.10Windows x86

propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (193.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl (200.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl (200.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl (190.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (193.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (196.9 kB view details)

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

propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (215.3 kB view details)

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

propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (209.5 kB view details)

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

propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (201.0 kB view details)

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

propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (47.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl (79.5 kB view details)

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

propcache-0.4.1-cp39-cp39-win_arm64.whl (38.5 kB view details)

Uploaded CPython 3.9Windows ARM64

propcache-0.4.1-cp39-cp39-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.9Windows x86-64

propcache-0.4.1-cp39-cp39-win32.whl (38.3 kB view details)

Uploaded CPython 3.9Windows x86

propcache-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (193.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

propcache-0.4.1-cp39-cp39-musllinux_1_2_s390x.whl (200.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

propcache-0.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl (200.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

propcache-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl (190.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

propcache-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (193.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

propcache-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (197.2 kB view details)

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

propcache-0.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (215.6 kB view details)

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

propcache-0.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (209.8 kB view details)

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

propcache-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (201.1 kB view details)

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

propcache-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (47.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

propcache-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl (45.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

propcache-0.4.1-cp39-cp39-macosx_10_9_universal2.whl (80.3 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.4.1.tar.gz
Algorithm Hash digest
SHA256 f48107a8c637e80362555f37ecf49abe20370e557cc4ab374f04ec4423c97c3d
MD5 9efab9358cf05265dbee69297e0de96a
BLAKE2b-256 9edae9fc233cf63743258bff22b3dfa7ea5baef7b5bc324af47a0ad89b8ffc6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1.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.4.1-py3-none-any.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 af2a6052aeb6cf17d3e46ee169099044fd8224cbaf75c76a2ef596e8163e2237
MD5 8d9d1d994bc9440baabd55ce6b0e403f
BLAKE2b-256 5b5abc7b4a4ef808fa59a816c17b20c4bef6884daebbdf627ff2a161da67da19

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ecef2343af4cc68e05131e45024ba34f6095821988a9d0a02aa7c73fcc448aa9
MD5 4ddf6e98796b64c582a55d7d391fa5bb
BLAKE2b-256 c42d346e946d4951f37eca1e4f55be0f0174c52cd70720f84029b02f296f4a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 990f6b3e2a27d683cb7602ed6c86f15ee6b43b1194736f9baaeb93d0016633b1
MD5 b4cdab75f0b9b5098eb02eb8e1c9bcff
BLAKE2b-256 cbef3c6ecf8b317aa982f309835e8f96987466123c6e596646d4e6a1dfcd080f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 05674a162469f31358c30bcaa8883cb7829fa3110bf9c0991fe27d7896c42d85
MD5 81a6136470e434c8a9effdb441480f4c
BLAKE2b-256 080287b25304249a35c0915d236575bc3574a323f60b47939a2262b77632a3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab2943be7c652f09638800905ee1bab2c544e537edb57d527997a24c13dc1455
MD5 6bb88d8fff19c27f3f7b510b911e7d9a
BLAKE2b-256 e770c99e9edb5d91d5ad8a49fa3c1e8285ba64f1476782fed10ab251ff413ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d8f353eb14ee3441ee844ade4277d560cdd68288838673273b978e3d6d2c8f36
MD5 053f95d37e02fc3a4e21277692850572
BLAKE2b-256 f57616d8bf65e8845dd62b4e2b57444ab81f07f40caa5652b8969b87ddcf2ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 120c964da3fdc75e3731aa392527136d4ad35868cc556fd09bb6d09172d9a367
MD5 debdb189bdedf388e21782ec05972491
BLAKE2b-256 18ede7a9cfca28133386ba52278136d42209d3125db08d0a6395f0cba0c0285c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 521a463429ef54143092c11a77e04056dd00636f72e8c45b70aaa3140d639726
MD5 3b3a5343042489a25e149c78de86d160
BLAKE2b-256 cf1296e4664c82ca2f31e1c8dff86afb867348979eb78d3cb8546a680287a1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e57061305815dfc910a3634dcf584f08168a8836e6999983569f51a8544cd89
MD5 5ddbe5b5b1d1af9ee2b414bf0a0f52c4
BLAKE2b-256 0cb18f08a143b204b418285c88b83d00edbd61afbc2c6415ffafc8905da7038b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c3c70630930447f9ef1caac7728c8ad1c56bc5015338b20fed0d08ea2480b3a
MD5 f44cb1cebd5557a828fe7879fc59c52e
BLAKE2b-256 48c833cee30bd890672c63743049f3c9e4be087e6780906bfc3ec58528be59c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5c3310452e0d31390da9035c348633b43d7e7feb2e37be252be6da45abd1abcc
MD5 4b23285c148db784d781ff026db9418d
BLAKE2b-256 e2a1b52b055c766a54ce6d9c16d9aca0cad8059acd9637cdf8aa0222f4a026ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 005f08e6a0529984491e37d8dbc3dd86f84bd78a8ceb5fa9a021f4c48d4984be
MD5 762fe08a3563b9a0da894222534a1d4b
BLAKE2b-256 206789800c8352489b21a8047c773067644e3897f02ecbbd610f4d46b7f08612

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49a2dc67c154db2c1463013594c458881a069fcf98940e61a0569016a583020a
MD5 ce6965204e426e6b422d2c45b3d04ede
BLAKE2b-256 e2e37dc89f4f21e8f99bad3d5ddb3a3389afcf9da4ac69e3deb2dcdc96e74169

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f6ff873ed40292cd4969ef5310179afd5db59fdf055897e282485043fc80ad0
MD5 26df0ecd1fd9d0a63a6c9875410e7e70
BLAKE2b-256 0120b0972d902472da9bcb683fa595099911f4d2e86e5683bcc45de60dd05dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c2b5e7db5328427c57c8e8831abda175421b709672f6cfc3d630c3b7e2146393
MD5 abc963f416cd5368c714e94600bfce43
BLAKE2b-256 90852431c10c8e7ddb1445c1f7c4b54d886e8ad20e3c6307e7218f05922cad67

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp314-cp314t-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.4.1-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 824e908bce90fb2743bd6b59db36eb4f45cd350a39637c9f73b1c1ea66f5b75f
MD5 16d0b8d472b34339759c01d259f76613
BLAKE2b-256 99859ff785d787ccf9bbb3f3106f79884a130951436f58392000231b4c737c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp314-cp314t-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.4.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 74c1fb26515153e482e00177a1ad654721bf9207da8a494a0c05e797ad27b992
MD5 734759dd19d04d8155709f1cba2dfa16
BLAKE2b-256 345e63bd5896c3fec12edcbd6f12508d4890d23c265df28c74b175e1ef9f4f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a103c3eb905fcea0ab98be99c3a9a5ab2de60228aa5aceedc614c0281cf6153
MD5 520e9885123bfce9307fd0867ca5760d
BLAKE2b-256 0c2aa758b47de253636e1b8aef181c0b4f4f204bf0dd964914fb2af90a95b49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ab4c29b49d560fe48b696cdcb127dd36e0bc2472548f3bf56cc5cb3da2b2984f
MD5 cd6ef226bc847c87ea40d36b83d6a608
BLAKE2b-256 ee3666367de3575db1d2d3f3d177432bd14ee577a39d3f5d1b3d5df8afe3b6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9b822a577f560fbd9554812526831712c1436d2c046cedee4c3796d3543b144
MD5 1790ee4f55a40d1e1572600b7259cd53
BLAKE2b-256 a087492694f76759b15f0467a2a93ab68d32859672b646aa8a04ce4864e7932d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5558992a00dfd54ccbc64a32726a3357ec93825a418a401f5cc67df0ac5d9e49
MD5 59283c07d499201b2dde672ce3178201
BLAKE2b-256 f50298ec20ff5546f68d673df2f7a69e8c0d076b5abd05ca882dc7ee3a83653d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dee69d7015dc235f526fe80a9c90d65eb0039103fe565776250881731f06349f
MD5 47db91d3195cdf4eec57d70d33bf7f82
BLAKE2b-256 a924ef0d5fd1a811fb5c609278d0209c9f10c35f20581fcc16f818da959fc5b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89eb3fa9524f7bec9de6e83cf3faed9d79bffa560672c118a96a171a6f55831e
MD5 d62f6db220665933750a482c627804ec
BLAKE2b-256 dc89ce24f3dc182630b4e07aa6d15f0ff4b14ed4b9955fae95a0b54c58d66c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 060b16ae65bc098da7f6d25bf359f1f31f688384858204fe5d652979e0015e5b
MD5 1afb4e5c46da23ca99bd2f40f125183c
BLAKE2b-256 2773033d63069b57b0812c8bd19f311faebeceb6ba31b8f32b73432d12a0b826

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8326e144341460402713f91df60ade3c999d601e7eb5ff8f6f7862d54de0610d
MD5 22bb70c42274ff9c32d892e2696cef03
BLAKE2b-256 b2f2889ad4b2408f72fe1a4f6a19491177b30ea7bf1a0fd5f17050ca08cfc882

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 55c72fd6ea2da4c318e74ffdf93c4fe4e926051133657459131a95c846d16d44
MD5 c79a9a871e7c349ec60d2a0c0d7a0231
BLAKE2b-256 801ee5889652a7c4a3846683401a48f0f2e5083ce0ec1a8a5221d8058fbd1adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ed5a841e8bb29a55fb8159ed526b26adc5bdd7e8bd7bf793ce647cb08656cdf4
MD5 22a24243da4dd82d69aa4dcc7b66c334
BLAKE2b-256 dff6c5fa1357cc9748510ee55f37173eb31bfde6d94e98ccd9e6f033f2fc06e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c80ee5802e3fb9ea37938e7eecc307fb984837091d5fd262bb37238b1ae97641
MD5 d4c3cced77367a4b33174640fbcc3560
BLAKE2b-256 86bd47816020d337f4a746edc42fe8d53669965138f39ee117414c7d7a340cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f302f4783709a78240ebc311b793f123328716a60911d667e0c036bc5dcbded
MD5 988aaac99586808cb56f8ed7063dfede
BLAKE2b-256 b2fa89a8ef0468d5833a23fff277b143d0573897cf75bd56670a6d28126c7d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0d4b719b7da33599dfe3b22d3db1ef789210a0597bc650b7cee9c77c2be8c5c
MD5 1156ef454e6e43b5e2634b8fd25e8f4c
BLAKE2b-256 659b03b04e7d82a5f54fb16113d839f5ea1ede58a61e90edf515f6577c66fa8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp314-cp314-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.4.1-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3f7124c9d820ba5548d431afb4632301acf965db49e666aa21c305cbe8c6de12
MD5 3af852f0b78e18d018626d846b78a10b
BLAKE2b-256 8e5cbca52d654a896f831b8256683457ceddd490ec18d9ec50e97dfd8fc726a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp314-cp314-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.4.1-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 929d7cbe1f01bb7baffb33dc14eb5691c95831450a26354cd210a8155170c93a
MD5 ca0fb92bdac311f6753d4139b5927bf8
BLAKE2b-256 fdca6002e46eccbe0e33dcd4069ef32f7f1c9e243736e07adca37ae8c4830ec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f7ee0e597f495cf415bcbd3da3caa3bd7e816b74d0d52b8145954c5e6fd3ff37
MD5 943d26b47a5ed676930e31a875d740fd
BLAKE2b-256 48f0615c30622316496d2cbbc29f5985f7777d3ada70f23370608c1d3e081c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 2ad890caa1d928c7c2965b48f3a3815c853180831d0e5503d35cf00c472f4717
MD5 f4da862b563606811998713023e24137
BLAKE2b-256 92f71d4ec5841505f423469efbfc381d64b7b467438cd5a4bbcbb063f3b73d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f8b465489f927b0df505cbe26ffbeed4d6d8a2bbc61ce90eb074ff129ef0ab1
MD5 0870562962991bc50af9ec9a604c75af
BLAKE2b-256 9413630690fe201f5502d2403dd3cfd451ed8858fe3c738ee88d095ad2ff407b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e35b88984e7fa64aacecea39236cee32dd9bd8c55f57ba8a75cf2399553f9bd7
MD5 6e06af6e70768fbdc8ef2bfa16f14513
BLAKE2b-256 2a4226746ab087faa77c1c68079b228810436ccd9a5ce9ac85e2b7307195fd06

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 41a89040cb10bd345b3c1a873b2bf36413d48da1def52f268a055f7398514874
MD5 5803512ae5ace5e27a878f14507804d5
BLAKE2b-256 4a653d4b61f36af2b4eddba9def857959f1016a51066b4f1ce348e0cf7881f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17612831fda0138059cc5546f4d12a2aacfb9e47068c06af35c400ba58ba7393
MD5 c33ce8c802bda0e8c09b2eaeb06e0374
BLAKE2b-256 7a711f9e22eb8b8316701c2a19fa1f388c8a3185082607da8e406a803c9b954e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 564d9f0d4d9509e1a870c920a89b2fec951b44bf5ba7d537a9e7c1ccec2c18af
MD5 c6933b2786e46eff8790439f6a3023d6
BLAKE2b-256 2d18cd28081658ce597898f0c4d174d4d0f3c5b6d4dc27ffafeef835c95eb359

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a78372c932c90ee474559c5ddfffd718238e8673c340dc21fe45c5b8b54559a0
MD5 014e1ce1726bab57dfef07477b1d220a
BLAKE2b-256 070c01f2219d39f7e53d52e5173bcb09c976609ba30209912a0680adfb8c593a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 af223b406d6d000830c6f65f1e6431783fc3f713ba3e6cc8c024d5ee96170a4b
MD5 70c46ac0d3481506f5ac99980ffa31b3
BLAKE2b-256 361dfc272a63c8d3bbad6878c336c7a7dea15e8f2d23a544bda43205dfa83ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c07fda85708bc48578467e85099645167a955ba093be0a2dcba962195676e859
MD5 86985a1f743cb6387a563df89d69ca77
BLAKE2b-256 b4c186f846827fb969c4b78b0af79bba1d1ea2156492e1b83dea8b8a6ae27395

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f95393b4d66bfae908c3ca8d169d5f79cd65636ae15b5e7a4f6e67af675adb0e
MD5 665e2d14e2e8a5bf9b0b7f30925f94c1
BLAKE2b-256 f4045b4c54a103d480e978d3c8a76073502b18db0c4bc17ab91b3cb5092ad949

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0ef0aaafc66fbd87842a3fe3902fd889825646bc21149eafe47be6072725835
MD5 c52cffccfd19f59401e0369d15f8737a
BLAKE2b-256 f4bfb1d5e21dbc3b2e889ea4327044fb16312a736d97640fb8b6aa3f9c7b3b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 473c61b39e1460d386479b9b2f337da492042447c9b685f28be4f74d3529e566
MD5 2c3a22fe9d80b596c59cdfece2d9ed77
BLAKE2b-256 259c442a45a470a68456e710d96cacd3573ef26a1d0a60067e6a7d5e655621ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 92d1935ee1f8d7442da9c0c4fa7ac20d07e94064184811b685f5c4fada64553b
MD5 ef1f3e51fc8f3b77b3e551b9633a2ebd
BLAKE2b-256 83cea31bbdfc24ee0dcbba458c8175ed26089cf109a55bbe7b7640ed2470cfe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8873eb4460fd55333ea49b7d189749ecf6e55bf85080f11b1c4530ed3034cba1
MD5 8688fe77e96f01208d7fd5a2e1c228bf
BLAKE2b-256 591be71ae98235f8e2ba5004d8cb19765a74877abf189bc53fc0c80d799e56c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 381914df18634f5494334d201e98245c0596067504b9372d8cf93f4bb23e025e
MD5 b3919d237728f7f06029764ff449bcf0
BLAKE2b-256 f5abf76ec3c3627c883215b5c8080debb4394ef5a7a29be811f786415fc1e6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bcc9aaa5d80322bc2fb24bb7accb4a30f81e90ab8d6ba187aec0744bc302ad81
MD5 d59de6704f4712148e505cd544c11437
BLAKE2b-256 9389caa9089970ca49c7c01662bd0eeedfe85494e863e8043565aeb6472ce8fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a0bd56e5b100aef69bd8562b74b46254e7c8812918d3baa700c8a8009b0af66
MD5 20f5b28d7129aacad7753ae5f4572198
BLAKE2b-256 e2398163fc6f3133fea7b5f2827e8eba2029a0277ab2c5beee6c1db7b10fc23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 501d20b891688eb8e7aa903021f0b72d5a55db40ffaab27edefd1027caaafa61
MD5 94b0ba817914ed225d3058610755184b
BLAKE2b-256 d6e3fa846bd70f6534d647886621388f0a265254d30e3ce47e5c8e6e27dbf153

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 580e97762b950f993ae618e167e7be9256b8353c2dcd8b99ec100eb50f5286aa
MD5 fcc71a579682451f5e7c07bd430f2f8e
BLAKE2b-256 f66cf38ab64af3764f431e359f8baf9e0a21013e24329e8b85d2da32e8ed07ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee17f18d2498f2673e432faaa71698032b0127ebf23ae5974eeaf806c279df24
MD5 db65cd90551b02652db36fe190b3e849
BLAKE2b-256 3eecd8a7cd406ee1ddb705db2139f8a10a8a427100347bd698e7014351c7af09

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d3df5fa7e36b3225954fba85589da77a0fe6a53e3976de39caf04a0db4c36f1
MD5 6559277e33d2879702dec03122bf73e3
BLAKE2b-256 50a64282772fd016a76d3e5c0df58380a5ea64900afd836cec2c2f662d1b9bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d472aeb4fbf9865e0c6d622d7f4d54a4e101a89715d8904282bb5f9a2f476c3f
MD5 78d6204e97157f63da1bd556f7ffa500
BLAKE2b-256 f18b544bc867e24e1bd48f3118cecd3b05c694e160a168478fa28770f22fd094

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 678ae89ebc632c5c204c794f8dab2837c5f159aeb59e6ed0539500400577298c
MD5 ba4307b2db3af223d8bd5a9125d21f66
BLAKE2b-256 303e49861e90233ba36890ae0ca4c660e95df565b2cd15d4a68556ab5865974e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd0858c20f078a32cf55f7e81473d96dcf3b93fd2ccdb3d40fdf54b8573df3af
MD5 f05bcbd33601d6cfdb4f75fd91134053
BLAKE2b-256 c60ccd762dd011a9287389a6a3eb43aa30207bde253610cca06824aeabfe9653

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 333ddb9031d2704a301ee3e506dc46b1fe5f294ec198ed6435ad5b6a085facfe
MD5 58e431bb4aff2091ae24d1a61dd1d8a3
BLAKE2b-256 2d48c5ac64dee5262044348d1d78a5f85dd1a57464a60d30daee946699963eb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cae65ad55793da34db5f54e4029b89d3b9b9490d8abe1b4c7ab5d4b8ec7ebf74
MD5 4d02264bec3196c320bb84e3534b9b75
BLAKE2b-256 89a492380f7ca60f99ebae761936bc48a72a639e8a47b29050615eef757cb2a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d62cdfcfd89ccb8de04e0eda998535c406bf5e060ffd56be6c586cbcc05b3311
MD5 2288abb3c36508861873730063732d20
BLAKE2b-256 8be8677a0025e8a2acf07d3418a2e7ba529c9c33caf09d3c1f25513023c1db56

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 43eedf29202c08550aac1d14e0ee619b0430aaef78f85864c1a892294fbc28cf
MD5 a89dfb9ef80ad45d4d23107ee1995002
BLAKE2b-256 bfdf6d9c1b6ac12b003837dde8a10231a7344512186e87b36e855bef32241942

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 204483131fb222bdaaeeea9f9e6c6ed0cac32731f75dfc1d4a567fc1926477c1
MD5 fc463e3d0a1a76945b66842e80647eea
BLAKE2b-256 68ab6b5c191bb5de08036a8c697b265d4ca76148efb10fa162f14af14fb5f076

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb2d222e72399fcf5890d1d5cc1060857b9b236adff2792ff48ca2dfd46c81db
MD5 674d6cce5f72c29618c41e510c5a9c85
BLAKE2b-256 5409d19cff2a5aaac632ec8fc03737b223597b1e347416934c1b3a7df079784c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 671538c2262dadb5ba6395e26c1731e1d52534bfe9ae56d0b5573ce539266aa8
MD5 acda765723234a530aaf1ed57fa7d8c3
BLAKE2b-256 809ee7b85720b98c45a45e1fca6a177024934dc9bc5f4d5dd04207f216fc33ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35c3277624a080cc6ec6f847cbbbb5b49affa3598c4535a0a4682a697aaa5c75
MD5 53b88567ea84b1bf4dacb1ce22a58bc1
BLAKE2b-256 8f189c6b015dd9c6930f6ce2229e1f02fb35298b847f2087ea2b436a5bfa7287

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cfc27c945f422e8b5071b6e93169679e4eb5bf73bbcbf1ba3ae3a83d2f78ebd9
MD5 250d1083eb1a731f0a6acdb5d24293ed
BLAKE2b-256 c4ee542f1313aff7eaf19c2bb758c5d0560d2683dac001a1c96d0774af799843

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4d7af63f9f93fe593afbf104c21b3b15868efb2c21d07d8732c0c4287e66b6a6
MD5 ded2886c84a966261f2432f3d905d0dc
BLAKE2b-256 5774f580099a58c8af587cac7ba19ee7cb418506342fbbe2d4a4401661cca886

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab08df6c9a035bee56e31af99be621526bd237bea9f32def431c656b29e41778
MD5 2e53b366608f0b3528cbd8158ceeed99
BLAKE2b-256 f163b7b215eddeac83ca1c6b934f89d09a625aa9ee4ba158338854c87210cc36

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 031dce78b9dc099f4c29785d9cf5577a3faf9ebf74ecbd3c856a7b92768c3df3
MD5 9c5ab37e114cbb562f3ead3e1e48f0e6
BLAKE2b-256 6ea58a5e8678bcc9d3a1a15b9a29165640d64762d424a16af543f00629c87338

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15932ab57837c3368b024473a525e25d316d8353016e7cc0e5ba9eb343fbb1cf
MD5 d43732b317316bde26e8a2fde7859eb5
BLAKE2b-256 464b3aae6835b8e5f44ea6a68348ad90f78134047b503765087be2f9912140ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0013cb6f8dde4b2a2f66903b8ba740bdfe378c943c4377a200551ceb27f379e4
MD5 cead7cced523d40f15d73fc5e5f93f18
BLAKE2b-256 20e1ce4620633b0e2422207c3cb774a0ee61cac13abc6217763a7b9e2e3f4a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 405aac25c6394ef275dee4c709be43745d36674b223ba4eb7144bf4d691b7367
MD5 45605b2558ac97466b6377e8fbbde608
BLAKE2b-256 015d1c53f4563490b1d06a684742cc6076ef944bc6457df6051b7d1a877c057b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec17c65562a827bba85e3872ead335f95405ea1674860d96483a02f5c698fa72
MD5 b7d114d670db034590b0de1d509302ad
BLAKE2b-256 9ed36c7ee328b39a81ee877c962469f1e795f9db87f925251efeb0545e0020d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f048da1b4f243fc44f205dfd320933a951b8d89e0afd4c7cacc762a8b9165207
MD5 7210890f4ff9e96515c3160b10d801b0
BLAKE2b-256 0ab65c9a0e42df4d00bfb4a3cbbe5cf9f54260300c88a0e9af1f47ca5ce17ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd547953428f7abb73c5ad82cbb32109566204260d98e41e5dfdc682eb7f8403
MD5 a55152eb72c077ea96a828a2b4af3782
BLAKE2b-256 76478ccf75935f51448ba9a16a71b783eb7ef6b9ee60f5d14c7f8a8a79fbeed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e153e9cd40cc8945138822807139367f256f89c6810c2634a4f6902b52d3b4e2
MD5 20c810ba7d65df6d6d58790919e2eb58
BLAKE2b-256 a20ff17b1b2b221d5ca28b4b876e8bb046ac40466513960646bda8e1853cdfa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e53f3a38d3510c11953f3e6a33f205c6d1b001129f972805ca9b42fc308bc239
MD5 dd024f350ecee745b8f9c8ee8f6bcad6
BLAKE2b-256 9ce9754f180cccd7f51a39913782c74717c581b9cc8177ad0e949f4d51812383

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 364426a62660f3f699949ac8c621aad6977be7126c5807ce48c0aeb8e7333ea6
MD5 5efb05d59de05cd71026991ab67c2992
BLAKE2b-256 f4786cce448e2098e9f3bfc91bb877f06aa24b6ccace872e39c53b2f707c4648

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f1d2f90aeec838a52f1c1a32fe9a619fefd5e411721a9117fbf82aea638fe8a1
MD5 b7003c3aa9cee29896b3d42c770d87e9
BLAKE2b-256 61b0b2631c19793f869d35f47d5a3a56fb19e9160d3c119f15ac7344fc3ccae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 981333cb2f4c1896a12f4ab92a9cc8f09ea664e9b7dbdc4eff74627af3a11c0f
MD5 d6ba7fe9ba1f0ee900b7ff2d766eb200
BLAKE2b-256 79373ec3f7e3173e73f1d600495d8b545b53802cbf35506e5732dd8578db3724

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e9b0d8d0845bbc4cfcdcbcdbf5086886bc8157aa963c31c777ceff7846c77757
MD5 ca9d15a8377961f5375765a960f50998
BLAKE2b-256 8489fd108ba7815c1117ddca79c228f3f8a15fc82a73bca8b142eb5de13b2785

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f10207adf04d08bec185bae14d9606a1444715bc99180f9331c9c02093e1959e
MD5 8cdb35938ddb22f16ab8e44adca2e638
BLAKE2b-256 f2267f00bd6bd1adba5aafe5f4a66390f243acab58eab24ff1a08bebb2ef9d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67fad6162281e80e882fb3ec355398cf72864a54069d060321f6cd0ade95fe85
MD5 d796eadfdac5fc61e13ff657b71d03f8
BLAKE2b-256 9ef891c27b22ccda1dbc7967f921c42825564fa5336a01ecd72eb78a9f4f53c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc38cba02d1acba4e2869eef1a57a43dfbd3d49a59bf90dda7444ec2be6a5570
MD5 6f7c1af0076437c724bf3c5fa21dd4cb
BLAKE2b-256 40e227e6feebb5f6b8408fa29f5efbb765cd54c153ac77314d27e457a3e993b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd6f30fdcf9ae2a70abd34da54f18da086160e4d7d9251f81f3da0ff84fc5a48
MD5 a0cbf7ba3bfb8047cd1f49500e48a07e
BLAKE2b-256 526a57f43e054fb3d3a56ac9fc532bc684fc6169a26c75c353e65425b3e56eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2bb07ffd7eaad486576430c89f9b215f9e4be68c4866a96e97db9e97fead85dc
MD5 48e0834550601a161d418b77f666a554
BLAKE2b-256 46a60ab4f660eb59649d14b3d3d65c439421cf2f87fe5dd68591cbe3c1e78a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a9695397f85973bb40427dedddf70d8dc4a44b22f1650dd4af9eedf443d45165
MD5 16aa985b5d30b690ce5c328b48c77940
BLAKE2b-256 56b98fa98f850960b367c4b8fe0592e7fc341daa7a9462e925228f10a60cf74f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d902a36df4e5989763425a8ab9e98cd8ad5c52c823b34ee7ef307fd50582566
MD5 c6de66ca632df8788dd86e57f3043754
BLAKE2b-256 581a3c62c127a8466c9c843bccb503d40a273e5cc69838805f322e2826509e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6918ecbd897443087a3b7cd978d56546a812517dcaaca51b49526720571fa93e
MD5 92be1f254b55ae117dd24a1e0da475c7
BLAKE2b-256 d31d11605e99ac8ea9435651ee71ab4cb4bf03f0949586246476a25aadfec54a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c30b53e7e6bda1d547cabb47c825f3843a0a1a42b0496087bb58d8fedf9f41b5
MD5 850f37a1848f520ff5e0e6bccd299dfc
BLAKE2b-256 c221d7b68e911f9c8e18e4ae43bdbc1e1e9bbd971f8866eb81608947b6f585ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 60a8fda9644b7dfd5dece8c61d8a85e271cb958075bfc4e01083c148b61a7caf
MD5 4b413eb1d242995b753e3936d9555b1b
BLAKE2b-256 8cd44e2c9aaf7ac2242b9358f98dccd8f90f2605402f5afeff6c578682c2c491

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d82ad62b19645419fe79dd63b3f9253e15b30e955c0170e5cebc350c1844e581
MD5 d3adbf7f8c249e28b0f018068c5177d7
BLAKE2b-256 e0e174e55b9fd1a4c209ff1a9a824bf6c8b3d1fc5a1ac3eabe23462637466785

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1cdb7988c4e5ac7f6d175a28a9aa0c94cb6f2ebe52756a3c0cda98d2809a9e37
MD5 e8c2dce33e00b0708e26fb9ba9b68f62
BLAKE2b-256 a667354aac4e0603a15f76439caf0427781bcd6797f370377f75a642133bc954

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for propcache-0.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a0ee98db9c5f80785b266eb805016e36058ac72c51a064040f2bc43b61101cdb
MD5 7344e9fa140424f98c5a5099a8f8b92a
BLAKE2b-256 ecb61f237c04e32063cb034acd5f6ef34ef3a394f75502e72703545631ab1ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f93243fdc5657247533273ac4f86ae106cc6445a0efacb9a1bfe982fcfefd90c
MD5 06c8307f3c3264526cdb260894374640
BLAKE2b-256 cf815abec54355ed344476bee711e9f04815d4b00a311ab0535599204eecc257

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c9b3cbe4584636d72ff556d9036e0c9317fa27b3ac1f0f558e7e84d1c9c5900
MD5 130ae2452f516db3091137c52f3c959f
BLAKE2b-256 8a0b38b46208e6711b016aa8966a3ac793eee0d05c7159d8342aa27fc0bc365e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fd138803047fb4c062b1c1dd95462f5209456bfab55c734458f15d11da288f8f
MD5 24489053dffcfaa1928ea09635d7dae1
BLAKE2b-256 30eeab4d727dd70806e5b4de96a798ae7ac6e4d42516f030ee60522474b6b332

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f0978529a418ebd1f49dad413a2b68af33f85d5c5ca5c6ca2a3bed375a7ac60
MD5 ca22166205b053bbc3b145482b5c4923
BLAKE2b-256 d52162949eb3a7a54afe8327011c90aca7e03547787a88fb8bd9726806482fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 296f4c8ed03ca7476813fe666c9ea97869a8d7aec972618671b33a38a5182ef4
MD5 8f31126277c0a03b8df2192dbb97ea29
BLAKE2b-256 42df5615fec76aa561987a534759b3686008a288e73107faa49a8ae5795a9f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b16ec437a8c8a965ecf95739448dd938b5c7f56e67ea009f4300d8df05f32b7
MD5 77921f020bd87193008ce1cd216fbe45
BLAKE2b-256 08578c87e93142b2c1fa2408e45695205a7ba05fb5db458c0bf5c06ba0e09ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9d2b6caef873b4f09e26ea7e33d65f42b944837563a47a94719cc3544319a0db
MD5 0bb5e380d170d993cf07a752766371d1
BLAKE2b-256 a1c8038d909c61c5bb039070b3fb02ad5cccdb1dde0d714792e251cdb17c9c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5d4e2366a9c7b837555cf02fb9be2e3167d333aff716332ef1b7c3a142ec40c5
MD5 7aa49a534db1718bf5fa9b6d8e7f20fa
BLAKE2b-256 5b01f1d0b57d136f294a142acf97f4ed58c8e5b974c21e543000968357115011

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a52009f2adffe195d0b605c25ec929d26b36ef986ba85244891dee3b294df21
MD5 5bed9f162f115d5ce0d4af89eb33b334
BLAKE2b-256 df1b39313ddad2bf9187a1432654c38249bab4562ef535ef07f5eb6eb04d0b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66c1f011f45a3b33d7bcb22daed4b29c0c9e2224758b6be00686731e1b46f925
MD5 7049aa14d77c9991a759ed45053dd6a0
BLAKE2b-256 e4c382728404aea669e1600f304f2609cde9e665c18df5a11cdd57ed73c1dceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1eb2994229cc8ce7fe9b3db88f5465f5fd8651672840b2e426b88cdb1a30aac8
MD5 0d23cd76c39dc03f803494029f2e4a28
BLAKE2b-256 a16bdb0d03d96726d995dc7171286c6ba9d8d14251f37433890f88368951a44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.4.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c2d1fa3201efaf55d730400d945b5b3ab6e672e100ba0f9a409d950ab25d7db
MD5 66d3531a16b8f2ebb027162ca26400b6
BLAKE2b-256 3c0e934b541323035566a9af292dba85a195f7b78179114f2c6ebb24551118a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-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.

File details

Details for the file propcache-0.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: propcache-0.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 38.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for propcache-0.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5fd37c406dd6dc85aa743e214cef35dc54bbdd1419baac4f6ae5e5b1a2976938
MD5 a2c59fe03b7e42a01ed4535c363adee8
BLAKE2b-256 fc2ab0632941f25139f4e58450b307242951f7c2717a5704977c6d5323a800af

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: propcache-0.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for propcache-0.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 948dab269721ae9a87fd16c514a0a2c2a1bdb23a9a61b969b0f9d9ee2968546f
MD5 83914277b289b1de1fd2221c2d249863
BLAKE2b-256 a445d78d136c3a3d215677abb886785aae744da2c3005bcb99e58640c56529b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: propcache-0.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 38.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for propcache-0.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a129e76735bc792794d5177069691c3217898b9f5cee2b2661471e52ffe13f19
MD5 dd7831fa6fceb2131e260506247051bd
BLAKE2b-256 6e3f3fbad5f4356b068f1b047d300a6ff2c66614d7030f078cd50be3fec04228

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99d43339c83aaf4d32bda60928231848eee470c6bda8d02599cc4cebe872d183
MD5 73d3b0d81a6c4eff11c05596a5c31810
BLAKE2b-256 c34ef86a256ff24944cf5743e4e6c6994e3526f6acfcfb55e21694c2424f758c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fe49d0a85038f36ba9e3ffafa1103e61170b28e95b16622e11be0a0ea07c6781
MD5 1e88635725b3978d3643126d9f124c57
BLAKE2b-256 067da1fac863d473876ed4406c914f2e14aa82d2f10dd207c9e16fc383cc5a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0002004213ee1f36cfb3f9a42b5066100c44276b9b72b4e1504cddd3d692e86e
MD5 68d7d95e9cfb1de34e6ed5c61158d331
BLAKE2b-256 2489e0f7d4a5978cd56f8cd67735f74052f257dc471ec901694e430f0d1572fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71b749281b816793678ae7f3d0d84bd36e694953822eaad408d682efc5ca18e0
MD5 6f80d8c4f7e3a8c4b6263ea4e4942cc0
BLAKE2b-256 60b50516b563e801e1ace212afde869a0596a0d7115eec0b12d296d75633fb29

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daede9cd44e0f8bdd9e6cc9a607fc81feb80fae7a5fc6cecaff0e0bb32e42d00
MD5 ece47affa0ec42c3ad314ec51403b09d
BLAKE2b-256 1d9448dce9aaa6d8dd5a0859bad75158ec522546d4ac23f8e2f05fac469477dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd2dbc472da1f772a4dae4fa24be938a6c544671a912e30529984dd80400cd88
MD5 412367a4d178889d3768ae33da27617d
BLAKE2b-256 b3ee14de81c5eb02c0ee4f500b4e39c4e1bd0677c06e72379e6ab18923c773fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db65d2af507bbfbdcedb254a11149f894169d90488dd3e7190f7cdcb2d6cd57a
MD5 59a6e2b4938b0206088338949eb04a1b
BLAKE2b-256 a592c699ac495a6698df6e497fc2de27af4b6ace10d8e76528357ce153722e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4b536b39c5199b96fc6245eb5fb796c497381d3942f169e44e8e392b29c9ebcc
MD5 9fc032f9adae39c8d1697817cea91681
BLAKE2b-256 71690b2a7a5a6ee83292b4b997dbd80549d8ce7d40b6397c1646c0d9495f5a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 182b51b421f0501952d938dc0b0eb45246a5b5153c50d42b495ad5fb7517c888
MD5 37559d88f10f1b7305e3ded2e0fb4a4e
BLAKE2b-256 b30f317048c6d91c356c7154dca5af019e6effeb7ee15fa6a6db327cc19e12b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbc3b6dfc728105b2a57c06791eb07a94229202ea75c59db644d7d496b698cac
MD5 d0c20cc305a1b1a322415056a6c5490a
BLAKE2b-256 7c19b65d98ae21384518b291d9939e24a8aeac4fdb5101b732576f8f7540e834

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 357f5bb5c377a82e105e44bd3d52ba22b616f7b9773714bff93573988ef0a5fb
MD5 0013f25a5aad7a5a4bbdcffecd7a89db
BLAKE2b-256 345804af97ac586b4ef6b9026c3fd36ee7798b737a832f5d3440a4280dcebd3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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.4.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.4.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3d233076ccf9e450c8b3bc6720af226b898ef5d051a2d145f7d765e6e9f9bcff
MD5 e9f911448ecb22fc645d97580bf6e5a6
BLAKE2b-256 9b010ebaec9003f5d619a7475165961f8e3083cf8644d704b60395df3601632d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.4.1-cp39-cp39-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