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.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.

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.3.1.tar.gz (43.7 kB view details)

Uploaded Source

Built Distributions

propcache-0.3.1-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

propcache-0.3.1-cp313-cp313t-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.13t Windows x86-64

propcache-0.3.1-cp313-cp313t-win32.whl (42.6 kB view details)

Uploaded CPython 3.13t Windows x86

propcache-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl (287.4 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp313-cp313t-musllinux_1_2_s390x.whl (290.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ s390x

propcache-0.3.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (291.4 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl (264.4 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

propcache-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl (262.7 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl (290.9 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.9 kB view details)

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

propcache-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (294.3 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.3 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (267.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

propcache-0.3.1-cp313-cp313t-macosx_10_13_x86_64.whl (47.8 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

propcache-0.3.1-cp313-cp313t-macosx_10_13_universal2.whl (82.6 kB view details)

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

propcache-0.3.1-cp313-cp313-win_amd64.whl (44.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

propcache-0.3.1-cp313-cp313-win32.whl (40.1 kB view details)

Uploaded CPython 3.13 Windows x86

propcache-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (226.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp313-cp313-musllinux_1_2_s390x.whl (230.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

propcache-0.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl (228.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (217.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

propcache-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (217.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (222.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (228.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

propcache-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (234.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (230.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (215.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (44.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

propcache-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

propcache-0.3.1-cp313-cp313-macosx_10_13_universal2.whl (77.9 kB view details)

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

propcache-0.3.1-cp312-cp312-win_amd64.whl (44.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

propcache-0.3.1-cp312-cp312-win32.whl (40.6 kB view details)

Uploaded CPython 3.12 Windows x86

propcache-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (241.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp312-cp312-musllinux_1_2_s390x.whl (246.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

propcache-0.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl (244.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (230.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

propcache-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (231.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (236.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

propcache-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (250.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (249.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (230.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (46.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

propcache-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl (46.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

propcache-0.3.1-cp312-cp312-macosx_10_13_universal2.whl (80.4 kB view details)

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

propcache-0.3.1-cp311-cp311-win_amd64.whl (45.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

propcache-0.3.1-cp311-cp311-win32.whl (40.9 kB view details)

Uploaded CPython 3.11 Windows x86

propcache-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (226.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp311-cp311-musllinux_1_2_s390x.whl (233.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

propcache-0.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl (230.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (217.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

propcache-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (215.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (222.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

propcache-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (240.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (241.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (221.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

propcache-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

propcache-0.3.1-cp310-cp310-win_amd64.whl (45.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

propcache-0.3.1-cp310-cp310-win32.whl (41.0 kB view details)

Uploaded CPython 3.10 Windows x86

propcache-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp310-cp310-musllinux_1_2_s390x.whl (213.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

propcache-0.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl (210.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp310-cp310-musllinux_1_2_i686.whl (200.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

propcache-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (198.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (203.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

propcache-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (219.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (220.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

propcache-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl (46.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

propcache-0.3.1-cp310-cp310-macosx_10_9_universal2.whl (80.2 kB view details)

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

propcache-0.3.1-cp39-cp39-win_amd64.whl (45.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

propcache-0.3.1-cp39-cp39-win32.whl (41.5 kB view details)

Uploaded CPython 3.9 Windows x86

propcache-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (210.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

propcache-0.3.1-cp39-cp39-musllinux_1_2_s390x.whl (218.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

propcache-0.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl (214.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

propcache-0.3.1-cp39-cp39-musllinux_1_2_i686.whl (204.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

propcache-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (202.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

propcache-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (208.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

propcache-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (209.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

propcache-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (223.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

propcache-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (224.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

propcache-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (209.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

propcache-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (199.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (46.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

propcache-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

propcache-0.3.1-cp39-cp39-macosx_10_9_universal2.whl (81.4 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.3.1.tar.gz
Algorithm Hash digest
SHA256 40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf
MD5 5e4ae92cad41df24bdcafeaca092004e
BLAKE2b-256 07c8fdc6686a986feae3541ea23dcaa661bd93972d3940460646c6bb96e21c40

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9a8ecf38de50a7f518c21568c80f985e776397b902f1ce0b01f799aba1608b40
MD5 553a8552875cbd06c120562026f62ba4
BLAKE2b-256 b8d3c3cb8f1d6ae3b37f83e1de806713a9b3642c5895f0215a62e1a4bd6e5e34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e7fb9a84c9abbf2b2683fa3e7b0d7da4d8ecf139a1c635732a8bda29c5214b0e
MD5 d18626976994b3bcae9a4a113dde8545
BLAKE2b-256 cb8f50ad8599399d1861b4d2b6b45271f0ef6af1b09b0a2386a46dbaf19c9535

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 359e81a949a7619802eb601d66d37072b79b79c2505e6d3fd8b945538411400d
MD5 d0a9578db3512a59dfd1ba20b357bde5
BLAKE2b-256 3e662e90547d6b60180fb29e23dc87bd8c116517d4255240ec6d3f7dc23d1926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17d1c688a443355234f3c031349da69444be052613483f3e4158eef751abcd8a
MD5 82c740d227b4736c5155c59f7ac4dd02
BLAKE2b-256 4a1fecd9ce27710021ae623631c0146719280a929d895a095f6d85efb6a0be2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e474fc718e73ba5ec5180358aa07f6aded0ff5f2abe700e3115c37d75c947e18
MD5 b5a2c7fa97d627a5b917a11cf0a67857
BLAKE2b-256 58702117780ed7edcd7ba6b8134cb7802aada90b894a9810ec56b7bb6018bee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87380fb1f3089d2a0b8b00f006ed12bd41bd858fabfa7330c954c70f50ed8757
MD5 073313d54bef5e8740cd98c17ddd5e40
BLAKE2b-256 b7d5ba91702207ac61ae6f1c2da81c5d0d6bf6ce89e08a2b4d44e411c0bbe867

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bef100c88d8692864651b5f98e871fb090bd65c8a41a1cb0ff2322db39c96c27
MD5 59913d846a4640bb0f9a6a7260a762cf
BLAKE2b-256 c2d7e6079af45136ad325c5337f5dd9ef97ab5dc349e0ff362fe5c5db95e2454

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19a06db789a4bd896ee91ebc50d059e23b3639c25d58eb35be3ca1cbe967c3bf
MD5 5112a4c82461eccebd3dcf50b11659f0
BLAKE2b-256 4b7491939924b0385e54dc48eb2e4edd1e4903ffd053cf1916ebc5347ac227f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f64d91b751df77931336b5ff7bafbe8845c5770b06630e27acd5dbb71e1931c
MD5 bb163d9166e79c55349fbc685d6a02f4
BLAKE2b-256 111c311326c3dfce59c58a6098388ba984b0e5fb0381ef2279ec458ef99bd547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d8e309ff9a0503ef70dc9a0ebd3e69cf7b3894c9ae2ae81fc10943c37762458
MD5 78bd4f7bf9fdcf320cafea1bfedb98af
BLAKE2b-256 3b4dbe5f1a90abc1881884aa5878989a1acdafd379a91d9c7e5e12cef37ec0d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5aed8d8308215089c0734a2af4f2e95eeb360660184ad3912686c181e500b2e7
MD5 68472bbafb7a7cb4052cccadfece12ae
BLAKE2b-256 39e6d51601342e53cc7582449e6a3c14a0479fab2f0750c1f4d22302e34219c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_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.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a17583515a04358b034e241f952f1715243482fc2c2945fd99a1b03a0bd77d6
MD5 b6d229790cb4a1e63b9f5303ef1919c1
BLAKE2b-256 408d090955e13ed06bc3496ba4a9fb26c62e209ac41973cb0d6222de20c6868f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e584b6d388aeb0001d6d5c2bd86b26304adde6d9bb9bfa9c4889805021b96de
MD5 a9f86657cb4c6143f4a8decbd1ae89b0
BLAKE2b-256 3e2f854e653c96ad1161f96194c6678a41bbb38c7947d17768e8811a77635a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b655032b202028a582d27aeedc2e813299f82cb232f969f87a4fde491a233f11
MD5 b8cd559715f0f1183dd8fe46a757cb52
BLAKE2b-256 572b8f61b998c7ea93a2b7eca79e53f3e903db1787fca9373af9e2cf8dc22f9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f011f104db880f4e2166bcdcf7f58250f7a465bc6b068dc84c824a3d4a5c94dc
MD5 63a312131e63c5b8290dfa7fca416bf8
BLAKE2b-256 879a87091ceb048efeba4d28e903c0b15bcc84b7c0bf27dc0261e62335d9b7b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fbe94666e62ebe36cd652f5fc012abfbc2342de99b523f8267a678e4dfdee3c
MD5 4a106e35d1bf4baedcce3ca78d1de6a6
BLAKE2b-256 4de55ef30eb2cd81576256d7b6caaa0ce33cd1d2c2c92c8903cccb1af1a4ff2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a444192f20f5ce8a5e52761a031b90f5ea6288b1eef42ad4c7e64fef33540b8f
MD5 ad4385bd85365c9af4ccbabed7dfb7b4
BLAKE2b-256 5aa80a4fd2f664fc6acc66438370905124ce62e84e2e860f2557015ee4a61c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 813fbb8b6aea2fc9659815e585e548fe706d6f663fa73dff59a1677d4595a037
MD5 ecd345bfc1e9f295ebee874b54f64e95
BLAKE2b-256 a62ca54614d61895ba6dd7ac8f107e2b2a0347259ab29cbf2ecc7b94fa38c4dc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3a02a28095b5e63128bcae98eb59025924f121f048a62393db682f049bf4ac24
MD5 da86b0ad05b068aaa1354f90a3315e63
BLAKE2b-256 cc274e0ef21084b53bd35d4dae1634b6d0bad35e9c58ed4f032511acca9d4d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a0a9898fdb99bf11786265468571e628ba60af80dc3f6eb89a3545540c6b0ef
MD5 9590a530d86855c9d646dfcd5c9ef081
BLAKE2b-256 35360bbabaacdcc26dac4f8139625e930f4311864251276033a52fd52ff2a274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aca63103895c7d960a5b9b044a83f544b233c95e0dcff114389d64d762017af7
MD5 75542fed38113d16e4f9ba191bf279f0
BLAKE2b-256 cda73664756cf50ce739e5f3abd48febc0be1a713b1f389a502ca819791a6b69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3bbecd2f34d0e6d3c543fdb3b15d6b60dd69970c2b4c822379e5ec8f6f621d5
MD5 4880a8abe94fc929cc101e585e305cfd
BLAKE2b-256 531bd3406629a2c8a5666d4674c50f757a77be119b113eedd47b0375afdf1b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cb5918253912e088edbf023788de539219718d3b10aef334476b62d2b53de53
MD5 65e9fe3d7bae5e13a16ee8e65fd56cd0
BLAKE2b-256 983702c9343ffe59e590e0e56dc5c97d0da2b8b19fa747ebacf158310f97a79a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05543250deac8e61084234d5fc54f8ebd254e8f2b39a16b1dce48904f45b744b
MD5 79d2d35208e6f7d148f639e21b073a85
BLAKE2b-256 186da008e07ad7b905011253adbbd97e5b5375c33f0b961355ca0a30377504ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cec3239c85ed15bfaded997773fdad9fb5662b0a7cbc854a43f291eb183179e
MD5 5825d0a8c62eba24f20c4ca0893d89a6
BLAKE2b-256 dba0d72da3f61ceab126e9be1f3bc7844b4e98c6e61c985097474668e7e52152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 975af16f406ce48f1333ec5e912fe11064605d5c5b3f6746969077cc3adeb120
MD5 8eb42d91c10641e559d8fc2e342fac08
BLAKE2b-256 455f3faee66fc930dfb5da509e34c6ac7128870631c0e3582987fad161fcb4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4114c4ada8f3181af20808bedb250da6bae56660e4b8dfd9cd95d4549c0962f7
MD5 e07f22853bd6afa10dac8d94b95cfe1e
BLAKE2b-256 3ea2018b9f2ed876bf5091e60153f727e8f9073d97573f790ff7cdf6bc1d1fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_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.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ced33d827625d0a589e831126ccb4f5c29dfdf6766cac441d23995a65825dcb
MD5 c2a30e3974f6663db482dca5cb401e3e
BLAKE2b-256 0df116e12c33e3dbe7f8b737809bad05719cff1dccb8df4dafbcff5575002c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d249609e547c04d190e820d0d4c8ca03ed4582bcf8e4e160a6969ddfb57b62e5
MD5 478184a162ca99bd446160fe69bc94f4
BLAKE2b-256 6237fc357e345bc1971e21f76597028b059c3d795c5ca7690d7a8d9a03c9708a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a34aa3a1abc50740be6ac0ab9d594e274f59960d3ad253cd318af76b996dd654
MD5 24c19861208a0c529f6f712482340caa
BLAKE2b-256 621ea0d5ebda5da7ff34d2f5259a3e171a94be83c41eb1e7cd21a2105a84a02e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a110205022d077da24e60b3df8bcee73971be9575dec5573dd17ae5d81751111
MD5 5a77b99d1987ec15ac5a497ad4b752c5
BLAKE2b-256 d1b5fe752b2e63f49f727c6c1c224175d21b7d1727ce1d4873ef1c24c9216830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dc1915ec523b3b494933b5424980831b636fe483d7d543f7afb7b3bf00f0c10f
MD5 76dd28acb2358f3b98f58474c0d5ccd3
BLAKE2b-256 6fd4c1adbf3901537582e65cf90fd9c26fde1298fde5a2c593f987112c0d0798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f1528ec4374617a7a753f90f20e2f551121bb558fcb35926f99e3c42367164b8
MD5 65b33d93a18d7a5a13a550c38e92cd69
BLAKE2b-256 5860f645cc8b570f99be3cf46714170c2de4b4c9d6b827b912811eff1eb8a412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88c423efef9d7a59dae0614eaed718449c09a5ac79a5f224a8b9664d603f04a3
MD5 a77170451efb5259e70beee6f11feee6
BLAKE2b-256 24bb3b1b01da5dd04c77a204c84e538ff11f624e31431cfde7201d9110b092b1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d2d5a0028d920738372630870e7d9644ce437142197f8c827194fca404bf03b
MD5 e9a3dd248e16072bf86dd4401c3a7aab
BLAKE2b-256 db19e777227545e09ca1e77a6e21274ae9ec45de0f589f0ce3eca2a41f366220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec314cde7314d2dd0510c6787326bbffcbdc317ecee6b7401ce218b3099075a7
MD5 a6d7a066763244fe5d52b5fb38a58dc7
BLAKE2b-256 a902ccbcf3e1c604c16cc525309161d57412c23cf2351523aedbb280eb7c9094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 feccd282de1f6322f56f6845bf1207a537227812f0a9bf5571df52bb418d79d5
MD5 326a29d4d7ed90c70fa023c1037de982
BLAKE2b-256 f7509fb7cca01532a08c4d5186d7bb2da6c4c587825c0ae134b89b47c7d62628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e4fe2a6d5ce975c117a6bb1e8ccda772d1e7029c1cca1acd209f91d30fa72815
MD5 032a79434f09b27daf9261767c64fbea
BLAKE2b-256 670c3e82563af77d1f8731132166da69fdfd95e71210e31f18edce08a1eb11ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1c4d24b804b3a87e9350f79e2371a705a188d292fd310e663483af6ee6718ee
MD5 bdb65e2488850ca8383c17eb9d104405
BLAKE2b-256 98a175f6355f9ad039108ff000dfc2e19962c8dea0430da9a1428e7975cf24b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 050b571b2e96ec942898f8eb46ea4bfbb19bd5502424747e83badc2d4a99a44e
MD5 e6569be907dac4c6cbbf46dd2d0595be
BLAKE2b-256 7c9c3b3942b302badd589ad6b672da3ca7b660a6c2f505cafd058133ddc73918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c5c7ab7f2bb3f573d1cb921993006ba2d39e8621019dffb1c5bc94cdbae81e8
MD5 6a82c2e87216a2e0fc5de89fd20e221b
BLAKE2b-256 c442817289120c6b9194a44f6c3e6b2c3277c5b70bbad39e7df648f177cc3634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 563f9d8c03ad645597b8d010ef4e9eab359faeb11a0a2ac9f7b4bc8c28ebef25
MD5 16bdb6542f366b51b2a6c43877e83098
BLAKE2b-256 3b4cf72c9e1022b3b043ec7dc475a0f405d4c3e10b9b1d378a7330fecf0652da

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0ab8cf8cdd2194f8ff979a43ab43049b1df0b37aa64ab7eca04ac14429baeb7
MD5 bc915407d945a314efb44c75716314d9
BLAKE2b-256 f1eb13090e05bf6b963fc1653cdc922133ced467cb4b8dab53158db5a37aa21e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_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.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2fe5c910f6007e716a06d269608d307b4f36e7babee5f36533722660e8c4a70
MD5 ad51a56fef94bf66aa6b8f3f8a0df790
BLAKE2b-256 0a060da53397c76a74271621807265b6eb61fb011451b1ddebf43213df763669

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa8efd8c5adc5a2c9d3b952815ff8f7710cefdcaf5f2c36d26aff51aeca2f12f
MD5 3b9956c9d8121bcac981e1fc02835780
BLAKE2b-256 d4b0911eda0865f90c0c7e9f0415d40a5bf681204da5fd7ca089361a64c16b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb6e0faf8cb6b4beea5d6ed7b5a578254c6d7df54c36ccd3d8b3eb00d6770277
MD5 363c603fa70136720ba10e5d109a760c
BLAKE2b-256 e8fd970ca0e22acc829f1adf5de3724085e778c1ad8a75bec010049502cb3a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09400e98545c998d57d10035ff623266927cb784d13dd2b31fd33b8a5316b85b
MD5 bd1ca5fbb3e62890b4793a877fac66fd
BLAKE2b-256 aebdc1e37265910752e6e5e8a4c1605d0129e5b7933c3dc3cf1b9b48ed83b364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89498dd49c2f9a026ee057965cdf8192e5ae070ce7d7a7bd4b66a8e257d0c976
MD5 f7f0dd66987cd79932da2a2bf9ec9bfb
BLAKE2b-256 1ad8f0c17c44d1cda0ad1979af2e593ea290defdde9eaeb89b08abbe02a5e8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f78eb8422acc93d7b69964012ad7048764bb45a54ba7a39bb9e146c72ea29723
MD5 5a0221500e2582b669c102a093a880b9
BLAKE2b-256 41aaca78d9be314d1e15ff517b992bebbed3bdfef5b8919e85bf4940e57b6137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9532ea0b26a401264b1365146c440a6d78269ed41f83f23818d4b79497aeabe7
MD5 d6fbb04b566e92375bf2e5113868da67
BLAKE2b-256 1d3a8a68dd867da9ca2ee9dfd361093e9cb08cb0f37e5ddb2276f1b5177d7731

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 58aa11f4ca8b60113d4b8e32d37e7e78bd8af4d1a5b5cb4979ed856a45e62005
MD5 322050473a3f283243f8e53460391520
BLAKE2b-256 546e30a11f4417d9266b5a464ac5a8c5164ddc9dd153dfa77bf57918165eb4ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71ebe3fe42656a2328ab08933d420df5f3ab121772eef78f2dc63624157f0ed9
MD5 2905b9e4954661249ee730d387512caa
BLAKE2b-256 065d3b921b9c60659ae464137508d3b4c2b3f52f592ceb1964aa2533b32fcf0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 61014615c1274df8da5991a1e5da85a3ccb00c2d4701ac6f3383afd3ca47ab0a
MD5 fac6d4b28dbc3033099497b1da9c1d38
BLAKE2b-256 9038ab17d75938ef7ac87332c588857422ae126b1c76253f0f5b1242032923ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e861ad82892408487be144906a368ddbe2dc6297074ade2d892341b35c59844a
MD5 092ee036284aed92904f5ec148aefe9f
BLAKE2b-256 7afd5283e5ed8a82b00c7a989b99bb6ea173db1ad750bf0bf8dff08d3f4a4e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0313e8b923b3814d1c4a524c93dfecea5f39fa95601f6a9b1ac96cd66f89ea0
MD5 35f6a89abf781aef8db5dafd078cd6cf
BLAKE2b-256 892d5f52d9c579f67b8ee1edd9ec073c91b23cc5b7ff7951a1e449e04ed8fdf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd39c92e4c8f6cbf5f08257d6360123af72af9f4da75a690bef50da77362d25f
MD5 d1bd9d8912437bd3c7acb3e5808dd8ab
BLAKE2b-256 98b8eb977e28138f9e22a5a789daf608d36e05ed93093ef12a12441030da800a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e19ea4ea0bf46179f8a3652ac1426e6dcbaf577ce4b4f65be581e237340420d
MD5 9f7f68eda5c1866e5e1d66433a389afb
BLAKE2b-256 f5f9233ddb05ffdcaee4448508ee1d70aa7deff21bb41469ccdfcc339f871427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f35c7070eeec2cdaac6fd3fe245226ed2a6292d3ee8c938e5bb645b434c5f256
MD5 5698cdeda273bcc063906b03f4961fa9
BLAKE2b-256 fac9e85aeeeaae83358e2a1ef32d6ff50a483a5d5248bc38510d030a6f4e2816

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1eb34d90aac9bfbced9a58b266f8946cb5935869ff01b164573a7634d39fbcb5
MD5 ed9166d0c1b685717f4e330d5e3eb9a1
BLAKE2b-256 aabf7b8c9fd097d511638fa9b6af3d986adbdf567598a567b46338c925144c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_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.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cdb0f3e1eb6dfc9965d19734d8f9c481b294b5274337a8cb5cb01b462dcb7e0
MD5 7efa846bc87bfcc56daa5520660eb3bd
BLAKE2b-256 e76466f2f4d1b4f0007c6e9078bd95b609b633d3957fe6dd23eac33ebde4b584

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6f1324db48f001c2ca26a25fa25af60711e09b9aaf4b28488602776f4f9a744
MD5 9ca9b7a516d7d42dabead68ff76c9b0c
BLAKE2b-256 59f94c0a5cf6974c2c43b1a6810c40d889769cc8f84cea676cbe1e62766a45f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b23c11c2c9e6d4e7300c92e022046ad09b91fd00e36e83c44483df4afa990073
MD5 617e6b7da2d34f6056d83fc0ff9634cb
BLAKE2b-256 8e66acb88e1f30ef5536d785c283af2e62931cb934a56a3ecf39105887aa8905

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a75801768bbe65499495660b777e018cbe90c7980f07f8aa57d6be79ea6f71da
MD5 fbb5f8bf562fdcf1295469d0a028fdbc
BLAKE2b-256 e2c8b649ed972433c3f0d827d7f0cf9ea47162f4ef8f4fe98c5f3641a0bc63ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43593c6772aa12abc3af7784bff4a41ffa921608dd38b77cf1dfd7f5c4e71371
MD5 b04086af25c8084c08dbea12a3e9479c
BLAKE2b-256 ce843db5537e0879942783e2256616ff15d870a11d7ac26541336fe1b673c818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f30241577d2fef2602113b70ef7231bf4c69a97e04693bde08ddab913ba0ce5
MD5 8f1daef14d046045a561cf202ce725d5
BLAKE2b-256 900f5a5319ee83bd651f75311fcb0c492c21322a7fc8f788e4eef23f44243427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47ef24aa6511e388e9894ec16f0fbf3313a53ee68402bc428744a367ec55b833
MD5 79d60fe558c1cb037229cb77fb9a11e3
BLAKE2b-256 310a49ff7e5056c17dfba62cbdcbb90a29daffd199c52f8e65e5cb09d5f53a57

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f6cc0ad7b4560e5637eb2c994e97b4fa41ba8226069c9277eb5ea7101845b42
MD5 d33d9438c876b2197a24649df255ff5d
BLAKE2b-256 79dd71aae9dec59333064cfdd7eb31a63fa09f64181b979802a67a90b2abfcba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d0dfdd9a2ebc77b869a0b04423591ea8823f791293b527dc1bb896c1d6f1136
MD5 952bceb0beaeb3af7e0352472ac94cbf
BLAKE2b-256 83c0ea5133dda43e298cd2010ec05c2821b391e10980e64ee72c0a76cdbb813a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2fce1df66915909ff6c824bbb5eb403d2d15f98f1518e583074671a30fe0c21e
MD5 d6a5e426ff7381a9605b5fe52bc5f3e7
BLAKE2b-256 edecad5a952cdb9d65c351f88db7c46957edd3d65ffeee72a2f18bd6341433e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4cf9e93a81979f1424f1a3d155213dc928f1069d697e4353edb8a5eba67c6259
MD5 71cf4db999cdc0f9c934c28d31fcae04
BLAKE2b-256 3ec3a90b773cf639bd01d12a9e20c95be0ae978a5a8abe6d2d343900ae76cd71

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9979643ffc69b799d50d3a7b72b5164a2e97e117009d7af6dfdd2ab906cb72cd
MD5 bcd15e95917501a127366b828c4c0ed0
BLAKE2b-256 17769632254479c55516f51644ddbf747a45f813031af5adcb8db91c0b824375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd6a55f65241c551eb53f8cf4d2f4af33512c39da5d9777694e9d9c60872f519
MD5 1170efd285ac8a9015d7ec2697198c12
BLAKE2b-256 a4bca82c5878eb3afb5c88da86e2cf06e1fe78b7875b26198dbb70fe50a010dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d219b0dbabe75e15e581fc1ae796109b07c8ba7d25b9ae8d650da582bed01b0
MD5 6df6da063e60001cbb49d4e293e0b633
BLAKE2b-256 197e2237dad1dbffdd2162de470599fa1a1d55df493b16b71e5d25a0ac1c1543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 319fa8765bfd6a265e5fa661547556da381e53274bc05094fc9ea50da51bfd46
MD5 38a1831cc180cfb217649b67d413e492
BLAKE2b-256 7ce44aeb95a1cd085e0558ab0de95abfc5187329616193a1012a6c4c930e9f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e64e948ab41411958670f1093c0a57acfdc3bee5cf5b935671bbd5313bcf229
MD5 f0d786a2ec7d2620f00e00d2495c943c
BLAKE2b-256 193b6c44fa59d6418f4239d5db8b1ece757351e85d6f3ca126dfe37d427020c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_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.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b9145c35cc87313b5fd480144f8078716007656093d23059e8993d3a8fa730f
MD5 6b4df60642e2e8ca26b28d62a6425fe5
BLAKE2b-256 9a8ae6e1c77394088f4cfdace4a91a7328e398ebed745d59c2f6764135c5342d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 967a8eec513dbe08330f10137eacb427b2ca52118769e82ebcfcab0fba92a649
MD5 48bf2e121d3f15188e181996b4ae26f4
BLAKE2b-256 ad6cd01f9dfbbdc613305e0a831016844987a1fb4861dd221cd4c69b1216b43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c66d8ccbc902ad548312b96ed8d5d266d0d2c6d006fd0f66323e9d8f2dd49be7
MD5 7443c1d6e421a22fd8fe5b895b7fa7fa
BLAKE2b-256 da6a29fa75de1cbbb302f1e1d684009b969976ca603ee162282ae702287b6621

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 730178f476ef03d3d4d255f0c9fa186cb1d13fd33ffe89d39f2cda4da90ceb71
MD5 f0ec0f083d9ce46e082f3b873018e07e
BLAKE2b-256 15430b8eb2a55753c4a574fc0899885da504b521068d3b08ca56774cad0bea2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4e89cde74154c7b5957f87a355bb9c8ec929c167b59c83d90654ea36aeb6180
MD5 518eb0adabdcec882f6573d0aeb7ba58
BLAKE2b-256 63bd88e98836544c4f04db97eefd23b037c2002fa173dd2772301c61cd3085f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f27785888d2fdd918bc36de8b8739f2d6c791399552333721b58193f68ea3e98
MD5 4a0256d4aaea0ff86a0b63abcc81d11c
BLAKE2b-256 2056e27c136101addf877c8291dbda1b3b86ae848f3837ce758510a0d806c92f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 603f1fe4144420374f1a69b907494c3acbc867a581c2d49d4175b0de7cc64566
MD5 330dcfab8fa9a5b6539f729a7131574a
BLAKE2b-256 6173d64abb7bb5d18880ecfac152247c0f1a5807256ea21e4737ce3019afffeb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f173bbfe976105aaa890b712d1759de339d8a7cef2fc0a1714cc1a1e1c47f64
MD5 0b4407d7d99aa9625d20d3c7df1e2c04
BLAKE2b-256 7b4ee332164372af66992c07b470448beb7e36ce7dba6a06c6c2b6131f112e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8638f99dca15b9dff328fb6273e09f03d1c50d9b6512f3b65a4154588a7595fe
MD5 d6089ae3400da869f728321d732d2ac6
BLAKE2b-256 673f0dd87220f61598b61b590a8b3562142ae475a9c0f694ee32bf97e4e41d44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ef2e4e91fb3945769e14ce82ed53007195e616a63aa43b40fb7ebaaf907c8d4c
MD5 f52ca7cd0fd8d1cdce0db35ac738f583
BLAKE2b-256 72c6fdb9e8ba161a4e12c75a7415cb99314cad195d3b8ae9d770783cec54001e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 069e7212890b0bcf9b2be0a03afb0c2d5161d91e1bf51569a64f629acc7defbf
MD5 f4e60b5cd729415bc1332717d2e08de7
BLAKE2b-256 c5b8bdfcb1170a7b8504226064d7c0b4deb61acbcc6bb2e754ee25fb36c1b72a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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.3.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a461959ead5b38e2581998700b26346b78cd98540b5524796c175722f18b0294
MD5 1ff8a2d184676533bf00620cb2aec446
BLAKE2b-256 6f4ec8ec771731f1b1e7d07bd8875f1d13c1564b5d60f7483624d021eaef5687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 916cd229b0150129d645ec51614d38129ee74c03293a9f3f17537be0029a9641
MD5 3e5369588a03b404ccf3c9fdd031f60d
BLAKE2b-256 ef715247a264b95e8d4ba86757cf9ad6a523d764bd4579a2d80007a2d4d2b0ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b303b194c2e6f171cfddf8b8ba30baefccf03d36a4d9cab7fd0bb68ba476a3d7
MD5 f67e51426bed87d6f44560114a3f2d54
BLAKE2b-256 23a92a2f8d93d8f526c35dd8dbbc4a1ac22a106712cd821e15e2a6530aea8931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82de5da8c8893056603ac2d6a89eb8b4df49abf1a7c19d536984c8dd63f481d5
MD5 b1b0cff21b5f9c083a72e9da243057c5
BLAKE2b-256 05fccb52a0caf803caff9b95b0a99e7c9c87f15b7e34ba0feebfd2572b49013d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64a956dff37080b352c1c40b2966b09defb014347043e740d420ca1eb7c9b908
MD5 0d76e16f4fb56169ffb787e97b1f9211
BLAKE2b-256 920a0cf77d0e984b7058019ffa5385b3efd6962cbd5340a8f278ae103032863a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_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.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27c6ac6aa9fc7bc662f594ef380707494cb42c22786a558d95fcdedb9aa5d035
MD5 3dac2156797964d0250baa1070923759
BLAKE2b-256 111aac0f757cc0babdc8217056fca85150066cf43bf11db9651e6b7d8e0646d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_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.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83be47aa4e35b87c106fc0c84c0fc069d3f9b9b06d3c494cd404ec6747544894
MD5 ba6edc54d6c0ffb1b651d6c7c39bb8af
BLAKE2b-256 ae7e3e3b36854e96be2e881bc6e87293d59c74dd734dd038dd4981474be44e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c3c3a203c375b08fd06a20da3cf7aac293b834b6f4f4db71190e8422750cca5
MD5 62810d5fd7f927b1ec92245fa9fba3f6
BLAKE2b-256 e5fcb1d1fdffbe1e0278ab535f8d21fc6b030889417714a545755bdd5ebe9bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c86e7ceea56376216eba345aa1fc6a8a6b27ac236181f840d1d7e6a1ea9ba5c
MD5 162c00de9824606d2452457067f1eb27
BLAKE2b-256 f3e288ad1c4c42861dd09b45924e468c42a1beb2c5267cb960b7a9f6af67dd04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 668ddddc9f3075af019f784456267eb504cb77c2c4bd46cc8402d723b4d200bf
MD5 92a1c423f14f15c79a5ce079f449f4a2
BLAKE2b-256 18c69a39b2646a71321815d8d616e890851af9fb327af7d1b9fdce7d2d8377ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.3.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed5f6d2edbf349bd8d630e81f474d33d6ae5d07760c44d33cd808e2f5c8f4ae6
MD5 399a2e80bc169436f121d7326d0a1542
BLAKE2b-256 aae14a782cdc7ebc42dfb44224dabf93b481395a0b6cbc9f0149785edbbab19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page