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

(2026-09-15)

Packaging updates and notes for downstreams

  • Fixed the release wheels being compiled without optimization since version 0.5.0. The build backend set CFLAGS to add -ffile-prefix-map, which replaced the interpreter’s own compiler flags instead of extending them, so -O3 and -DNDEBUG were dropped; the extra flags now go through CPPFLAGS, which is appended. Cached property reads are about 1.5x faster than in 0.5.3 – by @bdraco.

    Related issues and pull requests on GitHub: #244, #302.


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.4.tar.gz (61.5 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.4-py3-none-any.whl (16.3 kB view details)

Uploaded Python 3

propcache-0.5.4-cp315-cp315t-win_arm64.whl (45.6 kB view details)

Uploaded CPython 3.15tWindows ARM64

propcache-0.5.4-cp315-cp315t-win_amd64.whl (48.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

propcache-0.5.4-cp315-cp315t-win32.whl (45.9 kB view details)

Uploaded CPython 3.15tWindows x86

propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl (279.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl (283.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl (248.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl (283.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl (266.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl (280.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (248.0 kB view details)

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

propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (285.4 kB view details)

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

propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (300.1 kB view details)

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

propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (294.5 kB view details)

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

propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (295.2 kB view details)

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

propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl (54.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl (89.8 kB view details)

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

propcache-0.5.4-cp315-cp315-win_arm64.whl (43.4 kB view details)

Uploaded CPython 3.15Windows ARM64

propcache-0.5.4-cp315-cp315-win_amd64.whl (46.3 kB view details)

Uploaded CPython 3.15Windows x86-64

propcache-0.5.4-cp315-cp315-win32.whl (43.5 kB view details)

Uploaded CPython 3.15Windows x86

propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl (227.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl (234.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl (233.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl (218.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl (228.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (206.1 kB view details)

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

propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (232.2 kB view details)

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

propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (245.2 kB view details)

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

propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (241.2 kB view details)

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

propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (232.9 kB view details)

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

propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl (51.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl (50.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl (85.6 kB view details)

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

propcache-0.5.4-cp314-cp314t-win_arm64.whl (46.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

propcache-0.5.4-cp314-cp314t-win_amd64.whl (49.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

propcache-0.5.4-cp314-cp314t-win32.whl (46.1 kB view details)

Uploaded CPython 3.14tWindows x86

propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl (280.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl (286.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl (249.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl (286.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl (270.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.8 kB view details)

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

propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.9 kB view details)

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

propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (302.7 kB view details)

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

propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (297.5 kB view details)

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

propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (297.6 kB view details)

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

propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl (54.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl (90.7 kB view details)

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

propcache-0.5.4-cp314-cp314-win_arm64.whl (43.4 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

propcache-0.5.4-cp314-cp314-win32.whl (43.6 kB view details)

Uploaded CPython 3.14Windows x86

propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl (228.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl (234.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl (204.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl (233.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl (216.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl (228.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (204.4 kB view details)

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

propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (232.8 kB view details)

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

propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (245.3 kB view details)

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

propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (241.5 kB view details)

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

propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (232.6 kB view details)

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

propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl (51.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl (50.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl (85.9 kB view details)

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

propcache-0.5.4-cp313-cp313-win_arm64.whl (42.4 kB view details)

Uploaded CPython 3.13Windows ARM64

propcache-0.5.4-cp313-cp313-win_amd64.whl (45.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl (229.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl (235.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl (204.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl (233.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl (220.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl (225.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (204.7 kB view details)

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

propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (234.3 kB view details)

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

propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (246.6 kB view details)

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

propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (240.3 kB view details)

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

propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (233.6 kB view details)

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

propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl (51.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl (50.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl (85.3 kB view details)

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

propcache-0.5.4-cp312-cp312-win_arm64.whl (43.1 kB view details)

Uploaded CPython 3.12Windows ARM64

propcache-0.5.4-cp312-cp312-win_amd64.whl (46.2 kB view details)

Uploaded CPython 3.12Windows x86-64

propcache-0.5.4-cp312-cp312-win32.whl (43.1 kB view details)

Uploaded CPython 3.12Windows x86

propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl (247.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl (254.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl (214.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl (251.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl (238.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl (246.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (216.7 kB view details)

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

propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (250.4 kB view details)

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

propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (265.6 kB view details)

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

propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (257.7 kB view details)

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

propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (251.8 kB view details)

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

propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl (52.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl (51.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl (87.3 kB view details)

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

propcache-0.5.4-cp311-cp311-win_arm64.whl (43.5 kB view details)

Uploaded CPython 3.11Windows ARM64

propcache-0.5.4-cp311-cp311-win_amd64.whl (46.3 kB view details)

Uploaded CPython 3.11Windows x86-64

propcache-0.5.4-cp311-cp311-win32.whl (42.7 kB view details)

Uploaded CPython 3.11Windows x86

propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl (230.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl (240.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl (208.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl (239.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl (223.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl (233.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (209.0 kB view details)

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

propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (235.4 kB view details)

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

propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (251.7 kB view details)

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

propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (246.1 kB view details)

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

propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.7 kB view details)

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

propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl (52.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl (50.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl (86.4 kB view details)

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

propcache-0.5.4-cp310-cp310-win_arm64.whl (44.0 kB view details)

Uploaded CPython 3.10Windows ARM64

propcache-0.5.4-cp310-cp310-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.10Windows x86-64

propcache-0.5.4-cp310-cp310-win32.whl (43.1 kB view details)

Uploaded CPython 3.10Windows x86

propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl (228.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl (201.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl (228.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl (211.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl (219.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (202.7 kB view details)

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

propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224.3 kB view details)

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

propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (240.4 kB view details)

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

propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (234.5 kB view details)

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

propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.8 kB view details)

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

propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl (52.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl (87.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4.tar.gz
Algorithm Hash digest
SHA256 ff6b113f50bc066a698db5d944d2c6dc7507168dd3341e255a8892fd0715a558
MD5 a0ee7b9105e3b9a423278af3816c1751
BLAKE2b-256 b39a9fbf4e4ec0c2d7f1c32519fff782ef467859b8faa9fbc5331a96f6395d43

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 62c60aec739ed00124573cce1178138fd690c7676352d67a37328c1cf51d7468
MD5 de798732b7d9594bbe24897cc0ac6888
BLAKE2b-256 f5cd785c64ed382f3f04201870267b02783f63b4678c2acfddc177a3ebcc2727

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.4-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.4-cp315-cp315t-win_arm64.whl.

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 dc4242ca653c9b30ab51c5f8193323e7bc0928f897ee9103201e59a43abcb72e
MD5 22716cd22774d0a3d5b9e337fe4a2778
BLAKE2b-256 57bebcc053f66a97355683884b448198e79580fae8e8fa4d96b9bb01614e9913

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 02c0a34f16889cf800f10f0247a564d8ce6eeab6ffcd7c87198f769067eb8432
MD5 2bd4d7a221f1f463d5090e53697ef2e2
BLAKE2b-256 d4ef8bae0a316d406644450522f2f3d44a4e19632f5f3bb60d1d0e6c53842616

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 1df8d8561b21465c5dd56110a01caf897e026d065b4b84e98a488209094272ec
MD5 dcdc8e96b93956e7146e94a3de4c5bc3
BLAKE2b-256 ea60d8f72cb24b412487ed4c397f539117d3b74c3c33dd32020e91fe00a958a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.4-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.4-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3af0c8642b2da4815d86e631232ac8286e17644fad907c19508aa8e7cb4ba8ad
MD5 9b862a7ea65bdbc725c7a7dfad445a32
BLAKE2b-256 533c016f1cad8bf4c428d748cf399b2bac603026fbfd6966e6a5579b5c5b6956

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 12682126712ddc19b70ff819debbd279e58adf1f0c8f8f8138c18ade2044b284
MD5 98f2d7e83b9ffb64a91797f87ebf9f85
BLAKE2b-256 3fd07f79f061e30d135bb615c9782c94a74652033d00b49254edbbf35a9165a8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 13e52b6e0bde97dee98ab66552dbff2931649c96f1ac432eac299fe689ec373b
MD5 0e91c43bc6cda36aa86c77852858959c
BLAKE2b-256 1aae351b1a5225f5473c411d9a612a229ae147cf0cf65c72ad838b87219ea8e8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3eb2e820e8e2101407da93f17c57cbb7d225461955fc60105daaba14cd421ee2
MD5 5b29b2918815eb5855d102d77d63c456
BLAKE2b-256 3a117ddf336288b2678a5f054f8da2e2bd1a719f5d4b7de714d9c6bd588a2313

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 420162a77f94eb1cf5ef7893f500016dabd548e73de956785a1dd899cc73006a
MD5 818e2ed9c00584adb38cb79ab1d04821
BLAKE2b-256 5428fab2809c2e337fe26becea9648e84d5cef46075c91b826acb13e4f9dd04e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7177c43eddf10a0893c4fec52ebb408fdcd7f7d63962caace9180d8f81b14ece
MD5 221c1433b0c7ee923ede30ad2b228a21
BLAKE2b-256 cdb5c0a142b656093ca397039dd3fe166cbb87c945712b534546514a24cd2611

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ef3b928d9c984322b5c44e6964d8dbc653da87d2d8ee1647fa6da43072e650a9
MD5 3e9abffcf46a5d3e710e547f852df043
BLAKE2b-256 ac9c34a55396910583ed07926669ab309dde2213a2dec05a7e946bb90ad66908

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03969626faf0783a592dfa17e28eac06018bd0b44dafae6943d53b92421a7f72
MD5 c4484a5e04a4e2455ce6ae562a850d71
BLAKE2b-256 270dc5090f9e6f67cbc30a2b744c7bb0f8006dcba5ec1b0d82f866ae1cc7c5c4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 770e8209d018175fc0063936fa9583b6d27e88c5ad31543f3383d66080efdd62
MD5 68b504039239781a73aa0afd7c6282a4
BLAKE2b-256 f288c98f49183ecd3e5b204a556f0ca47baa02c2206a500fe8c7ec1726297b0a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5cacf3c9efd09df409dc33654dd077e1c245ba8fb747b0f0236ef41b7c49b589
MD5 646ee47fc810251a6840014a3645e1b1
BLAKE2b-256 5aeb5ce886e902a2e781dddf110993d5329458a9b1a8626b876c65e5e25bf413

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10ef33a68a61ce317e095fd2e202a592ea92392b90944a78c993f0d9a73ab06c
MD5 feb1c239705442d78bb876091ad89552
BLAKE2b-256 3fb69ed0a5c939b58b6bed740a05b5d0f919f0b318d03284b4b6d81a0fe8a29a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5470694918830da62fac9e69133b53d23b736d7070e587b27a4a2be37e08e68
MD5 f074501747c70b367dda3a2f63890291
BLAKE2b-256 246c924c810be5b7cf218ef47e707cf06d34adb4e3f3a31e3c24c55c6d945a88

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d86476a935c88963d9b8e1a9a0d38188790e9622169bfbafa173046846709d3
MD5 44327ca739ddcb3cef6411a7ca16ba51
BLAKE2b-256 9f8bdfeff925cb6ced97ede701d5c6a99998da963c6f2e06abbf879c9dac5b54

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a5e8ef588c109725dc713ba69aadcac00a1ef90c2ce9c0a8c7075128f569f47f
MD5 be36cab8377d26d8ac156038a7028fca
BLAKE2b-256 70f67e2f4dab0b92ab46111bd48cee9ee1e5f519514c44e3779ede5358d7ada0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 c83acbce9f2b5e3f5f5eda9e53d2001fed22fcdfef81274a9e02d8fd53b70a30
MD5 25d57ad3e249f799be47e7735da557f3
BLAKE2b-256 6510fef04fbdcd44a4a163cb5ff5674599c6d6fdefd64a5a459438f9ad2ba042

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ceb3e879afac028f93d272c957814695dc5569e4904262dbee92f6c41bd5e4a3
MD5 3ac82e82f752204575dd99d33a78f5fe
BLAKE2b-256 260793cf699ed363681e754d7c3fad587fb09ef6b65618ee193332ad16a68d7b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 ee19113bce2f3acd46432050688b70f61acd6857d75abb9ec96341b7e9ced123
MD5 f496c286d84b24e892bedcf96dd8ef84
BLAKE2b-256 ff5c5a59527582e9bcb694b2f08b9894134b65a0f5f79dbff174f054f5f74ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.4-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.4-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ada748108a43d29b7c328ba7db3755327cd94f028bcc1a7ee3f0addcfacd9c38
MD5 33320dd5da3b7e1c8027c85cd633b3bb
BLAKE2b-256 9f84b6a1490922427204fc47df920ed002eec709621de6b79b11592bf45c623a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45bebbe252550fec975ba3b62bc6f931643cfd3b5464ef47619cf3fef154e01c
MD5 e6a56c6c2e1ffbb1c6b9734aa1a1d2b4
BLAKE2b-256 1861e16462ef18a87247dc9ebbd5c606f46d5ce67e708bd9cc734dd0d9222564

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 350b272b2279f4135a64fc0c304a5d08e28a137c9573442c606152446638a831
MD5 d0e8d4a8c31125280456e5c71af00841
BLAKE2b-256 0429b39cae08c87c140d3d274f0a2c058cb5588e836175c3309e260b230ab07d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 58134228927cee6c047d626c08e60a81be604a20578a12ce752cc5c9a84d4826
MD5 b4e410db2a4fe238367012ca6978b157
BLAKE2b-256 a8f4025890cc389ac3ec485ecec607d4a7ca47e15bfa2a465746ab98af602536

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b61805357d966680acf68b3b6d49772631ed9df44ebece10ff1460e117a7da8a
MD5 12ce6770a0b95c641326fb18862254dc
BLAKE2b-256 85713f54e1535c8f323d91ba566044d7c2b39ff6f6a2f1d0bd9071779d07b9b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a419ee85e654927baabda3929c03c0cc1112bf472ff0dfd6142f4e3a81ca4162
MD5 21adb553192794265831dccfe7419efc
BLAKE2b-256 4e72940aed42c73f9da345ca2de0f6e835c726498159abca5f1ef14fb0a2af8a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e738ab81179510ce79b2eac9a6ecf47feffd9e76d1c72e403005dddb6e36c06c
MD5 873fcc5f8810974e3c208c2a52147746
BLAKE2b-256 b9c65a79e0eda3e7b6987d03d8c622ff6d52a42165a12e8418eb37694b9cc4b4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23278f808cd81d5ada7184a76606b925fb3389c60e1077b2cd7da7b1fcf0553c
MD5 b46c46762f3537bd5d7db78db4c18a85
BLAKE2b-256 ce4e58b9b1460afc97a4c0b17ee89af701c4011d4d7f46470eba3aaff76a8069

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ccf4f7a79e26bb7efb06ecd50c177833b71df05cbc748701372325e6bcc17f6f
MD5 14e259433b41c74d4605d89a2db4efc0
BLAKE2b-256 fb81f1459415cdb6c10d46942779de39bb59a77b38e5a76bb1def9227962eb45

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0d21d0d2c82bbfeb1677a9711f38df968f9837576102bb4add1bd449d28d88f1
MD5 0d704530cdbc02d9f2d4b2c3831d4b0d
BLAKE2b-256 faddd36ad35986718530498a65e45e3713f9f0e6a580f192ef02d2ef7cae9b52

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50e337653721d20ead710da33bf44487fbe8a0db8782714b60306481e9f95b51
MD5 48bf181b77a360bb05c682618513c45f
BLAKE2b-256 e907057bdd3a9609ffad59b06239cceee784b047f6c720247bfaa36d2103e138

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 174507f82d3594622acb1dd2dafecf2d899d6d506335494e7107767bf05f3aae
MD5 344f6fc28bcc844b34469f0ea18dbc57
BLAKE2b-256 a51aad561f99f90884089e6403b76c220610809429ba868a81a2e7ce115d32e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 31eb43ba2edc704ab2ec27815315dd8a19def0fb16215be4cfe8d32fe78ffd51
MD5 94f93073015ecbf391d13829e9fc4b6a
BLAKE2b-256 5841c0acd69271de7a1cf439e77d5d60c18575fd09bad56e798b95fa23458ea4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 45bf2e730ab8905d0527fe05a86500f406e64305c34cc81ebe64b4617cab9760
MD5 5efc55c5cf3f31a0dcb22768e095bc36
BLAKE2b-256 5825895a11d1e4c5c2acc6d816e2bece34e02d9dc92f2182ae276cd819e9e804

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 135036c5cfc93864affb0f9af9a27e5d7a71cb7bd745e7b6dbfc2d56cc30e827
MD5 644b923f13fb069374ba63c769707237
BLAKE2b-256 694f9fe6f05a47cb550c823155052116f710064b6be5c6e8ec4e9faae7e18115

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8a1fc236528c457cd739c88abe823da851b7ab645d72792f88658114cc340c12
MD5 e506162dede28d68ede3cef3258948df
BLAKE2b-256 c1860b1b80fa1ac3a0aac44e2922a6964fbe9cd52af5eab8fa933bf9e90b030c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 03b229037d25b801e7af53fd52b9fc49d9439b036fca1e087e02780631adfa97
MD5 e14c6238f9618542624173b5ffb9975c
BLAKE2b-256 6436721bb59f682ff060d0c8df64274fca8cd0521b1a54506c2eedaef795b7f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48cb48c5346a97de792254af77715aa2529c2a1ebc5f586aa0aae44a02f1fe57
MD5 3db3dd06c5d7d28157ab109b2245bc89
BLAKE2b-256 d50e30b2b324b93ff31a0bab539c102aae59e84e444031b2742150a7646aa1bb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 445ee3bfb46e85838387fb3c536a73cc0b994dc192b004e40e170adc54aa2a7e
MD5 473e49de1cfb50834a7267adf9c623e6
BLAKE2b-256 f64052e1dd5636e9f5a27f6b5a4b4e2f33c322fd72afe956c397d82523ec4a80

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 286867fb156488c251a3721766e380ac4495e4fd6b51aaa1403d89ce7f4359d9
MD5 e7c1a312670f395c77c9aa3d62623bb4
BLAKE2b-256 b067b4faebde9da4e8173d0e5a30e8cd31335914af7ef350b988f27fec588cfd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 213bb68d9ced5cf2bf717b1071bf2b09b4b04c426256f9fe6d054c60318424c4
MD5 0ee63f6722d3efb6ba123f510bf50368
BLAKE2b-256 83c8f4a865490df0dc0c8531d4e59ac411cb6dc24bb255d2396a6f1c60a368f4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a1f4f5ffa55dce6307631f3cb2948e117e665966ea512e0d502b16c24f567e7
MD5 b0e14e6e4da20b2213e603dc5cf43ce0
BLAKE2b-256 7cf7a0057808a91fb3b6a5f3602b528f0cdcb3d53e0ff8315d73fabdfdf8fec4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 978f28401afbc76cdc3df9e1717b4229a06b626a1dcc75db4e1f2beb3884c3e9
MD5 27e0264f7f260fb63afbf0ee6f1addd4
BLAKE2b-256 271960677af50d93be4256213de7cd487f056944c048b9c0b6f2e45b3a30f666

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 17a7400cec0256f0a71ae71f9da398f9894c956ff6668a1c9d317b3367316320
MD5 4df016840d6f1cc7071037c711650c6b
BLAKE2b-256 1d86f69ab82707534a0cb2057bdca04f9200a71214c7551800f9d34d6ac39e4f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a219f0ac59817a9114dd2aa57c13180f993e819ba658c7ddab4b66ed1ee0d370
MD5 246c1efe61b52287f1e57525604a2706
BLAKE2b-256 fc57527910c455b5ec62f6871bef45d4f79fea16cb8c966ba0d4a07f0339ddc4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c174bfd1c48a1b51a3078e95586dde718374bac79719ab3541ec9e74aec40574
MD5 b883e3b61415342a0537fc47f05af8b8
BLAKE2b-256 69fdff811fdb6d3d3e67fd9bbfb75881675d34a42d0ef29a45d33e3e233dde07

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3cd3a7edb6b95b9b33998135ebfa18d709da82290fb8f27c858970b5a12c8b56
MD5 11295f438bcd908a83014d056a056ab6
BLAKE2b-256 04a1418d956d2735139f77fc35262179f1f52c23aa666de5a8ab3819c1ae7854

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0093ac3e9daada202c2082439d414a625c57184727a46e112a3fb2a81cb788
MD5 8a2403d91f4065dd8e1f816efcb798d5
BLAKE2b-256 6f44f48b9a131985659924df5fa5093f68fe72c7ee375329802989ba3126efc6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fa15757fea1dfcd5b7745cad9f4638929605531bd4018ab2adff7955f1a403d
MD5 90aa3922080f257379481e529e0d4d94
BLAKE2b-256 eb0702196ae6320c110235bb343f90dbd34be41f8b8964a3ee30db84ec12579e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 886b59c4d28ca97dd23b025fdfc50a0356be934efbbbca89ad26230067f86fe5
MD5 f1ceb40e74d412ad15e05e47ab429b4a
BLAKE2b-256 cf2f4b79940908c6ab8c795097c102999d7bc1f7e0b8604dfd1c232f9d99d67a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 53eaa697c4d0422ff4cb714d00231b43352064d97b944033b30c1d57cc506ec0
MD5 9f7f866866899eb08ce1c4dfa990e81b
BLAKE2b-256 2ce942f1da77cacfc184e6ec929557ef653b7961bbf6f1da460b9221273948b3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 45488d1a5f9ab5bd90aaa1ca20f50fe1922b8ffad71a2009d2adf41355897aac
MD5 d51273a7956ad21a19459d842bf80f4b
BLAKE2b-256 a119c8d0d36a9d16cba5dcee67d389c9333b988c8986a653a61c00a451817a46

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a095db8e15a6020db149ecbed6461939fe74f6acaa3ae8b702a1fe8c38cd983
MD5 eb0496df9345e96ea2ae33e8e88e0f11
BLAKE2b-256 1e9ea0ac821a2229186af5e2e3c3635a78abb23cfddca57f38513ab5d70420f3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30cc1cebaf9aef49db06357a50398323ae04d70460c0491837d026ab7d6452ea
MD5 190f71e7c21bf9702dfafd95f5a3574d
BLAKE2b-256 12495ef1c5cf98591da3c5b952b39e6a298084cc1ce353bc70f85e82397a5036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fb0a5be8d9aa213150e8d8148a42aca4984b285bcad1e69587dc4298edd929b
MD5 bdf9417637a3e09f0c0446c6f4064bf6
BLAKE2b-256 1537c988229753629ef1cfd5198337a83e624780ea2b3787efe9e747c05aad2d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 720cf832eb2d0b0dfee129cb3335a26f6ce3cc45ee1187e8f0731758caa16792
MD5 555a79d2620fdde3bfebc682d3aca9d9
BLAKE2b-256 924d411ef380cddad28dc001f1c6d75ec72c76cd3817030f68ec1ccfba0ec6c1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1b2f3bec4261a94019575481c726c29850f72e27907773c75b1de421e20e9f9d
MD5 65f53713ae3f50a03caf05b5470d6bcc
BLAKE2b-256 cca9feec61ed296d993db9dd097e0f6723e3f576a647722367547495e4c5b05c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9e9ab13760aa8b6d0881ae7cb04fd891d8d490cd2554ea8e79bb278399169bcc
MD5 61bbe14e825764deec4172f6a26fcb19
BLAKE2b-256 ff39b62eee45e5ea4de094a258cbb3b01c1e856ca51ddfd95b43135c5effd1eb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e985382be6d15da8d0c2710a6fa7b9070fc9ecdeefb7f580e88373984ec8be3
MD5 c6579f789e786a9e2e8993ec0926eadd
BLAKE2b-256 e17db53922ba7d9e5bf797324e63aa05906ec240871899f779628df068743e2d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bee7d3aed13d56f54e681df38c3a23031bc9e3863f687d9d598825c9146acd7d
MD5 096d98ee5b0bdda9f2d8b4f45375e572
BLAKE2b-256 b85eec4bb09a70b26ea99d76a8292c3383b960b296de2b347ac9986678f1761c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0951315a6b3142ee2167404d707743f0157c110091342b1aa0accac5cf0e4acf
MD5 828c88b174e939014bd263d9423a91cb
BLAKE2b-256 f94c6766e5f60bcda26d244333aa71d0a702c1c9b21b251d543c7af5953d1eee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc07876cfb079b6f6f36d21ce75784ad6c2c6b563eeac0ed26c2fa2669b85df9
MD5 e118f301bce411c06e2b128c2f3673f8
BLAKE2b-256 96d3e97cd6f5de2176bd90ed4076c7a9b5e09d0f0b9687d00a576507988bb62c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7b9100a93b372418d8688f3f2a3e5b45c64d70ca4d6176e121aca1e3bfc1e32f
MD5 2931c17aad6ccd8897a8fcec765f79d4
BLAKE2b-256 a23e763e370340db16115c5e63ad46e21ef0770a7f06928b3d3b62d8f8edfca4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a8d5ff04eb1f85698a78d20c62a14676e7b960dcafde09a388d60ad377d355d
MD5 757b02bc1ec345a928353c9880233a74
BLAKE2b-256 7295f222f13b6fe623310be0eb61a673bf26df439ce27e563ca8e422d0818777

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 251c63dd46a0659bb875cb254dc4c1e79ee91a847c737cd62373295afc2235dc
MD5 282ff3f67984d331505377075f983044
BLAKE2b-256 f17470ac8430e28f21e442c7bcb964eb46c4363f6881ade4aa0e978bfd8d503a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d759d05634f1b038fb625a66662a8c85e5a8fec912da381b5149ddac107482b
MD5 7e1d35b9c8f9e00234c361929939e9c4
BLAKE2b-256 e222b533b493d7025456f44518b33e53e000021a20fe7c27b88cf3d341df7186

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cfe0a92ae30151869e67a4b5f5e105e4e03ad30b3f38e5211b5bf77d0881993
MD5 c6a7a6d4b7c6a79275ec8c3805e04e38
BLAKE2b-256 e4e16710bb44510c4e4a8e0f004bbaf3cecfd048141309c77bae56d4e5a6ebc1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e6720ba44ad7e72174314d0e1fb0172494cff5c73a3a8a2159c3d2402ff15565
MD5 ac39071338a07ef594d7a4836ee1b475
BLAKE2b-256 33c907e227b930c8ae513b8ef1aae3793499be097bffcdf7aee4fb8b33db4cd1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 69fc35c0779522da366c563e5faf203ffc1f8ff0021d5b1337fa4efa5be73177
MD5 7073a06bd4d2a085b9b89d94f8db9de9
BLAKE2b-256 9a7050b031cafe72a5c1878b903ee87303f71313345566bf3d6ec202e5ddc9ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c889f6fa84957bc7e8b4eab71fd16a0455068d5045e3aa40c733071d2b2fd77
MD5 6d39cbeba70973d6c101c2b0a8e73b4a
BLAKE2b-256 01bce0a7b84af04ec02d73a48aa71f091e1e4a2107e3074b7ce12195b66901f4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3e413d7a4a9b4866b7a761d6060d434b64d23cd35122eda3b026a0bbe8196b25
MD5 ec70effd14349e34aae45474099c67cf
BLAKE2b-256 b1bbdf90f62c9cf7c93ea235f6f9405143bba802914607317266dd81fc8d737e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c02c0e570c5c7e077b0181a9f3cdb7d4c3617d1cda6b5c95bd5d34022923d82c
MD5 3d1ffa7604067cecd6cd76c888cebb57
BLAKE2b-256 ee2895456fabd2daf6be89049a13fbf03341756014d2959c83d12957d4c49694

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a5793c7698a53f56f4a1889a4737c7eeb1b7ad0842fa6b1abca22913ff79c8c1
MD5 d10b7d4aacc19c400025db51d7eb0e3b
BLAKE2b-256 ba5af99c92068f1e0f5c886899ce0e4a619db376ca98c5279d93f95bd86906af

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 425f8cc86ab5018b4b8d4a23bc8e74d964bd3d757c3702e301aa79be76c53f6c
MD5 4440844af9e7d4e41a3a3c2c95e092d9
BLAKE2b-256 557edbd637572a279692e5518d117274a9331bf5faac59f191d30e82521a3ec7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7cc528e760a8af06f2b13e9b9f362cd90c7c718ea61228a96dbd31ba16ed7f47
MD5 9edd7fab0aa92650f3b8effd7da1bef8
BLAKE2b-256 dc72fbf17c589f92c0b3bbf6709a425661f8ef2ed0d46b38985a7d7b5a0f6b91

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96f7c5c15656040ddcbc51e56dc59b58aa25999d743c126abd425b9766ab43e9
MD5 2f1eeb8561647e4b15918dc14c6d88b2
BLAKE2b-256 d96d11014938d3fe9bea2ea2dcf930f26ed565bfb2f5be3c756362ea48c92636

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae58f361bd5dae942717c65d3413b478c70aea9c462599e7b9adad3731db3894
MD5 f237b24a9d5d86bdca84c81b8f077185
BLAKE2b-256 1df4e87bc7629af9a14a752b218764a78742d73c2c563ac58315da6841f0cbe4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c2ba30a89035b57b73e00475de948521602f543d79ce01db10b04b36c4c76fc8
MD5 f50f8cda50570e8a6ea0b844945728f7
BLAKE2b-256 5c9a08385733c9321c9bb78039d3ff31045e4fca962d9665023c4eb70f998819

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f85915e00dcb1cd9f2f890ead064ed40a27df06f0db65be427b29482ae357572
MD5 0ee2144238f3b2c52ebc411ac2e90dee
BLAKE2b-256 ed7408e6c1faf26ee2732023a3828787ba535557122774f4a386b1f715cbd8e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db3ae52ccc150dbc84704e9d642743897f3e1c54742ff34cacb661e52e3818a9
MD5 d464ccc674ff61b53bc26d195291933b
BLAKE2b-256 7d712b35e91455209b85ee98f7859583e0814fab57d3af0f2381aaee34c37304

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c3e98c55bde2bcf7db3c70d1aed7ae9aa8aebbf19a250c66645cde44cdb8b867
MD5 7ee837627d4c8b857f74bf6448ce74bb
BLAKE2b-256 ae8f0de9d4c8e05ce0be71b436919a216bd7fc5cc6e2691c0602295efb22b9ed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbab5f5ff6897c81f355d079010cdae85b02e5a0b518b5251523b8ad8ae9ac3c
MD5 ebedbd51bbbe4ed65fc7a9265a4afb96
BLAKE2b-256 73360093091ebb270fcd1bc1f6e095f93b2e0ed7f1011c28837dc2dbe5f96b99

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44149f46500a0a41b95b4d99c2e586a77319539730607b9892974a092788b111
MD5 665235bbf2a68c7f268b1a150151c47d
BLAKE2b-256 257dc1ab1ef09e9d4d835be5d58c0a32a1e1de8397abaa4e502a9d4141328cad

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e1d52a05dc417279f7e5c7618c5dfbbc29923aaf9bc0a5c1802ddcebf54c61a0
MD5 9398fc16e6f93ec6ea8f28ebb38bee59
BLAKE2b-256 8f615f9c29c3aa67c30238c4eadf95149b1d983a48f69b86b0cff927a7d6df13

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 36c0d9db44b523ef93d03341b1c42d69ff01d673c053d1b1c6c3a363bcaa39ba
MD5 42e37c9122ee5580ec07069818b44077
BLAKE2b-256 784c3b1365d58a667689e067e13d055fcd92bdf8d9a2fca3d9201b47ed5b3631

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8876b39961e33d912afe3c1bee18ee564fdad0206f873cc15d522756b7f50737
MD5 cf31d365ef90f788797b1555b48c219d
BLAKE2b-256 08b972028c5b56ced97f456de6aefa79435ca64d7f77af78ea8cf3c76fc5195f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98914de2c4d7f0f9f4a8c6ea4bf05841f4175796941e3ef7d47eb718f22311fb
MD5 5196f250280d0d2ac2a68055fa8e8e2f
BLAKE2b-256 587b6e8ef26f6d510a7916064fec68d55fcbfbdf7eb01e377480d66a122152d8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b3083bfe87f95c756e610bd8025f26cbd1cd4aaa03a422f2d65efb7a97cd53d8
MD5 2d482f91e8e7aca6a1666bbbd0ba075e
BLAKE2b-256 5da9424e38838793d37160b4379c702f61c74c598fc6cd17204adbe3c554f7a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a235f73d6e020855dc29dff012d920c02ee0feab8d73a24185a7569f4be1161
MD5 d967336fe6db672bdead71b169e92e37
BLAKE2b-256 516feeca9647245d5f92e87d53e5f14335bb42fce1a7e6842c8045b364eded8b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d1f5a500bfcbb2c0ab85e98a0dcd70f5899d34efe365a0187700369a79603031
MD5 7984a99bd6f467b69c47058554e3432a
BLAKE2b-256 f1b7adfae4bf9c63bccf12e2d9690a175c6579047a6eec3b5a6a5f51428c15e2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ffafcbfc7b549ab940047e505c831eabac5e67de53e1bc174adbc5285c55944
MD5 7059ff18790f8b742999763d17634771
BLAKE2b-256 c20d41b848036db6621370c1f2e5471a7da8149c730f8552a5257567721f4576

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9a2a8a50a93dee0268a860a07fa3b4bd968f8ce4dbd794957da772f395368526
MD5 2270f9fc3ff994fea9ae5a8a00447687
BLAKE2b-256 8584cb08d79f1762daafeb2b030c470cd0c725c97b8ad67412457c6f35c53e9d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdee8205a44d0be91bbac4c41b95d86641b72dfc7aef1279400e4fda3f26a937
MD5 6f52160a0f0d3b758fcb58966a945874
BLAKE2b-256 9f366683597de4907e70c717e3588c541202c66086a72ff3db58be49de66e72c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fbc1a15dc8cd1689508758d626b372b1f09d28d9577667feaf9e6bfcd8efcbc
MD5 9a6a858e0c9b50843884531109970e90
BLAKE2b-256 6ae24d11bea8fd6a777149c6c20645f873952eab5de3a2497aa11648ec9ab6ab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6af4693716bfb03f1752ef1b30faa593db2c01d5272e9b8564a1549452a979ab
MD5 f5a0f0d0bcc68c96d0bb63170482a277
BLAKE2b-256 332ca763a8251f50fba042af0fb1f02bfec4b31381e40aff760db2be7b2e1f84

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2814ecd8e818f487bee4b0f921bc4d1c176cc5fc71ac0f072d0fa67eda4ac14b
MD5 65500a5840028baaac05c48568766aa7
BLAKE2b-256 859f83a07b6ec0e043c050cfdd35fb0cf1b7897b91d554d6eea293740309afe7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a4d7a54719b67338a305dca2ce6aafe366817df94ddfd4b5514374356f5ca546
MD5 9ce685dba616b1e95609782f15ed645a
BLAKE2b-256 cbd5ee6350fb0be9122bb6c67082a876d34b90d980d100c106af4b81023e04f4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a74bfa37147cc08fb29df10bd9c16f40fa7f860cd3a6d2fff853323a94f6e17f
MD5 c4680c283be97dd4a0328656981e6b8e
BLAKE2b-256 b0193742a5eed62317b03b4002ee865dc9fd720308bdd0da1f29a5786c630311

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60a64cbccaa11b7760ce705a14ada17ba459e7ca9f23ba587eb013821032d7ef
MD5 dfa1f6ff0ee89ab310988248f5200b8c
BLAKE2b-256 834f48865bd02a16ee5236bc46166b2946f37b93e07b0eae355dac0be0b216ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a3caecf8095e48dc72f84bfa42e23a848cf410cc9cc13031fba4869b706a21
MD5 69a7d392ae67d5b971944dd5802c5579
BLAKE2b-256 25881d7df7201750b37765ef2b23bc1c526c028dadde80afa0f57a118fc01182

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dcbf346a318a5e30063f547630b02bb787ce2f45b6368d5da143660b6a3835d8
MD5 776aac40a7831886062803169baad664
BLAKE2b-256 dff4f3ffaee281b276da854ac1d7a6a506d26cbc62ea2e623756f1d0a4a1ba1a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b28f41fa3b8c6900457f858ec5b03998f3a6d535fbc1bb2edec5961ea05ec429
MD5 b618aeb52d78b041b8e0fd040745db4c
BLAKE2b-256 71cd348d58f142aebc4873345c6b31087629182ca6e0f2b3caeaa528cf882eba

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for propcache-0.5.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d42a9a856a4a6e2f6c10f1318c07e7daa498d6593abe745c71dae4521a26ca39
MD5 ce280461447d80f9fc0d90ab1a9f1a11
BLAKE2b-256 41075222e2665bbf6e45847492ecbf3b9f3e4975a0ae300e5fd465df7d48ce55

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e904d4d01f36bd6e197590be1533c44e06058771e0746dd073a8ebb3ef880858
MD5 d5a6ba881f9994119657fb479bfe5be0
BLAKE2b-256 0a8a3db6a3543d8101263b4c52978b6276a04ead2caff2c5ab880d934f47bd89

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 42.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f86f7259efe2c951f43e57d471c9b41daa5bfc7db9f67189059cf1ae6d77fd9
MD5 679c34b2cfb529e5bd39d6ce64812a5a
BLAKE2b-256 d9e2c32a7df3f39caa7f11b2eb37ea5b6960a6946f2bc7c4b8ff97bbdf6d6b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40e94adb1e7d39ff28a8bd8d8b8fbd1df6b9f40976dbe379134f1ce058e532dd
MD5 7988b54577f1171050fcf7c6cc8ea56f
BLAKE2b-256 3d80c80f6adaaa1e51f0db2dce8c9b3714d94ec45e358a21f9a1910b10b40a80

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4054acf80d40456a0537f2913b349718649d8d6458a14ab7f48d0ce28c30869d
MD5 425c69d1a327a98596f41adf9775e30f
BLAKE2b-256 746bd510c0c378cabbf9d0ac7b663af6d00f2e9074073d93b20c85f24aa5c071

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dd2ac8f5b643454c2cc6b6118b13da16e88f4a6434fc3ba61aca384029f04f36
MD5 1a36bf26eef7ff30cf7cba7a5ecddd1e
BLAKE2b-256 892df9c47691aa024c8299a3afacd78d22a01ab57eb627b481b6089708e71017

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3ef2818d63bc86071e9d2989ae75a1bc32b8f7059cfd9f5abbbee70c32e2ed6
MD5 efd7828ec29525cf4cef0d2c1be6c7c2
BLAKE2b-256 654726810d889d89bba31db397e6a88f8984af775f5ed6bad0a29dce84324cff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2dba2f02d2d5c09ef8a0e6c1a42aeaa451f4be9898cb00b04fe98717da2eb23b
MD5 ea7bd11e2d3c746405943b0f9f5a2bd1
BLAKE2b-256 9ca3570d92fc952eae93b676f3a1568f4b89264102abd3c982ab6a9ebec58dcf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 594eb4c6ec35e7179b058481f4e9f02521b56de16fa577c4b85c76fb1bf8a9f8
MD5 a0a39105fed6dea7a4191b6e7586402f
BLAKE2b-256 625c9324fab27d6088eecc47fe4332bf7aaf8c1ded93c36f558391e8a06d41a7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 004e685b315646c410771836e72a44f143bbe624f29653a42687815069a303d5
MD5 3a7692689e64377008a19c7b37825537
BLAKE2b-256 3c071e0a9bb310830f2245edbd5cd3c6d24a783c053c4efd8e08e386e513c940

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e9368e87a3efc285e559131092c5db643eb8e56de4ee42064d5baec22ef2bb5
MD5 3e83a480bb0ea60045707ce4bc95f0bd
BLAKE2b-256 c706519a5ebb48b6f94beb48396e55c905f12246a25c3a3608a7ec7bceabf50e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4f2d880ff60f45898f4acfa152aac8d04e3ee627d90ff4003491bf92239d5757
MD5 36adc9781f8583c75c837a583cf8358d
BLAKE2b-256 bc5ddf0684fc2b1732a01a7bec26d7897369022712422d25b09c37ce7dbc88a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 56fc3f7599528db40b1efa0889a620116e2704144495273d66066e8164e45838
MD5 f730c9f98cfb06fbc0339aeb850b30b8
BLAKE2b-256 5cb4442715b2e980df51be52d203549279e027728f24c80b00b5e525e31cd5ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62530ca89187827e4a4fe733f971abe81a7542eeea48ff61995f19b64d7199c8
MD5 db789efdf2d6bb1012bf0c4814306b2a
BLAKE2b-256 86a87c6cd6bfead1a11f2e411e688640e6d26574cb0bde7dcaa7423b0b65ed7a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fc24f209c1b7f7f688b66b98293954f5504279760999b58920ee12dd8471c1d
MD5 a4816196582696a1008eef8228e63815
BLAKE2b-256 05cfb5248180bf056cc76acc60c9c6e8c0ebbfdbd1c6cffd31fd14996927b7c8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cbfff4423eef4cc6cafc021469641a2b835f610b2647a6c5281903e21b8670d
MD5 c916c986bc1c7f98028a3669746293de
BLAKE2b-256 e74b5a52e1a7b43563f7d408814194bb23cc8bf214eb6b86639b667a33a8d0d0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 897d1ddf6716e8f47200f7aad9a0efa6cc7586df66c6defa572f9eab379c078e
MD5 201e5a7bdb84d8a79ac6823ca976d978
BLAKE2b-256 1e4014b21e505b7921617466576423f188a5c9caddfdaa1cf4b2b8a83d8fe216

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6c7599df2b57ebeea8de011b5f2f7b85de95e76037d43d34b95e328430275487
MD5 0a9f0d4340c3aab23f3e26e3c1437f6d
BLAKE2b-256 6687e71b24adc8ece61782ba3d6f3879e6a07fdb85bce21a9c529524184e3ec6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 46.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 146f48a9e4812611a7581003b1a39de56c34967046310c4171a68ef908c9a745
MD5 fbdeab28ab05ecc0ce93184ca3bd1a33
BLAKE2b-256 80570a0b4b1122f4ed5bcd1c626d910003cdf5282c2a12f8a1cfa17970b3ded2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: propcache-0.5.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 43.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for propcache-0.5.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 141fdbd73748db0cf7636035030aaac383d2efde8f34e7bc24594cc776d225b8
MD5 187d80438a602b37987cd5dc866e2772
BLAKE2b-256 55c051e5d1ad504e9529831606534c48e272db751072eee9ff07e4abe37e50bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d605bb239b796e82a81c6709548b2bd460ab73b4590cb0c83de8a2dd9694d0f
MD5 99063f0321d9249cde9c46bcc9c74bdf
BLAKE2b-256 3af9b1a0bd47218216b935d019912d6fec1676ae7c07f15fa82bfb54b8d58976

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1783582065a1f07f9d9ee1e992e13f15d7dc8fb1eb3a7476d43eb3f2e69d26bb
MD5 25167e7b8c044f6cfb24cb6fe97a8578
BLAKE2b-256 410b7b19eb20bb0b1f9476d08f6e387ae094dc6870fc06d459ea1f35f28b25d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e9f165403b81fea7e89c932d89046a1e3d9a3a60e8d7ef2f249dccdcb0982bf5
MD5 550f8d64cab664b61f27e6339adf4097
BLAKE2b-256 ceb759c16e245a549df202b4ebe2de91fa58a67dc4373df9840e372a64224dee

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 279655a16973f1ee2bd2fe79973137681642fd9ae0d89215bba263726eb0dc3a
MD5 03364eed28d773224da310ed86994f76
BLAKE2b-256 4b3d0189b6537f4a8cd795e685a130a6f47aeda78a5b7b062574705cffc685ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc2461ecc45f17893f8207e73b46ea8ba93e33630e51cf4af3fbc21d47462b1a
MD5 7d7cf0f1cc55f6740d53915be910a002
BLAKE2b-256 6bd4bf563e19ac9a5cc47113431337fdf2ee3573859f3f3e0a58e59833e9b75d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f273dcf7149a50527c4fd1f55cfe9eac0f60753f5af544b4c9352578e20c0874
MD5 bf525698b77a85879f7ecb74e4e5f83f
BLAKE2b-256 6fb4a468700d0526dfb2ca6af5d790125de5894acc7d8ecd99243ecedfa4c4cc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d8e017eeb7482bed34cdb0d61cf2bcfc88d104bbab296a17cd16a6af8aabc70e
MD5 2b7c3db88816da3546d53dc679f504d8
BLAKE2b-256 9d5354bd510bb5d473edf66914602885226187218b4e3a5017e9dd80bceea41f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f574e460d1c8a08384a016fdb09ccf3543433263ed6b2f97104f979e64ea57c2
MD5 e89784aa196f535d80312fa74ce583ff
BLAKE2b-256 f0515adee15e12a7e314cece4543fbf295b0fe1b504dc78b32dff4c8eb1e29b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ec6a85f424afa8d23e0d9a094e5dbb6eda01da91c92b9183cd433768247ffc97
MD5 18f628b2234782ea90cb3533ee1bc8ad
BLAKE2b-256 127c08c15c7df256f94a6b4563f74165c3242fb554cdd1909b661d093c31b976

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9f3551b8a35c1df3e7ea4d2d86edee15f0dde1bddd434a71744048683544d0ef
MD5 9a2c605c64423e4979a42adec4c3ac1c
BLAKE2b-256 7487a3e199c45b26587f073db655d19c30d2144b0f883827ba6ab77acf5c7d45

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9281e922c072158c91974d4589f1dbe0fee6d467f284c28e463f9f5a4d933f4
MD5 c0350343719ae47fdfd38d0d75cae19a
BLAKE2b-256 bfd17fd3ffb5ca0e669a8fbf55d9fbb17c50ff5f44becfefcab27a9b9b67908f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d83b12902eb8bce151259c86c03ba746600b2d994543de46e370cecf96c452f2
MD5 45a87d7d7a8840ee2b714d834f9829f3
BLAKE2b-256 ff9a6be90814d8762952594a9e380161802541bff690f3a2e011dcc28ec193ce

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f911c395cef73c510bac566da9507bb6a43e7763d0c79138dc60ee53f11207e
MD5 4ab130972b3b30d0bd9e0a550ef5bfc9
BLAKE2b-256 3e6dceeca1762ed51230c08d557591404f844ecef5e294550136155572f7faae

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b77c313314524ca9c38fbd70f73515d04597ac58c40c939bc0e71eeb4abff680
MD5 68b9a9159b3efdbc38fc6bb6f149fc76
BLAKE2b-256 ecdd997704118aea215cc5f65c277f5323657b4ba44c1f9a32fb11c8064e4997

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl:

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

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

Release history Release notifications | RSS feed

This release

0.5.4 This release

138 files

0.5.3

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