Skip to main content

propcache

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

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

Introduction

The API is designed to be nearly identical to the built-in functools.cached_property class, except for the additional under_cached_property class which uses self._cache instead of self.__dict__ to store the cached values and prevents __set__ from being called.

For full documentation please read https://propcache.readthedocs.io.

Installation

$ pip install propcache

The library is Python 3 only!

PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install propcache on another operating system where wheels are not provided, the the tarball will be used to compile the library from the source code. It requires a C compiler and and Python headers installed.

To skip the compilation you must explicitly opt-in by using a PEP 517 configuration setting pure-python, or setting the PROPCACHE_NO_EXTENSIONS environment variable to a non-empty value, e.g.:

$ pip install propcache --config-settings=pure-python=false

Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.

API documentation

The documentation is located at https://propcache.readthedocs.io.

Source code

The project is hosted on GitHub

Please file an issue on the bug tracker if you have found a bug or have some suggestion in order to improve the library.

Discussion list

aio-libs GitHub Discussions: https://github.com/aio-libs/propcache/discussions

Feel free to post your questions and ideas here.

Authors and License

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

It’s Apache 2 licensed and freely available.

Changelog

0.5.3

(2026-09-15)

Bug fixes

  • Fixed a possible crash in the C implementation of cached_property and under_cached_property on free-threaded Python, where a cached value could be freed by another thread while it was being read; errors raised while looking up the cache are now propagated on all builds, and the computed value is no longer leaked if storing it fails – by @bdraco.

    Related issues and pull requests on GitHub: #297.

Removals and backward incompatible breaking changes

  • Dropped support for free-threaded Python 3.13 – by @Vizonex.

    Related issues and pull requests on GitHub: #223.

Improved documentation

  • Updated discussion links from the defunct Google Groups forum to GitHub Discussions – by @gundalow.

    Related issues and pull requests on GitHub: #217.

Packaging updates and notes for downstreams

  • The setuptools build dependency lower bound has been restored to be >= 47 after an incorrect automated increase in PR #207 – by @bbhtt.

    Related issues and pull requests on GitHub: #207.

  • Dropped support for free-threaded Python 3.13 – by @Vizonex.

    Related issues and pull requests on GitHub: #223.

  • Dropped the deprecated License :: OSI Approved :: Apache Software License classifier; setuptools 84 warns about it and the dist build treats warnings as errors, so releases could no longer be built – by @bdraco.

    Related issues and pull requests on GitHub: #299.

Contributor-facing changes

  • Dependabot has been restricted to the requirements subdirectory to avoid unintended updates outside dependency requirement files – by @bbhtt.

    Related issues and pull requests on GitHub: #207.

  • Added an AGENTS.md file with contributor guidance for AI coding agents, adapted from the yarl equivalent – by @bdraco.

    Related issues and pull requests on GitHub: #231.

  • Migrated from standalone black and isort pre-commit hooks to ruff format and the ruff I lint rule, sharing a new [tool.ruff] config in pyproject.toml. ruff-check runs with --fix so import-order fixes apply on commit, and the orphan [isort] block in setup.cfg was removed – by @bdraco.

    Related issues and pull requests on GitHub: #232.

  • Switched the cibuildwheel build frontend to build[uv] so that uv provisions every build and test virtual environment in the wheel matrix. Test-dependency installation in particular drops from a multi-second pip install per ABI to a roughly sub-second uv resolve – by @bdraco.

    Related issues and pull requests on GitHub: #234.

  • Dropped the libffi-devel install from the cibuildwheel Linux before-all step. It was added in PR #75 so cffi could build from source during wheel testing; the current wheel-test chain no longer pulls in cffi, so the header package is dead weight – by @bdraco.

    Related issues and pull requests on GitHub: #236.

  • The type preciseness coverage report generated by MyPy is now uploaded to Coveralls and will not be included in the Codecov views going forward – by @aiolibsbot.

    Related issues and pull requests on GitHub: #239.

  • Switched CI/CD to tox-dev/workflow’s reusable-tox.yml driven by an in-tree tox.ini. The build, metadata-validation and lint (pre-commit, spellcheck-docs) jobs all run through the reusable workflow; mypy coverage uploads to Coveralls from a post-tox-job hook – by @bdraco.

    Related issues and pull requests on GitHub: #243.

  • Overrode CIBW_BUILD_FRONTEND=build for the QEMU-emulated odd-arch wheel matrix, since the pypa odd-arch container images do not ship uv preinstalled and the project’s pyproject.toml sets build-frontend = "build[uv]" – by @bdraco.

    Related issues and pull requests on GitHub: #246.

  • Allowed re-running the deploy job after a partial release failure: the Make Release step now skips when the GitHub Release already exists, and the PyPI publish step uses skip-existing so dists that were already uploaded on a prior attempt do not break the retry – by @bdraco.

    Related issues and pull requests on GitHub: #247.

  • Switched the aarch64 and armv7l wheel builds to GitHub’s native ARM runners. The aarch64 wheels now build without QEMU emulation, and armv7l runs on aarch64 hosts so its 32-bit ARM execution is far cheaper than the previous aarch64-on-x86_64 path – by @bdraco.

    Related issues and pull requests on GitHub: #248.

  • Added UV_CONSTRAINT and UV_BUILD_CONSTRAINT alongside PIP_CONSTRAINT and PIP_BUILD_CONSTRAINT in the cibuildwheel environment so the requirements/cython.txt pin is honored under the build[uv] frontend; uv pip ignores the PIP_ variables and reads only the UV_ ones, while the PIP_ variants are kept for the pip fallback path – by @bdraco.

    Related issues and pull requests on GitHub: #249.

  • Fixed coverage for testing benchmarks when codspeed is not installed – by @Vizonex.

    Related issues and pull requests on GitHub: #251.

  • Stopped running the test suite inside the wheel build jobs outside of release builds, since the test matrix installs and tests the same wheels, and added Python 3.15 and 3.15t to the test matrix so those wheels stay covered. Off-tag macOS builds are now limited to the architecture the test matrix runs on. Release builds still build every architecture and test every wheel, and all release checks in the CI workflow now use github.ref_type – by @bdraco.

    Related issues and pull requests on GitHub: #300.


0.5.2

(2026-05-08)

No significant changes.


0.5.1

(2026-05-08)

No significant changes.


0.5.0

(2026-05-08)

Features

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

    Related issues and pull requests on GitHub: #193.

Removals and backward incompatible breaking changes

  • Dropped support for Python 3.9 as it has reached end of life.

    Related issues and pull requests on GitHub: #216.

Packaging updates and notes for downstreams

  • Changed the Cython build dependency from ~= 3.1.0 to >= 3.2.0, removing the upper version bound to avoid conflicts for downstream packagers – by @jameshilliard and @gundalow.

    The upstream Cython version is pinned to 3.2.4 in the CI/CD environment.

    Related issues and pull requests on GitHub: #184, #188, #214.

  • Start building and shipping riscv64 wheels – by @justeph.

    Related issues and pull requests on GitHub: #194.

  • The PEP 517 build backend now supports a new build-inplace config setting (and PROPCACHE_BUILD_INPLACE environment variable) for controlling whether to build the project in-tree or in a temporary directory. It only affects wheels and is set up to build in a temporary directory by default. It does not affect editable wheel builds; they will keep being built in-tree regardless.

    Here’s an example of using this setting:

    $ python -m build --config-setting=build-inplace=true

    Additionally, when building wheels in an automatically created temporary directory, the build backend now normalizes the respective file system path to a deterministic source checkout directory by injecting the -ffile-prefix-map compiler option into the CFLAGS environment variable, as suggested by known reproducible build practices.

    The effect is that downstreams will get reproducible build results.

    Related issues and pull requests on GitHub: #218.


0.4.1

(2025-10-08)

Bug fixes

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

    Related issues and pull requests on GitHub: #162.

Contributor-facing changes

  • Fixes the default value for the os parameter in reusable-build-wheel.yml to be ubuntu-latest instead of ubuntu.

    Related issues and pull requests on GitHub: #155.


0.4.0

(2025-10-04)

Features

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

    Related issues and pull requests on GitHub: #121.

Contributor-facing changes

  • Builds have been added for arm64 Windows wheels and the reusable-build-wheel.yml workflow has been modified to allow for an OS value (windows-11-arm) which does not include the -latest postfix – by @finnagin.

    Related issues and pull requests on GitHub: #133.

  • Added CI for CPython 3.14 – by @kumaraditya303.

    Related issues and pull requests on GitHub: #140.


0.3.2

(2025-06-09)

Improved documentation

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

    Related issues and pull requests on GitHub: #109.

Packaging updates and notes for downstreams

  • Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.

    Related issues and pull requests on GitHub: #117.

  • Made Cython line tracing opt-in via the with-cython-tracing build config setting – by @bdraco.

    Previously, line tracing was enabled by default in pyproject.toml, which caused build issues for some users and made wheels nearly twice as slow.

    Now line tracing is only enabled when explicitly requested via pip install . --config-setting=with-cython-tracing=true or by setting the PROPCACHE_CYTHON_TRACING environment variable.

    Related issues and pull requests on GitHub: #118.


0.3.1

(2025-03-25)

Bug fixes

  • Improved typing annotations, fixing some type errors under correct usage and improving typing robustness generally – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #103.


0.3.0

(2025-02-20)

Features

  • Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #84.

Packaging updates and notes for downstreams

  • Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #84.

Contributor-facing changes

  • GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.

    Related issues and pull requests on GitHub: #93.


0.2.1

(2024-12-01)

Bug fixes

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 64df0a6.

  • Fixed wrapped and func not being accessible in the Cython versions of propcache.api.cached_property and propcache.api.under_cached_property decorators – by @bdraco.

    Related issues and pull requests on GitHub: #72.

Removals and backward incompatible breaking changes

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

    Related issues and pull requests on GitHub: #57.

Packaging updates and notes for downstreams

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 64df0a6.


0.2.0

(2024-10-07)

Bug fixes

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

    Related issues and pull requests on GitHub: #26.

Features

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

    Related issues and pull requests on GitHub: #38.

Improved documentation

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

    Related issues and pull requests on GitHub: #16.

Packaging updates and notes for downstreams

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

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

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

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

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


0.1.0

(2024-10-03)

Features

  • Added armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #5.


0.0.0

(2024-10-02)

  • Initial release.

Download files

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

Source Distribution

propcache-0.5.3.tar.gz (59.6 kB view details)

Uploaded Source

Built Distributions

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

propcache-0.5.3-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

propcache-0.5.3-cp315-cp315t-win_arm64.whl (45.4 kB view details)

Uploaded CPython 3.15tWindows ARM64

propcache-0.5.3-cp315-cp315t-win_amd64.whl (48.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

propcache-0.5.3-cp315-cp315t-win32.whl (45.7 kB view details)

Uploaded CPython 3.15tWindows x86

propcache-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl (72.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

propcache-0.5.3-cp315-cp315t-musllinux_1_2_s390x.whl (75.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

propcache-0.5.3-cp315-cp315t-musllinux_1_2_riscv64.whl (72.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

propcache-0.5.3-cp315-cp315t-musllinux_1_2_ppc64le.whl (73.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp315-cp315t-musllinux_1_2_armv7l.whl (66.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl (70.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

propcache-0.5.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (71.6 kB view details)

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

propcache-0.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.4 kB view details)

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

propcache-0.5.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (74.5 kB view details)

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

propcache-0.5.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (73.0 kB view details)

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

propcache-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (69.6 kB view details)

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

propcache-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl (63.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

propcache-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl (63.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

propcache-0.5.3-cp315-cp315t-macosx_10_15_universal2.whl (110.8 kB view details)

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

propcache-0.5.3-cp315-cp315-win_arm64.whl (43.2 kB view details)

Uploaded CPython 3.15Windows ARM64

propcache-0.5.3-cp315-cp315-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.15Windows x86-64

propcache-0.5.3-cp315-cp315-win32.whl (43.3 kB view details)

Uploaded CPython 3.15Windows x86

propcache-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl (70.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp315-cp315-musllinux_1_2_s390x.whl (73.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

propcache-0.5.3-cp315-cp315-musllinux_1_2_riscv64.whl (69.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp315-cp315-musllinux_1_2_ppc64le.whl (71.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp315-cp315-musllinux_1_2_armv7l.whl (63.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl (68.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.3 kB view details)

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

propcache-0.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.1 kB view details)

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

propcache-0.5.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.2 kB view details)

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

propcache-0.5.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (71.1 kB view details)

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

propcache-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.1 kB view details)

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

propcache-0.5.3-cp315-cp315-macosx_11_0_arm64.whl (61.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

propcache-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl (61.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

propcache-0.5.3-cp315-cp315-macosx_10_15_universal2.whl (106.3 kB view details)

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

propcache-0.5.3-cp314-cp314t-win_arm64.whl (45.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

propcache-0.5.3-cp314-cp314t-win_amd64.whl (48.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

propcache-0.5.3-cp314-cp314t-win32.whl (45.9 kB view details)

Uploaded CPython 3.14tWindows x86

propcache-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl (73.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

propcache-0.5.3-cp314-cp314t-musllinux_1_2_s390x.whl (75.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

propcache-0.5.3-cp314-cp314t-musllinux_1_2_riscv64.whl (72.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

propcache-0.5.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (74.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl (66.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl (71.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

propcache-0.5.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (72.2 kB view details)

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

propcache-0.5.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.9 kB view details)

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

propcache-0.5.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (75.1 kB view details)

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

propcache-0.5.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (73.5 kB view details)

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

propcache-0.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (70.1 kB view details)

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

propcache-0.5.3-cp314-cp314t-macosx_11_0_arm64.whl (64.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

propcache-0.5.3-cp314-cp314t-macosx_10_15_x86_64.whl (64.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

propcache-0.5.3-cp314-cp314t-macosx_10_15_universal2.whl (111.7 kB view details)

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

propcache-0.5.3-cp314-cp314-win_arm64.whl (43.2 kB view details)

Uploaded CPython 3.14Windows ARM64

propcache-0.5.3-cp314-cp314-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.14Windows x86-64

propcache-0.5.3-cp314-cp314-win32.whl (43.4 kB view details)

Uploaded CPython 3.14Windows x86

propcache-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl (70.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp314-cp314-musllinux_1_2_s390x.whl (73.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

propcache-0.5.3-cp314-cp314-musllinux_1_2_riscv64.whl (69.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp314-cp314-musllinux_1_2_ppc64le.whl (71.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl (63.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl (68.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.3 kB view details)

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

propcache-0.5.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.1 kB view details)

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

propcache-0.5.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.2 kB view details)

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

propcache-0.5.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (71.1 kB view details)

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

propcache-0.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.1 kB view details)

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

propcache-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (61.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

propcache-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl (61.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

propcache-0.5.3-cp314-cp314-macosx_10_15_universal2.whl (106.1 kB view details)

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

propcache-0.5.3-cp313-cp313-win_arm64.whl (42.2 kB view details)

Uploaded CPython 3.13Windows ARM64

propcache-0.5.3-cp313-cp313-win_amd64.whl (45.1 kB view details)

Uploaded CPython 3.13Windows x86-64

propcache-0.5.3-cp313-cp313-win32.whl (42.4 kB view details)

Uploaded CPython 3.13Windows x86

propcache-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl (70.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp313-cp313-musllinux_1_2_s390x.whl (73.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

propcache-0.5.3-cp313-cp313-musllinux_1_2_riscv64.whl (69.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp313-cp313-musllinux_1_2_ppc64le.whl (71.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl (63.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl (68.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.4 kB view details)

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

propcache-0.5.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.1 kB view details)

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

propcache-0.5.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.3 kB view details)

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

propcache-0.5.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (71.1 kB view details)

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

propcache-0.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.2 kB view details)

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

propcache-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (61.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

propcache-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl (61.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

propcache-0.5.3-cp313-cp313-macosx_10_13_universal2.whl (106.3 kB view details)

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

propcache-0.5.3-cp312-cp312-win_arm64.whl (42.9 kB view details)

Uploaded CPython 3.12Windows ARM64

propcache-0.5.3-cp312-cp312-win_amd64.whl (46.0 kB view details)

Uploaded CPython 3.12Windows x86-64

propcache-0.5.3-cp312-cp312-win32.whl (42.9 kB view details)

Uploaded CPython 3.12Windows x86

propcache-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (70.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp312-cp312-musllinux_1_2_s390x.whl (73.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

propcache-0.5.3-cp312-cp312-musllinux_1_2_riscv64.whl (70.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp312-cp312-musllinux_1_2_ppc64le.whl (71.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl (63.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl (68.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (69.6 kB view details)

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

propcache-0.5.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.3 kB view details)

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

propcache-0.5.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (72.4 kB view details)

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

propcache-0.5.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (71.3 kB view details)

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

propcache-0.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (67.4 kB view details)

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

propcache-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (62.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

propcache-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl (61.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

propcache-0.5.3-cp312-cp312-macosx_10_13_universal2.whl (107.6 kB view details)

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

propcache-0.5.3-cp311-cp311-win_arm64.whl (43.3 kB view details)

Uploaded CPython 3.11Windows ARM64

propcache-0.5.3-cp311-cp311-win_amd64.whl (46.1 kB view details)

Uploaded CPython 3.11Windows x86-64

propcache-0.5.3-cp311-cp311-win32.whl (42.5 kB view details)

Uploaded CPython 3.11Windows x86

propcache-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp311-cp311-musllinux_1_2_s390x.whl (70.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

propcache-0.5.3-cp311-cp311-musllinux_1_2_riscv64.whl (67.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp311-cp311-musllinux_1_2_ppc64le.whl (68.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl (61.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl (65.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (66.9 kB view details)

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

propcache-0.5.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (66.6 kB view details)

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

propcache-0.5.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (69.8 kB view details)

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

propcache-0.5.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (68.5 kB view details)

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

propcache-0.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (64.8 kB view details)

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

propcache-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

propcache-0.5.3-cp311-cp311-macosx_10_9_x86_64.whl (58.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

propcache-0.5.3-cp311-cp311-macosx_10_9_universal2.whl (101.9 kB view details)

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

propcache-0.5.3-cp310-cp310-win_arm64.whl (43.8 kB view details)

Uploaded CPython 3.10Windows ARM64

propcache-0.5.3-cp310-cp310-win_amd64.whl (46.4 kB view details)

Uploaded CPython 3.10Windows x86-64

propcache-0.5.3-cp310-cp310-win32.whl (42.9 kB view details)

Uploaded CPython 3.10Windows x86

propcache-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl (69.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

propcache-0.5.3-cp310-cp310-musllinux_1_2_s390x.whl (72.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

propcache-0.5.3-cp310-cp310-musllinux_1_2_riscv64.whl (69.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

propcache-0.5.3-cp310-cp310-musllinux_1_2_ppc64le.whl (70.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

propcache-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl (64.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

propcache-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl (66.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

propcache-0.5.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (68.7 kB view details)

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

propcache-0.5.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (68.7 kB view details)

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

propcache-0.5.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (71.6 kB view details)

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

propcache-0.5.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (69.6 kB view details)

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

propcache-0.5.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (66.0 kB view details)

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

propcache-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (61.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

propcache-0.5.3-cp310-cp310-macosx_10_9_x86_64.whl (61.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

propcache-0.5.3-cp310-cp310-macosx_10_9_universal2.whl (105.8 kB view details)

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

File details

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

File metadata

  • Download URL: propcache-0.5.3.tar.gz
  • Upload date:
  • Size: 59.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3.tar.gz
Algorithm Hash digest
SHA256 5f283fde8fd8b1944fd1a1bd11db759b55c5f190795668d5187d3e3b1165d98b
MD5 81a4b8b40e8118e5a4629420275599d4
BLAKE2b-256 a7a69e6708e2a34a43f1070246c8d0e773e315cc4fdb598a9cdb8ff7d0c450b2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 abcef8e75a2c324dabd46c842c17cb005ae968596a567e43dfd6ee074f9f907b
MD5 95ba4ebd0d0b1cc8debe05f3183cadff
BLAKE2b-256 5b0854e69cf685c73a2cac290a9684d9a148dc8cd22dffaa838dd969cba10e3a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 45.4 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 74f50a14ccc90bf5e544521783aafaf8081a21eeb24fbcb295ecb79d766a140e
MD5 1bfe47ae1a31e6afb99aaf62e4b1f39e
BLAKE2b-256 256e7abc3dc74992281778a4d17b9a9a2df2183d792b0c7be695822a95085e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-win_arm64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 48.4 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 09b5c52fec3f50ced0c5c810f02c1237d7c89a8f3f5345ad92c6a49faeafe6a9
MD5 1e3f01620270cff79dc3f841480d4762
BLAKE2b-256 7a2b386cdaa1283a2754e058f8d15abc2cc4d77def40b30a2bde470b8554e8e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-win_amd64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-win32.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 1102c4f4390e6a50f1960b8cb494007f08f5a139b39fd278925330e622b03ab8
MD5 25f6390f6078ce975ee96e188e4dae40
BLAKE2b-256 0dca51c5334a99a0c705a88338a416b0a41309c85a158ef96c60188634e334ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-win32.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc88c7b971999389dc5ceea90d8f346fb360888549e123644fc63b90dbd7f64f
MD5 710798ecdcda98b6fa02d672e53b9c94
BLAKE2b-256 a1f91e5db526cef0ba787260a175f658039e9f84c00172c8f5988f9c0abdc206

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 98bf605793ff20856a4bbc8af2e5ddbbf6cfefdf6b5cdc01587627a3e7057004
MD5 1c80241e531de51cb9e6d4542ed8f4ec
BLAKE2b-256 6d90f09606ca44cfcd8d4ce1e875ba2a338ad729935cf04f8a5bea7b75326a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 02729b64fea4ae4d9a5a9a94ba56f360978b1538bd347a81df19c3e5520d1ecb
MD5 43614a97edaa1bc90663f7bd3d43951e
BLAKE2b-256 8f838d0579ad27a269be0e42db3d0be6cbb4aa39c6e4c3f8a3c41d93282969e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b8149edcd93da046f6f1e3dad1df51c6257bef13f8171aec5b8aebbcba840f2e
MD5 ac292c5b1819aa41b46e03e1c3595c07
BLAKE2b-256 9679cea8b45bb44eb4a9c4426cfc875d019bbebdcfc3ee84e575c5256281469f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9eb3b83d2c106e0a1bcc788dc4d375cf60d4f1a4bfb151858fb84d4baf184d8
MD5 965a725f3786e8bb38fbfed82b62eedb
BLAKE2b-256 f6fcb770765127e3250f004753b04d3ba078252115fb89c78c6afcd641f2770d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf82eea5664b0b1323d2304c68e84215a5b3a11bd9cc733df09edf7fbae7fcbb
MD5 edc8b4691e8ec230fbad071f45027e33
BLAKE2b-256 dfb1c6370bbc0e4d93db0f9bb6b87a0fa17a41370d2cd8ae7943452d48a5ceca

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bc601955fe451749386dc4d7f3e7f8f1d4db6846c8be4582c5ee21ee0acc7559
MD5 f9fc3ac6516cb2e8392d3f1d8bf5983e
BLAKE2b-256 c0457177024e81dec38178954dbbc47c4aedd29c0e98ddef6a530d7cf5dfefdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67af78cf66472e82c8beb672930f6279d08c0007ba4cb675a70cee5cff1fac88
MD5 2ae3b46a4835a87e1552552586ea6152
BLAKE2b-256 118782790257e9b79d4d01991a9a78978f108f01942dbc86fad6daa4b8538421

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f49d1c07dea7235efc959b72ceb592cdeb44b0f60ce69828af318c40ada3503c
MD5 e7c2a193c48e93ed36809c714e43ffa1
BLAKE2b-256 5c3c5ea6e6b30ca4679f76a5b8b9b0f8ceb6c3e0f1e47092c6ba1d3ea609cf14

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e8f0583da2556ac23e8eec959c45c608d7b5dce3c5e7637a81af695355a57b6c
MD5 d416785fd670ccd98ebb1906226f8564
BLAKE2b-256 bb941661c047d9d3d44399e41755379d0989f6182cce413ae75f9bc704964f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40cf37a31664e280fdbb6f8ea9ee5a16bcbe504c464f210d90f2e8cfac4c570c
MD5 c6a8d445a1947b188fe1b4e5aecc3555
BLAKE2b-256 180ebba5b5593898c99bf218b8c37033c29d0f9ceeeed6d001d684cfce079b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1864f5637f61cf3fb21d5351d494de0b896f9867c8b4f000b8301c7468c6a05b
MD5 b5fb72f76940c1122dfd4ef859ff31be
BLAKE2b-256 de43bad6e4fd4b3b1a9a6b0759f0160b99c336c66539caef250e24ab59893a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-macosx_11_0_arm64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd0c772d8f7d0f0cbb73271c64f658622d7c143c5696462c918f73f3a7542c2a
MD5 6311f2f3d91917de51467fa9f77e7126
BLAKE2b-256 132ae5885be96d3a0479c3aa1302655dd2e65e0f237a83282062ee75d765c98f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-macosx_10_15_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 18ae303e7ae34fb2fdc21d190ffcdf025b8907e50da5393ff271b66fb08eb123
MD5 3c8fec51e920ca957d9cb672b289d129
BLAKE2b-256 3818840bb1bf44edf12d52cd02352b40f1a31018785e9ef6385964bc267a3298

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315t-macosx_10_15_universal2.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 07478d53a45cd33a9c721cde42a1074dc7fed8fc5562bcfd83172d5b1f140ee8
MD5 93fbf32ecad54a45b0b2341ee1cecbe0
BLAKE2b-256 a1e0f338a35d3dc9f3e84560428107dbde712bf59c31ab2d9bb1387a1ed6e742

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-win_arm64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 f15dd057a45bcf50a000d515ca5263d567c18ebe7de85c71687fe2d88fb0dde3
MD5 6c8ca50c5d9c49e3be76db992832d2ef
BLAKE2b-256 4e6db858585374e9523d836e1c6c4f3550bf4a4c3538695ee0426c527e9eab24

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-win_amd64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-win32.whl.

File metadata

  • Download URL: propcache-0.5.3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 43.3 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 55dca8dd42e5c12d9b7949a50df9a283e9720d26899f6ee53208f1919664812c
MD5 05f8f1fe829d551e9651b5203a3fe932
BLAKE2b-256 a72b917e265634a01ecc7399389cf74490ae519908195b219ae423ad01d379f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-win32.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95783c8fd4ec500c6afdcae87e9bb80c7379ef4dee5fcdf27c88e08f0c19621a
MD5 dd504cffb6e71dff8f2ae2f154fbdef1
BLAKE2b-256 d162a2d78ef2ea98415dd1eb3a33077748c1f3c90754f3a2ef74fc59b80c163e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3c996ebbee2460fe77be155dd42ad4506fbcefed7a4b9b776b3894b0f52c1479
MD5 faac0db6cc617bddbe86d5b8f792874b
BLAKE2b-256 663d2e72598a1bf2ba567e0d235c44698619e149b768b9897aeab456058b058d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b6d618b5144fcd65ac04113cee9196525dc10c23c085f27f3c2c13de439d4853
MD5 e3a67d790e17ed03c5935af9fb55e39c
BLAKE2b-256 3f32caf8744557cd15bb49c568c608656174b0939da79c08ac644e8e00ee3813

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 282cb412e862cfc23ab796addeeaeefe9ac85061349bf474249f7d77528135dd
MD5 d0477bacc4977c0d5ad141038de2ebdb
BLAKE2b-256 3cf2aca47d82b4250ae3358c337cb995a1dac6f0b8102b6e2abedfddd19752e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1003b8557b64ce8c09f4c0193be582231805997d6e74ca0e9c79eb7b375789b3
MD5 78647803c1f8a80a20dc5d0082da5ca0
BLAKE2b-256 3735cad45301af9eb52df154c69ec729b145d6e9471a303177ddce7daa2ac8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9fa0ec1edaa4a9a95d8e0ba4676f43f187323cc5249d8217b3d75484d922f77
MD5 a68e587721753f047f403f8819822333
BLAKE2b-256 502dfbe3063242c80140757e1e592de5d43a4d84e2029bfc71e354472ad31c6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0506edf85bec8997f5084584f2b863a27528147c59aab9bdaca2cbee0e22bb76
MD5 e6e204e94c0e3e72c2a23378a0790a88
BLAKE2b-256 ccc407ca0df6d7d45c3259fbd44d0ac298ac70fe27dd4668dad44ce3c97b6607

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50750f402638c9770e33e7e9ff8aa1d5115de8ea07ec29898c85abfa47b0f442
MD5 5f07c1c74840f68ad0ae43218d76e660
BLAKE2b-256 03ec71a33806375a6a4135aaed95f3a324319c1ff7a6939f456db3cb68443467

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c95b48cda71997707271ec146e13450c8a27d57ee5d01622a0afb88a0f5a6b95
MD5 0ed6f322eaff92553706583713e5017a
BLAKE2b-256 18ed82f9f2f64f78cb5e93948b431efc06bf5b915a81746181572c8e57cce23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bb98bd17ad50a99f9f6962214608afdb92a0ebef681a5f4a5d38024578176df0
MD5 a80ff6a7b57be0d42e9028550f13d5e1
BLAKE2b-256 bc158de881015fed66e756ef4dc5613cddf7024fdc612d2d0199167395176de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23788073f16c2e0706f5aeaae8489ba504027cc15b22f78bdd55df8e6b5f5b37
MD5 66ddeaa1ba801114c34f6eb181e5cc8e
BLAKE2b-256 8d621c3d133ef4f179f74d8d37f3370976b937bdd52e4e1870985c38dccc2040

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73b3e3cf2b6b6af3f407439b647c371452481d53b786b75e1fd0956e1d69b59f
MD5 57cb186a685e265ad0787785dfe1bcb5
BLAKE2b-256 eeaca42b8426283e8780070e2445dbe93fa1dd6d1670d3e0d9d00bb42deebd6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-macosx_11_0_arm64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fcf51bbb689ee4c15226ab80c96c1d7804cb1f5fdbbc828b7f75f6f6ee5a172a
MD5 0d21ae74d5ced44ba3390fa00abf8359
BLAKE2b-256 99b5fa3fb80475ebe20d2456f220da4a925ad8ee3339caccae5ecbdb9392c715

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-macosx_10_15_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 888624d71be1029609ad7f333be31b0fa3546caef67a5b17ca2fc7f5e07c8168
MD5 7673d5602bc00493ccf439e774609f57
BLAKE2b-256 0278096c5653b662a381b6caae09de4d87ac79b93fafd35db599f31e0dc5b87d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp315-cp315-macosx_10_15_universal2.whl:

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0dd0ef45b87c5a59970b42dd70493b3c022be490a2268dfd391cdacdfb9a611b
MD5 5a152ccbe33dddcf548de28ae7141ae0
BLAKE2b-256 614c7a957ce48290acc7b9739612e73c175c04099f8af3e581b3804583ad5bfe

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8a3396b1822f0c5291a11bdf93877d3118d5cafca5905e185582beee039fa508
MD5 64ad82b4860ab8def0cd7582c43c69f7
BLAKE2b-256 1950a314a5634599c966a4363e925b5d636bc8892103666147fe66949d51e0e1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 45.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ec2e387ce38d9b73054a7e96d70d22c8471a83df6205019442394b079d26a84d
MD5 6627f3c4e96b4b17c2a2912e7c5643af
BLAKE2b-256 80fff524645ba32ba3ef9b7d784370ebf6a3a24a5989b1cd18159a33f69927c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3745e60d95e52a782b1e99ecccc72d22ee61c86c1e368647fff0444b9ec4bb70
MD5 2715e5e0b46c14760e07938112b219cf
BLAKE2b-256 60d69c03b5c240916bd981616f4b2269139af38f7cd0a0a2bf0721e059cc8faa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9851f8a7bd86a455ba5f32652b13dae69011d93e44d3433fed7eb54b10f3d9e2
MD5 9a85736115eff6e53d54ccbb696af0bd
BLAKE2b-256 33f19c6fe447d3a9daca6088490212159c4732c5844f647b3816cc55d7c15f69

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 105ad7d80740aa4d44f025a7f7335599e0b26faa4d6c80918069c16e108d29db
MD5 f980da565f93b09bc4a3d82cc716c963
BLAKE2b-256 bfebe89c9ecc09c984b09c70a6e3367e51f7374f9d6d83225ef4853654ba8121

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b3541fae8294f9129e3ea393d146f28c035acf9106ee2025121dbd2b7bb2516e
MD5 21a6344a20452375134da95ddd63e09f
BLAKE2b-256 03c00512a494df785c0b07e23e0ebce2c797aa587af321b955e3106a822c517d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9498e6b074f7e4c58fa518e8f87944f87e612ad910bedaabfdc07695d91efa8b
MD5 40f064efe889a56fce7d3202511fd1fc
BLAKE2b-256 29313955b890061d2e6bff664467b39dc78165b1837efeac29a68b2e56251e60

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f0e69dcc0aa9bd4aa22c9cf3f52cd92ed2fd067f2df93e56dc1d1c98d0538e5
MD5 8fc162cb0cda054967e5c73ce95d5a63
BLAKE2b-256 60cbd3ab0eb1e502911534109159918f9ed520f1c4b556fbe08eb05629b29587

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 50eea49bd9c874378a015e8363befc05b3545a0bb1312ed44ba895cd7c5c9b3a
MD5 2898b73780eb8a862c11cb88b7e94a61
BLAKE2b-256 217c259bc1bc67d9855d75d0f288f9be09186d9535eb3b45590ced48a9c9aa11

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 104e8d289159297822541566d60769b81af3bfac971509a91c8b94cb2554d7dc
MD5 02501ed8fa0cb3ec2f7e675346fb0c0b
BLAKE2b-256 b939239f925d40a9d6de08a7351c29ff9b46d189682474c6d4986bd6cdb94035

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b6239f0d6175da9d07084c74628af8baa258fe8929faf6a75ce425b0db6ec9f
MD5 4160cb48914d8f4b4ae06dc4067c98c5
BLAKE2b-256 d0330090b2cf0f1a909f63a7d0d665c6f39b48f269738baa572e56818be65d5f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c8c8e8b2dfe7d7bbca58b12170cd65b4f7ec701e67812a853b7da8023f681c9f
MD5 c77838d148da515a67dc288aea6390c7
BLAKE2b-256 cdae14f42f9cf3c7c2214ec7d5cb53c99f4faae07fe27bfb76e63890339a2051

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 665451eaeb3e5e09129c4a789d63620502f50c16be25ebe9370f7dc05ed4d49b
MD5 4a4467b1291f0918f16e7f1b44b2e228
BLAKE2b-256 2d5a3d0fe77ae9747f364a251e1ccfaa3c8b094bb6f1e13659c6768c4286c7b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcc70083abd3374d7ec338c6dfd37030bc1e54ed2c71abe2c51f16c3d7af5531
MD5 13af6cd22b44e26aec668ebae5bc2849
BLAKE2b-256 4c20ead9986fa0def900d811998ce491a367c9c235bdf35777fdbdb695d211f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a3af1190a9c62a0da8d90a0a613d6b69029e86ee60b599e146c1e79a80c77d0
MD5 19779fb046734b97f863767e865245b1
BLAKE2b-256 68aeb76eeafd491de49e23777ae26fdec0a15e35c1fda9e2e2db140f563a064b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 622ae786b1e3d46684b8866cd7415c9eca26f341757c4bfdbdfad8ee129a7103
MD5 fe2cb3fe297cb30a673f9d4aa9dc39f9
BLAKE2b-256 1ccba1c760d7183853ed52d19552aefc3c39e57ec0561f18f79e9cc03e55c685

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9e561c183c72665752cc2ede30d985a9e80534f43aaa16fa6e1224d151ad54c2
MD5 46eae1e4f4d60d80e50b17a403beb8f1
BLAKE2b-256 6c478cf51b61403f3ed4122c0e21d08b6e5eb683b2d2fe02542723c9303d1b88

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 10573db5b40f55728e0abd5fc47096db6162ff612af10430ae93377af09e2a4b
MD5 e01ddb2e750a633f0087cf74d791639b
BLAKE2b-256 3e01e3f346f110c3e39d2e6c431aaaa4720d1067fb6fc1452fc531c3dc624d1b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 43.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 37a99cf741523fa5406ef2c60925b7ad616afd772fb3364b431a921404853d46
MD5 99b864b5e5ed7ebd75e1defba635c1db
BLAKE2b-256 6d0a9f84810f4d89895164f13bad47f861dc76fbadb7e63ec464e2ffad97b1c0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54f06f17c66add28dc79e314e3b2ba7a9612564314d8b2c27b2a8c2f270d33c7
MD5 741e9358a9742716db20a800a92790ee
BLAKE2b-256 51153bd647f99e755e56c5608c91114143c53326f88ef7e1ffb1cbd64e96d020

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ef15c7a41364b098c26458dc3b57b7a5db6e042661c5cbeb75ed78e503162cb
MD5 ee0abda290fb37026d5e3ee8d230d6ec
BLAKE2b-256 2967fa844bdd32590e54b8bc32223c9dc2e13626cf6c0a43b34fcdb53012477b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 49f3c98e977785ea49a8b99463cd81f343c8307dc98fe485fb94288597d8c01a
MD5 25a34bf92cce688cffa522297277abd1
BLAKE2b-256 f2755da895e5b944a49878aeb2476b337d5598698c55a8f04e2dbe2e9351fed4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1162ba1e960ea6dd0453ff3ae29328a37307486c260c93343782ea1d56eca6f2
MD5 07e19b09f413fff59a4fccec47b9b3ce
BLAKE2b-256 e6c35116f5d451eba5d08015d7b2795da74fd2705c2df9c93678b71b099c7eeb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7f485b78c7ab8e8b9c3375d32d25a077d530cfc676c665e89685fccfa2ecbbb
MD5 ad2a07856e9f7ec7c132ab523bcadc02
BLAKE2b-256 e98e0fea845503e4cd26942a58edfbd23930bdf4abe7b77b64337e4112176d97

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5930611bf42350905ace62fc8306146cb644c5d43efba541e68f4d22383e459
MD5 5f49381fe1728b24b55c8ffc51339250
BLAKE2b-256 c5b8f1c053bd539f1b2f25380dc16c7a647fb0c3d5b362fbcb8f7b6f14959a0f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a78a241677f693485ee6c0165ab657341e7ecac93f8d53cd70771ed6f3eafb61
MD5 dcd17006d779726accbccf8199e529d7
BLAKE2b-256 92097fc9aab3948dc2c70e6bfa809c16802f7adff8044f2cbc188210755d30fa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfa60b1dbd3c7881730407df60d2be83058ed145701b5c51ff113b7a3ced2224
MD5 afeaeac60af8b04d835344638a247c83
BLAKE2b-256 7eaf40b08134064a871f721f673c8e24ce1d59c11e0fab5b045b1d4b92df96ab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 69f226874a50eb2fdd0db47303b66b1084a545aa1d68d45ce2a1c9920cf2ea00
MD5 e5fa2d6aeba51cf37c899dd5fd570379
BLAKE2b-256 12264c8135f0224a22d2563e070efc4582fc07c6a28afb490fd97559f085ab71

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1a8588f64d4d5d6e65d7faa9e0d1dce9fdb25e50aca194cffc6106deaf9d320a
MD5 8eddf2faf1a79868bd560d9ab41e15b8
BLAKE2b-256 3c7d2661bdbf82cefdc566928fbb0c77a9340a338701e526df4e1c7f34d94d36

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f698081e39d0a63f44ae35da7c43c595f9f60d26ee08e575576fd7df3029e31b
MD5 f272ede5d331de956f2097d390a36439
BLAKE2b-256 b3a471a22c1dee4ca02d331ec34e81300d73a4d753e5865662473756dfefc00d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04e21d1eea62765ee0306c80c61937255a5cd99c9c56d6cb6100ca5794e8b2f3
MD5 aa4a5137fad3c984a3a26d91f3956b41
BLAKE2b-256 3bbf0e606784765a9b3f2ceb40827bb0369d810f19aef8abbd4b5bba817dcaad

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37e41cd6c1a27ddbbd0b556fb0c02ae8e55c41c8a122c83f1350a017f0bbc69c
MD5 ed922e4cb584e4f980f2c4f1df189e6e
BLAKE2b-256 c080f271217374190c4e58d7e9dd690bfa6c6b2b934207365dda69b86b460199

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7ee15901025c40b58ee5547a7c244841701c09758f3e98ddbb0b876d96d52ad4
MD5 c1fc7713e53f10b9eeb763d83d2b9b50
BLAKE2b-256 d4f30e98a1100344a6b067fc9813db6779f5c48266543ed4b6b847fa6ff6ee2a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 42.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 82ff2cf7bcb0c207ad1d207e1a51ea1d53aff47628729c7368c5ead6924d3b7f
MD5 6b0109eaec84d7c6048c09e351a38574
BLAKE2b-256 dc96c52adae597a00f2a80e57daacb4ffd0b3acc9d2767dcfe171e6c87c0939a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 45.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8e2d2bb4285a5fa8e5c01465b5379abf8f244d4978855558432987ef62672f1
MD5 e97f1743972b0010dbabac001832a463
BLAKE2b-256 b0b2e3bbfd99b6b6d1437a4b44719f01c6eafd1c5f6ae94fffc848d79626fefa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 442d4a18df8be3ceff91bcd8eb850c263f36726287327499c68e72482ac07b48
MD5 1a2b4075a16ee0ef5cf59c2e3fd600ee
BLAKE2b-256 006a3d11b88ec9ff7beafd8af716200864e797fc3066c4bc1927b1f1a06d1376

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7d377c2e8ddd7b7254c3ec6b23275bfb9d307a32bef017ba7dc94b94f45c509
MD5 73942d9dfbcc49a3c2907c0f9e65c2dc
BLAKE2b-256 2a268a38e5c9bd3d7bbd35337fc254b621fcdaa6b95b20dcf5079174ffd198e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45115e5e32fcc253de3f14633ca1c982239c9ba37ba41ca45a7e30b3afeb3b77
MD5 b21305b490b9059b321c695c41f42aca
BLAKE2b-256 5cec33deac3625109d26dcf7a44a6baec04e3eea26b2ec67cc0cf43577ea218e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d3f6e1a3a0efc4ea71b8dd4310c4c5693686ad0c3b4c657beafea3aaf6a28428
MD5 578288b714baf50e45a9e98b78b06670
BLAKE2b-256 5942b7446429cbf09ee650439808d18168a126b5ae7d8b48f248e967af76ad34

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c71593d15b601f785e4f0362822d3101b999e4a696210281e83e035abb8c33ba
MD5 f22adaad3600b92aadd31f8058148e5b
BLAKE2b-256 6686a66817d3c0430a4f04752a70b94f5b501115d76d362ed8c65d49954c1da5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b90847530d99dfc9ab31a6b4432fe92ad9868630b45acac21bb08468ea82614
MD5 19162201fe021266975364fa078fac1e
BLAKE2b-256 fabe52cbc9f55f13d958dcd3779c6e7723f138412b669663239d5e28d67b7a5f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e55ddb8404887d1bffb0937287cc27c98a0f1a4b91453b21b9d5c9df0743377
MD5 7f71eaa1fb08a543927f74f299f3986e
BLAKE2b-256 acb65c4a31c229d682941145a700d60af9acd87e852ffcae5263b2320da8bb4c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2c73e4520974b55081770703be7066d3b346db16abe399148a154be0f9f92c81
MD5 219bfebeb8a6f659535f0642ba279696
BLAKE2b-256 68d1680adc625ea1d0ed687c146bc5f2e301d2a6f8bc29667b493308ad173758

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f18065f005006f20fde9c08d21b375d52908b72c493e9b2531dd25da89a8ef50
MD5 b820fe2e9ed005a595eb71276bd54703
BLAKE2b-256 d9ad16ed91ddab4277e7a86c48e074f533749d2abc52ff336668fd6693c9279d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 384ae10f8d6595595361566f9073578c131b1eb7c651bce5d78c2c0d411a221f
MD5 ff399dc24229ce11687fedc8313fc78d
BLAKE2b-256 20529a050a3e4892f368e5e869b60db79c36b67273df215a3fa264168868b2b8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9fc1d60bc45efd3b1440a17e4a7eea268d34c22eb30ccec10246b5b6833a603c
MD5 0bdf058ef06de6a0f740f57e160e2d47
BLAKE2b-256 3daba4be2dcf937362273ec6a4950e4d3f7895051c029b49e3e6661b1e479f2b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f683f8eac4e695c48a3e24a7347b392322219b6a99351d7b6bf70c9ef2262126
MD5 77c52cb5eb31b3a54aeaf48db48a6de1
BLAKE2b-256 bdb778f830a753cad2d625da3238a7896fad9a570db3987f37abe4d25c02159e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc469f68cc978501b6ec69b49f67738ae099064002d0bea283c491d086e93a27
MD5 43458e0b47478f8a54f4910c87164c54
BLAKE2b-256 2c1bbba8c2e6be2ea5d3c0da03ed2f3e1e52fd7b1c34266d15316f41e71d4d17

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f10fce5b91adc67a566817365381279b6f4f3b19fbb58eacd2ab8d045e75492
MD5 19e70e2ce4343f84dac77a8881998ef2
BLAKE2b-256 22516d20cdebe03e14b451125873f38cb99f4fd9bcc86a43aa2333e0427b40c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ef59cf75b4d63fed6308d933db810b05f0738925b1470b6caad88afed597c7b1
MD5 890ece731d4ffa94d84c80040966ace7
BLAKE2b-256 bee13fdd6a4e3e0f4894e08b8c64bb91940b5f22d69157e002905e8ca5d47c1e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 646d9d567fdc8f1f8ab3e785f8702175a9212ea3432af2506f2f914f21c3ae16
MD5 861d5b150495cf8052be596b154403c7
BLAKE2b-256 38a052010d061ef73dfe337f9ecee1104efeffdc809eabcbe211b39c1b527ac7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2367fbfaf980a0ac082c64b53ae669ee704515134a28cd8c680642bd90a2ddd5
MD5 0f38b62b7670b1fb364d86b4b1fc9198
BLAKE2b-256 bb1666349cab3026e04089ca0a2d15818e4294f2af2b503c70f8d6afb91ac95b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 71dbe01ca877ca1c7d61f0f83b71f2c994554ef52983fe7c6400d9c483c477cb
MD5 705eae1a68956b993114f6b13d9b3b8b
BLAKE2b-256 91fc86d959759bbf09ef491c4d7724697791efc5b794f2f69a10b91bb6848ac3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e8849a90d46d920469eacc52cf28dbfce9d9dc7fb0ee36ba3aa4b117fc8311
MD5 25d4423383bc31b2616e808a383e377b
BLAKE2b-256 1b02b201363ea0ef1cc0802219d1d09391fe7bee5494f763c7a6287706b73be0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ae72c39267ffc08bab9239fbdef5fb8bb0fc410f141b1ed283f0dd349b8bcdb0
MD5 a7d03d37b62130ede87fd617a5d5d518
BLAKE2b-256 a08bcf6fb2c5d7926961f4ed299c028682b990f03aa64c02fcfc8152f0017b92

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 014cec8c711df6f22e0a50cfcb3e98d3d659856daa75e9dc2f1e206204027519
MD5 41523e9e2be1bbae8f8c9d11d23fbf3a
BLAKE2b-256 1f2e67195152e896f4d4c1fb2b895f57d006af1a64874b683f657c376bd04437

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 28afdbaf9f1bf34bc719e0381a4699705990c59f412e43ff25f91a01ff6676af
MD5 167d4dd6e4cab0fed4def4bc41ba3ecc
BLAKE2b-256 c9bcdaf5862749343c370c2bbe03fec56b9b6ee9303dee75de0c0c8a206c441d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d617a68a5f383855af3eec608ddd98dd3b964184011f20755a4e34acb194a5d
MD5 dba58b078900bfd2549b7878a688a7a4
BLAKE2b-256 7c8ec3e28a31bfee8af59a3ad395abcb4c26d1419c76ba66ed130af5b08affb6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f95a390defc963a5543012685b57eb9cd47078f50c4a3bb5c5cd7719c4175112
MD5 395cd1d4df6b0899b5d16a40097203ae
BLAKE2b-256 43f0b8d0bfcd1e0c119c9517b6d899c3e40cad922d5562b331c2b6ab75d5b5ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1a536910fbd2f4ea76acd6b1b50708ce602a27673ef5e5b2c8ba373c2f5127cf
MD5 53f1e1b77f89370188f09f4b74250f80
BLAKE2b-256 1d73453ec5ad092af7192eac503b2bf34dfaf9260b5530227effb507f8ade5fd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27a36f13d838accaa887f9e54af4866ae344a51eb59b99dbd6cfeee701fc98ff
MD5 35ac3b24f9b99b067f286ddd070e4664
BLAKE2b-256 4ea751527af80ea187202dfc2f54346e057f931629da45d4f236923a05312635

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8ec76f86ec2de069358d896c468be3c1cb3b5ed049e3cec3ecb3015806313606
MD5 e91526658a9f0533f06b708365f78a1e
BLAKE2b-256 3d4ba9663f0c5d41dd4eb8126c5a9ac6db611a2ea255e9d018fd4646d70cd8c5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a8ea844a859c3060a44485c4e842df3ead69ca98ca5550594757aac11dfef30d
MD5 88261b5cf47e6b27cc9c6d897b738735
BLAKE2b-256 30a2bc65fc386140c365020d42bc242965840301574667dfc2d8c01df9b897a3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50079e8be4f1bc33e8265f35fbe6449017901db626bc6b735181568c4bfb5e73
MD5 576fa20d8408e5b860f6724d67366217
BLAKE2b-256 50392a7b447eeaf25b496cb03464cf2c2d1d723326a90a193f01301daaf1fde6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db81e15c4e0171ad26845b67a1e295ba446e717e47fefaf47f22ae0b2eca71e
MD5 b2df1b6f9f974325483884d27d69c0a3
BLAKE2b-256 1af8fc917bcc8e9a250e1029c84f748ea44136b026285380ad938c79fca941ed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b09edf2908fa5f0ba84fdb9c1bc6f346945b51541013ac29b12d20218f213279
MD5 fb58acc4a3e238e0316fc14f640d407a
BLAKE2b-256 47929d7b7d8b672713d707f558baf9e93aa09e004df11f8556b21f358c0f26f2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eeb4e5a10149960ed021b8e35fa22440e106db6322a9f5249ad8992f38855ceb
MD5 1de62389bbfb18ecb37b57a7a1069612
BLAKE2b-256 8a1995cd33200f38330a530043ec9507658fe9d9fa3430e655ad5102c51fe844

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 43.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ba7220f33a3df68245b09bc519e2c3f9f5c4123ea68f007c11529ecac8615200
MD5 82ef85edd00944573da6ae99c1555adb
BLAKE2b-256 53bfc6b79fbb41b4be2fec8164efadc9bdf61733acf442fe0394e8d811f03faf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e01abf74acc057c0ef8533d5688a2bed25923cf05c450a0d82229fa538cf83c1
MD5 b7430f69bd5d6617a147136db4806671
BLAKE2b-256 71400bb6635fbb008072e60b5b0cd297020a1e2ef4fbc0be82dfd00018a6ce1a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d8eed2e84204b4402407a5d1ca124cb653b9a6ba2fc01ce1ef1071a75ac9e176
MD5 981d9f919cee9bf78a10ad00cacb7928
BLAKE2b-256 2110b7fc0d26af8b408ca6830ff0fa0138134522a38e29f00c4a9ff1366fd6d6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66be2cef41263d823517ee617d19fd105a70ff58a0776e5e47cfde1196bfa2f2
MD5 cc8a3ef2968355d47e758ba709ac5865
BLAKE2b-256 72a35802eb8e956deb74fb141c625246f5ecb3a4bf13819cef4fd864045fd204

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a5ea7cf6d6a0b67a64e6744219265bc5406d827ca3b46ae2d748c3aaa1d5e1d2
MD5 fb3a3a4e907ff1fbd2e858b4b93e63e4
BLAKE2b-256 2f980be1b55e560637d9535bebc0e6bba9ee9a37ceb6d9e287285b6c89aaf0a4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d693b78ecb4df14b3aa636d9c2a40e5ab3b4f81a3bb569fddc2b28299f1ff0d1
MD5 54407d07a69afbc8e5a9492a2f726fb7
BLAKE2b-256 19dbdbeadc6464bb2e3d070b651810475917a098d6a9bb05952b99e6ee59028a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 023d4e58beeb0865cfc62e2e14bf4ed30e21dfc20ce16ac24fb05516a09e1d18
MD5 00c6aaf1fb404539066adcbdb45530cf
BLAKE2b-256 0e976ec9a8d3c56b04301a1b3322c572eb23add5713465cbf586b179b6fb6c4d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3eb545ffc0db5c86e83ba1aec3616efbaac9c22f05daff095005472874c12e91
MD5 795b1c5f21ac572fc2f8b1ababbb40c6
BLAKE2b-256 82c1c3e6fb2ef1b4ba095bfc314872af85e29c1872a7abc864f6ac4c8724b321

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2537fa4f56c12fa897f9371e4e5910417aa49ff916a7dc549a22061b46d33355
MD5 cb28dd4b7592c4d299f8589ea8be0026
BLAKE2b-256 58b308e128e0a6a1fb972329eb4c32f4ea7cdbfc9cf5ca98ddcd47f98e65bbba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 377011845a2b1a8b11ab2ca33547aea1320d6f70c015bafe26486f0882dc49fb
MD5 9e722d3ebfed29b1c406d5277133c30b
BLAKE2b-256 49d85b15626d8b262fe06de4dbfa606c5ec30dc46771e67c4be7a87d0e7450ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35de8d67f6b6a3830f845ee7cd3ae47189d7dd66088aff9dfd1fe50f5bda5a60
MD5 2e3f0903d7fd58496c8bdd96dfdeed8c
BLAKE2b-256 b99a8e712d5f024cdad823fac81590781e39004cdf6479204480cba5195ba7ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0fdd72f694faf2b34907484b53e5df7ae6b5dad6a6e03564c6b872ccebb80a7d
MD5 4e8807d954e98fdc466dfcc9c99a2dfd
BLAKE2b-256 7383f83923a9ff7019a796b8e254b92e44c4e2d948b69d27b5f7a77a42825a79

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30f9d52fdd02a216601f588e5659dd39cb7d2a0ef59935d33c5077718201f8da
MD5 c12e6ce314badd483d10d16b20ff6d7b
BLAKE2b-256 4332b88254ef0a905130a75bf6064f9f7e2c0cce393532eef1b0403d2510bf76

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba1ae9d55025434790882c2f1be727e725ccef83876a112af52247c7ed7ce321
MD5 c1de67c48915da184e4faed50e1600db
BLAKE2b-256 488eae67665ada0f286937969ff533163463b0878c3ef10da41a6a0c8866a2b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f1723f7a060a20eb1f9971fa69c9931b5ebd253bef8baaa48a1cbd1c01c7bb7
MD5 0f8c9920860121cf04c261cdf720b38f
BLAKE2b-256 5e2c6c19622bb80010a27a61906b5784e2d74d6c9123817ea6b767a6d87976aa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2c6ccfcc810ac7f8782593934fa2215669a401ef43fcae5a8cab80ce4754a46
MD5 c07e7650b1ba1b58f7aae6f241d63c67
BLAKE2b-256 a5860af2f86eb650688f130540370f9f63ec6f4eeaee1e445d4b751218a393ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b7edbbf2d9ba5829663dbc83cdb6e2b13bc80cd36f0bf185419dcbbb4930af7e
MD5 0879adf082148142d8622d5c454a7170
BLAKE2b-256 533886c26c9ca46dbb0a8e358fe5f6f64eaf1b9c1ec15a25bac99687b1f2b997

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5964c7e2f632facc552ab0e163cac05e1ce42acba20b4b24d445139629ed7625
MD5 027b0c040d1ecb394fb0d183dfbd6a21
BLAKE2b-256 847da28f2159ff4b2abf0933b57aabcabc35199ce576e95f7767828115fae446

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09513990e2f33c9de838f0ab11b62660b3ea225000945d10143007e51539088c
MD5 566b075126dcd75ca7f2c8afd6ff7027
BLAKE2b-256 d6eb80d6c0c02d77f397cfbe29b925e99cd31da82302a7b7c9fafc3d255aa7a7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 42.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8e6acf498ee3d0a5c2a8468e23af7acb017c5b219b29e302af2636818d3830e
MD5 4e5ddf74141853c3070aa133f5019ba8
BLAKE2b-256 30886c0d9681b890f06f8f1a0398db146305c5d1cae3cb6e057f13fdf6d9a8ff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8a41e6f549e8bc13dc7b4987f5e96097bc2fefc66b682b3947a8e959f75a9c7
MD5 87c48b3461d1535e9c81e192033ded66
BLAKE2b-256 8fd48fef5ad7b826b0a797a3c8814b9cea768350a79171619aae64cb7f8f8ade

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8e507119af1a2d417d75ebe202bc0a2a282ad0a3e6cf38f447a6cad0a2c5263e
MD5 52e27b5fcadf6d3452945d1a8ec36a64
BLAKE2b-256 88c2aa489e3461b19d23316ffc731c2cf08593074716047f3948104b8f2e5771

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c2fd56f3b358f07e4fefcf54942f20f64e905db63dff8fddf0c67730c748b3d1
MD5 030423432d4975f7417d3a3232d20727
BLAKE2b-256 f4a1555d3e8512f0237bef9e4e9689486a0016395f5d6eb8c18d007eea132914

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0275013737080d5d113be6927ca6055a3e393a9d95f81667c4bdb927915aac2a
MD5 d8ffe987bcb6238f5d8ef666f2bc1330
BLAKE2b-256 5958720013e4b55b0463d6ffdb43905749dcfa82b37538e4454f2712b7eb6eb1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 400db553b2a2af6ea41ff3b6d5972fe493180fd519c1d001c9581fd446bdc150
MD5 cf5c153d1a8cfe6a841659519786e470
BLAKE2b-256 f70dd6317dd9f162155bbae2c96d4953ec91750e21d0b0c55fc9e6331a3e9946

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79af5bf10e5a631ba601c33f379e37e64f036c55e60a99254ec55ab4678d268b
MD5 f40c165770886b8c3b209eadf116c625
BLAKE2b-256 0baaf1ef19e2619138fb4877322e5b90e421fe249a41ed8703eda6b5bfd38bed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1956d7e98f2150e4b0aae71dccf61fb5628208c63d57e2dafae68301fe8e1a36
MD5 3f2edaa65198f0720901a4b4309c18d1
BLAKE2b-256 5bc810a254addc11ec17d1ec8632fe3fe32cf1c27f294c0c5bb69c80163a0fd7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e61294a7d9b07a79b3c670dbceaa4aca37542e68cdf9411e04ed81cabb2f62a5
MD5 39f6c9e1905d1b026ca6cc783b7e4cd2
BLAKE2b-256 a974c94d53224f485d4caffc76b0c4d72cf536e8c3ae54ff05fd981870fca20b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 58515aacf6ba8ad47a0b072ff2a27ccb39d7691ed9101636e6b5e151758b11c0
MD5 a8041c0d9ef8ad95165500c2b1fa9104
BLAKE2b-256 e09ea39aa4a7590513ae5b4fe17d27bc56f12226991fb1043448a1766c07ecff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 544f08889abce275a77b27add29cdaa87a36e6ce6abeffcb4e87b4e29c577711
MD5 e891df43232545e2bc1bd6a4eba6457b
BLAKE2b-256 b29b86bdd60d69fbed833a950021880dd7eac9e2370cc2aa77b175921765dcb1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5867f7d672f239fe70569c947a4453ed44f82c166ff08d4abf6cf7350d9a4b12
MD5 62602830188352286fcf403ae864a370
BLAKE2b-256 49f7bad2d624bbef5334d6a95cacc51ea19ffcfe5ab247feb0dad42360d80ed3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31239c475a43568c0d64d5e10208f449e004ff4894458507fed5ce53403ac3a2
MD5 d82862399a3f872ea52dd5f4711c25c4
BLAKE2b-256 91d6876cf5ab7ecd9d7cbc0b0a8303e76c7a08f03c85546a977252cec63e7dd7

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file propcache-0.5.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ecda25c86ee7500b5348cb1e8831ee4324daa45ec7e24265808121537c85bbe
MD5 8cfc982b854f034c09e58b2bc560ebc3
BLAKE2b-256 f3336cb0fe6d941a48f230d3f738dcd4446b3f203467eedd613f12dd822f2c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.3-cp310-cp310-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4e443bc079b57cb231ed45a8a55879a868bf56449ca7a719e58988375f828d8d
MD5 2376aac6603409d202e397eb4e56e0b1
BLAKE2b-256 4a3115f39b3d5a0e5a5ab5589814c01d6096b826c5bf12c89d173e0af283c25d

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.5.4

138 files

This release

0.5.3 This release

138 files

0.5.2

121 files

0.4.1

122 files

0.4.0

122 files

0.3.2

98 files

0.3.1

98 files

0.3.0

98 files

0.2.1

82 files

0.2.0

98 files

0.1.0

98 files

0.0.0

92 files

0.0.0.dev0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page