propcache
The module provides a fast implementation of cached properties for Python 3.10+.
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.
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.
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
Improved documentation
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
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=trueAdditionally, 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
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
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
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
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
Features
Improved documentation
Packaging updates and notes for downstreams
0.1.0
(2024-10-03)
Features
0.0.0
(2024-10-02)
Initial release.
Release files for propcache 0.5.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| propcache-0.5.4.tar.gz | 61.5 kB | Details |
Built distributions (wheels)
Total release size: 24.0 MB
Release files / propcache-0.5.4.tar.gz
| Download URL | propcache-0.5.4.tar.gz |
|---|---|
| Size | 61.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ff6b113f50bc066a698db5d944d2c6dc7507168dd3341e255a8892fd0715a558
|
|
BLAKE2b-256 checksum How to use checksums |
b39a9fbf4e4ec0c2d7f1c32519fff782ef467859b8faa9fbc5331a96f6395d43
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-py3-none-any.whl
| Download URL | propcache-0.5.4-py3-none-any.whl |
|---|---|
| Size | 16.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
62c60aec739ed00124573cce1178138fd690c7676352d67a37328c1cf51d7468
|
|
BLAKE2b-256 checksum How to use checksums |
f5cd785c64ed382f3f04201870267b02783f63b4678c2acfddc177a3ebcc2727
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-win_arm64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-win_arm64.whl |
|---|---|
| Size | 45.6 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
dc4242ca653c9b30ab51c5f8193323e7bc0928f897ee9103201e59a43abcb72e
|
|
BLAKE2b-256 checksum How to use checksums |
57bebcc053f66a97355683884b448198e79580fae8e8fa4d96b9bb01614e9913
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-win_amd64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 48.6 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
02c0a34f16889cf800f10f0247a564d8ce6eeab6ffcd7c87198f769067eb8432
|
|
BLAKE2b-256 checksum How to use checksums |
d4ef8bae0a316d406644450522f2f3d44a4e19632f5f3bb60d1d0e6c53842616
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-win32.whl
| Download URL | propcache-0.5.4-cp315-cp315t-win32.whl |
|---|---|
| Size | 45.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1df8d8561b21465c5dd56110a01caf897e026d065b4b84e98a488209094272ec
|
|
BLAKE2b-256 checksum How to use checksums |
ea60d8f72cb24b412487ed4c397f539117d3b74c3c33dd32020e91fe00a958a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 279.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3af0c8642b2da4815d86e631232ac8286e17644fad907c19508aa8e7cb4ba8ad
|
|
BLAKE2b-256 checksum How to use checksums |
533c016f1cad8bf4c428d748cf399b2bac603026fbfd6966e6a5579b5c5b6956
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_s390x.whl |
|---|---|
| Size | 283.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
12682126712ddc19b70ff819debbd279e58adf1f0c8f8f8138c18ade2044b284
|
|
BLAKE2b-256 checksum How to use checksums |
3fd07f79f061e30d135bb615c9782c94a74652033d00b49254edbbf35a9165a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 248.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
13e52b6e0bde97dee98ab66552dbff2931649c96f1ac432eac299fe689ec373b
|
|
BLAKE2b-256 checksum How to use checksums |
1aae351b1a5225f5473c411d9a612a229ae147cf0cf65c72ad838b87219ea8e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 283.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
3eb2e820e8e2101407da93f17c57cbb7d225461955fc60105daaba14cd421ee2
|
|
BLAKE2b-256 checksum How to use checksums |
3a117ddf336288b2678a5f054f8da2e2bd1a719f5d4b7de714d9c6bd588a2313
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 266.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
420162a77f94eb1cf5ef7893f500016dabd548e73de956785a1dd899cc73006a
|
|
BLAKE2b-256 checksum How to use checksums |
5428fab2809c2e337fe26becea9648e84d5cef46075c91b826acb13e4f9dd04e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 280.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
7177c43eddf10a0893c4fec52ebb408fdcd7f7d63962caace9180d8f81b14ece
|
|
BLAKE2b-256 checksum How to use checksums |
cdb5c0a142b656093ca397039dd3fe166cbb87c945712b534546514a24cd2611
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 248.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
ef3b928d9c984322b5c44e6964d8dbc653da87d2d8ee1647fa6da43072e650a9
|
|
BLAKE2b-256 checksum How to use checksums |
ac9c34a55396910583ed07926669ab309dde2213a2dec05a7e946bb90ad66908
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 285.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
03969626faf0783a592dfa17e28eac06018bd0b44dafae6943d53b92421a7f72
|
|
BLAKE2b-256 checksum How to use checksums |
270dc5090f9e6f67cbc30a2b744c7bb0f8006dcba5ec1b0d82f866ae1cc7c5c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 300.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
770e8209d018175fc0063936fa9583b6d27e88c5ad31543f3383d66080efdd62
|
|
BLAKE2b-256 checksum How to use checksums |
f288c98f49183ecd3e5b204a556f0ca47baa02c2206a500fe8c7ec1726297b0a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 294.5 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
5cacf3c9efd09df409dc33654dd077e1c245ba8fb747b0f0236ef41b7c49b589
|
|
BLAKE2b-256 checksum How to use checksums |
5aeb5ce886e902a2e781dddf110993d5329458a9b1a8626b876c65e5e25bf413
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 295.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
10ef33a68a61ce317e095fd2e202a592ea92392b90944a78c993f0d9a73ab06c
|
|
BLAKE2b-256 checksum How to use checksums |
3fb69ed0a5c939b58b6bed740a05b5d0f919f0b318d03284b4b6d81a0fe8a29a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-macosx_11_0_arm64.whl |
|---|---|
| Size | 54.0 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
f5470694918830da62fac9e69133b53d23b736d7070e587b27a4a2be37e08e68
|
|
BLAKE2b-256 checksum How to use checksums |
246c924c810be5b7cf218ef47e707cf06d34adb4e3f3a31e3c24c55c6d945a88
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 52.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
4d86476a935c88963d9b8e1a9a0d38188790e9622169bfbafa173046846709d3
|
|
BLAKE2b-256 checksum How to use checksums |
9f8bdfeff925cb6ced97ede701d5c6a99998da963c6f2e06abbf879c9dac5b54
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl
| Download URL | propcache-0.5.4-cp315-cp315t-macosx_10_15_universal2.whl |
|---|---|
| Size | 89.8 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
a5e8ef588c109725dc713ba69aadcac00a1ef90c2ce9c0a8c7075128f569f47f
|
|
BLAKE2b-256 checksum How to use checksums |
70f67e2f4dab0b92ab46111bd48cee9ee1e5f519514c44e3779ede5358d7ada0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-win_arm64.whl
| Download URL | propcache-0.5.4-cp315-cp315-win_arm64.whl |
|---|---|
| Size | 43.4 kB |
| Tags | CPython 3.15 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
c83acbce9f2b5e3f5f5eda9e53d2001fed22fcdfef81274a9e02d8fd53b70a30
|
|
BLAKE2b-256 checksum How to use checksums |
6510fef04fbdcd44a4a163cb5ff5674599c6d6fdefd64a5a459438f9ad2ba042
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-win_amd64.whl
| Download URL | propcache-0.5.4-cp315-cp315-win_amd64.whl |
|---|---|
| Size | 46.3 kB |
| Tags | CPython 3.15 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ceb3e879afac028f93d272c957814695dc5569e4904262dbee92f6c41bd5e4a3
|
|
BLAKE2b-256 checksum How to use checksums |
260793cf699ed363681e754d7c3fad587fb09ef6b65618ee193332ad16a68d7b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-win32.whl
| Download URL | propcache-0.5.4-cp315-cp315-win32.whl |
|---|---|
| Size | 43.5 kB |
| Tags | CPython 3.15 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
ee19113bce2f3acd46432050688b70f61acd6857d75abb9ec96341b7e9ced123
|
|
BLAKE2b-256 checksum How to use checksums |
ff5c5a59527582e9bcb694b2f08b9894134b65a0f5f79dbff174f054f5f74ed0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 227.3 kB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ada748108a43d29b7c328ba7db3755327cd94f028bcc1a7ee3f0addcfacd9c38
|
|
BLAKE2b-256 checksum How to use checksums |
9f84b6a1490922427204fc47df920ed002eec709621de6b79b11592bf45c623a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_s390x.whl |
|---|---|
| Size | 234.5 kB |
| Tags | CPython 3.15 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
45bebbe252550fec975ba3b62bc6f931643cfd3b5464ef47619cf3fef154e01c
|
|
BLAKE2b-256 checksum How to use checksums |
1861e16462ef18a87247dc9ebbd5c606f46d5ce67e708bd9cc734dd0d9222564
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 206.2 kB |
| Tags | CPython 3.15 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
350b272b2279f4135a64fc0c304a5d08e28a137c9573442c606152446638a831
|
|
BLAKE2b-256 checksum How to use checksums |
0429b39cae08c87c140d3d274f0a2c058cb5588e836175c3309e260b230ab07d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 233.2 kB |
| Tags | CPython 3.15 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
58134228927cee6c047d626c08e60a81be604a20578a12ce752cc5c9a84d4826
|
|
BLAKE2b-256 checksum How to use checksums |
a8f4025890cc389ac3ec485ecec607d4a7ca47e15bfa2a465746ab98af602536
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 218.3 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b61805357d966680acf68b3b6d49772631ed9df44ebece10ff1460e117a7da8a
|
|
BLAKE2b-256 checksum How to use checksums |
85713f54e1535c8f323d91ba566044d7c2b39ff6f6a2f1d0bd9071779d07b9b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp315-cp315-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 228.5 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
a419ee85e654927baabda3929c03c0cc1112bf472ff0dfd6142f4e3a81ca4162
|
|
BLAKE2b-256 checksum How to use checksums |
4e72940aed42c73f9da345ca2de0f6e835c726498159abca5f1ef14fb0a2af8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 206.1 kB |
| Tags | CPython 3.15 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
e738ab81179510ce79b2eac9a6ecf47feffd9e76d1c72e403005dddb6e36c06c
|
|
BLAKE2b-256 checksum How to use checksums |
b9c65a79e0eda3e7b6987d03d8c622ff6d52a42165a12e8418eb37694b9cc4b4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 232.2 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
23278f808cd81d5ada7184a76606b925fb3389c60e1077b2cd7da7b1fcf0553c
|
|
BLAKE2b-256 checksum How to use checksums |
ce4e58b9b1460afc97a4c0b17ee89af701c4011d4d7f46470eba3aaff76a8069
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 245.2 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
ccf4f7a79e26bb7efb06ecd50c177833b71df05cbc748701372325e6bcc17f6f
|
|
BLAKE2b-256 checksum How to use checksums |
fb81f1459415cdb6c10d46942779de39bb59a77b38e5a76bb1def9227962eb45
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 241.2 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
0d21d0d2c82bbfeb1677a9711f38df968f9837576102bb4add1bd449d28d88f1
|
|
BLAKE2b-256 checksum How to use checksums |
faddd36ad35986718530498a65e45e3713f9f0e6a580f192ef02d2ef7cae9b52
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 232.9 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
50e337653721d20ead710da33bf44487fbe8a0db8782714b60306481e9f95b51
|
|
BLAKE2b-256 checksum How to use checksums |
e907057bdd3a9609ffad59b06239cceee784b047f6c720247bfaa36d2103e138
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp315-cp315-macosx_11_0_arm64.whl |
|---|---|
| Size | 51.7 kB |
| Tags | CPython 3.15 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
174507f82d3594622acb1dd2dafecf2d899d6d506335494e7107767bf05f3aae
|
|
BLAKE2b-256 checksum How to use checksums |
a51aad561f99f90884089e6403b76c220610809429ba868a81a2e7ce115d32e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl
| Download URL | propcache-0.5.4-cp315-cp315-macosx_10_15_x86_64.whl |
|---|---|
| Size | 50.1 kB |
| Tags | CPython 3.15 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
31eb43ba2edc704ab2ec27815315dd8a19def0fb16215be4cfe8d32fe78ffd51
|
|
BLAKE2b-256 checksum How to use checksums |
5841c0acd69271de7a1cf439e77d5d60c18575fd09bad56e798b95fa23458ea4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl
| Download URL | propcache-0.5.4-cp315-cp315-macosx_10_15_universal2.whl |
|---|---|
| Size | 85.6 kB |
| Tags | CPython 3.15 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
45bf2e730ab8905d0527fe05a86500f406e64305c34cc81ebe64b4617cab9760
|
|
BLAKE2b-256 checksum How to use checksums |
5825895a11d1e4c5c2acc6d816e2bece34e02d9dc92f2182ae276cd819e9e804
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-win_arm64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-win_arm64.whl |
|---|---|
| Size | 46.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
135036c5cfc93864affb0f9af9a27e5d7a71cb7bd745e7b6dbfc2d56cc30e827
|
|
BLAKE2b-256 checksum How to use checksums |
694f9fe6f05a47cb550c823155052116f710064b6be5c6e8ec4e9faae7e18115
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-win_amd64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 49.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8a1fc236528c457cd739c88abe823da851b7ab645d72792f88658114cc340c12
|
|
BLAKE2b-256 checksum How to use checksums |
c1860b1b80fa1ac3a0aac44e2922a6964fbe9cd52af5eab8fa933bf9e90b030c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-win32.whl
| Download URL | propcache-0.5.4-cp314-cp314t-win32.whl |
|---|---|
| Size | 46.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
03b229037d25b801e7af53fd52b9fc49d9439b036fca1e087e02780631adfa97
|
|
BLAKE2b-256 checksum How to use checksums |
6436721bb59f682ff060d0c8df64274fca8cd0521b1a54506c2eedaef795b7f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 280.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
48cb48c5346a97de792254af77715aa2529c2a1ebc5f586aa0aae44a02f1fe57
|
|
BLAKE2b-256 checksum How to use checksums |
d50e30b2b324b93ff31a0bab539c102aae59e84e444031b2742150a7646aa1bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_s390x.whl |
|---|---|
| Size | 286.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
445ee3bfb46e85838387fb3c536a73cc0b994dc192b004e40e170adc54aa2a7e
|
|
BLAKE2b-256 checksum How to use checksums |
f64052e1dd5636e9f5a27f6b5a4b4e2f33c322fd72afe956c397d82523ec4a80
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 249.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
286867fb156488c251a3721766e380ac4495e4fd6b51aaa1403d89ce7f4359d9
|
|
BLAKE2b-256 checksum How to use checksums |
b067b4faebde9da4e8173d0e5a30e8cd31335914af7ef350b988f27fec588cfd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 286.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
213bb68d9ced5cf2bf717b1071bf2b09b4b04c426256f9fe6d054c60318424c4
|
|
BLAKE2b-256 checksum How to use checksums |
83c8f4a865490df0dc0c8531d4e59ac411cb6dc24bb255d2396a6f1c60a368f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 270.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
4a1f4f5ffa55dce6307631f3cb2948e117e665966ea512e0d502b16c24f567e7
|
|
BLAKE2b-256 checksum How to use checksums |
7cf7a0057808a91fb3b6a5f3602b528f0cdcb3d53e0ff8315d73fabdfdf8fec4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 282.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
978f28401afbc76cdc3df9e1717b4229a06b626a1dcc75db4e1f2beb3884c3e9
|
|
BLAKE2b-256 checksum How to use checksums |
271960677af50d93be4256213de7cd487f056944c048b9c0b6f2e45b3a30f666
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 249.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
17a7400cec0256f0a71ae71f9da398f9894c956ff6668a1c9d317b3367316320
|
|
BLAKE2b-256 checksum How to use checksums |
1d86f69ab82707534a0cb2057bdca04f9200a71214c7551800f9d34d6ac39e4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 287.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
a219f0ac59817a9114dd2aa57c13180f993e819ba658c7ddab4b66ed1ee0d370
|
|
BLAKE2b-256 checksum How to use checksums |
fc57527910c455b5ec62f6871bef45d4f79fea16cb8c966ba0d4a07f0339ddc4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 302.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
c174bfd1c48a1b51a3078e95586dde718374bac79719ab3541ec9e74aec40574
|
|
BLAKE2b-256 checksum How to use checksums |
69fdff811fdb6d3d3e67fd9bbfb75881675d34a42d0ef29a45d33e3e233dde07
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 297.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
3cd3a7edb6b95b9b33998135ebfa18d709da82290fb8f27c858970b5a12c8b56
|
|
BLAKE2b-256 checksum How to use checksums |
04a1418d956d2735139f77fc35262179f1f52c23aa666de5a8ab3819c1ae7854
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 297.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
6f0093ac3e9daada202c2082439d414a625c57184727a46e112a3fb2a81cb788
|
|
BLAKE2b-256 checksum How to use checksums |
6f44f48b9a131985659924df5fa5093f68fe72c7ee375329802989ba3126efc6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 54.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3fa15757fea1dfcd5b7745cad9f4638929605531bd4018ab2adff7955f1a403d
|
|
BLAKE2b-256 checksum How to use checksums |
eb0702196ae6320c110235bb343f90dbd34be41f8b8964a3ee30db84ec12579e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314t-macosx_10_15_x86_64.whl |
|---|---|
| Size | 52.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
886b59c4d28ca97dd23b025fdfc50a0356be934efbbbca89ad26230067f86fe5
|
|
BLAKE2b-256 checksum How to use checksums |
cf2f4b79940908c6ab8c795097c102999d7bc1f7e0b8604dfd1c232f9d99d67a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl
| Download URL | propcache-0.5.4-cp314-cp314t-macosx_10_15_universal2.whl |
|---|---|
| Size | 90.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
53eaa697c4d0422ff4cb714d00231b43352064d97b944033b30c1d57cc506ec0
|
|
BLAKE2b-256 checksum How to use checksums |
2ce942f1da77cacfc184e6ec929557ef653b7961bbf6f1da460b9221273948b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-win_arm64.whl
| Download URL | propcache-0.5.4-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 43.4 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
45488d1a5f9ab5bd90aaa1ca20f50fe1922b8ffad71a2009d2adf41355897aac
|
|
BLAKE2b-256 checksum How to use checksums |
a119c8d0d36a9d16cba5dcee67d389c9333b988c8986a653a61c00a451817a46
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-win_amd64.whl
| Download URL | propcache-0.5.4-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 46.3 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0a095db8e15a6020db149ecbed6461939fe74f6acaa3ae8b702a1fe8c38cd983
|
|
BLAKE2b-256 checksum How to use checksums |
1e9ea0ac821a2229186af5e2e3c3635a78abb23cfddca57f38513ab5d70420f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-win32.whl
| Download URL | propcache-0.5.4-cp314-cp314-win32.whl |
|---|---|
| Size | 43.6 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
30cc1cebaf9aef49db06357a50398323ae04d70460c0491837d026ab7d6452ea
|
|
BLAKE2b-256 checksum How to use checksums |
12495ef1c5cf98591da3c5b952b39e6a298084cc1ce353bc70f85e82397a5036
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 228.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9fb0a5be8d9aa213150e8d8148a42aca4984b285bcad1e69587dc4298edd929b
|
|
BLAKE2b-256 checksum How to use checksums |
1537c988229753629ef1cfd5198337a83e624780ea2b3787efe9e747c05aad2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_s390x.whl |
|---|---|
| Size | 234.8 kB |
| Tags | CPython 3.14 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
720cf832eb2d0b0dfee129cb3335a26f6ce3cc45ee1187e8f0731758caa16792
|
|
BLAKE2b-256 checksum How to use checksums |
924d411ef380cddad28dc001f1c6d75ec72c76cd3817030f68ec1ccfba0ec6c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 204.1 kB |
| Tags | CPython 3.14 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
1b2f3bec4261a94019575481c726c29850f72e27907773c75b1de421e20e9f9d
|
|
BLAKE2b-256 checksum How to use checksums |
cca9feec61ed296d993db9dd097e0f6723e3f576a647722367547495e4c5b05c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 233.5 kB |
| Tags | CPython 3.14 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
9e9ab13760aa8b6d0881ae7cb04fd891d8d490cd2554ea8e79bb278399169bcc
|
|
BLAKE2b-256 checksum How to use checksums |
ff39b62eee45e5ea4de094a258cbb3b01c1e856ca51ddfd95b43135c5effd1eb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 216.9 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
4e985382be6d15da8d0c2710a6fa7b9070fc9ecdeefb7f580e88373984ec8be3
|
|
BLAKE2b-256 checksum How to use checksums |
e17db53922ba7d9e5bf797324e63aa05906ec240871899f779628df068743e2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 228.2 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
bee7d3aed13d56f54e681df38c3a23031bc9e3863f687d9d598825c9146acd7d
|
|
BLAKE2b-256 checksum How to use checksums |
b85eec4bb09a70b26ea99d76a8292c3383b960b296de2b347ac9986678f1761c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 204.4 kB |
| Tags | CPython 3.14 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
0951315a6b3142ee2167404d707743f0157c110091342b1aa0accac5cf0e4acf
|
|
BLAKE2b-256 checksum How to use checksums |
f94c6766e5f60bcda26d244333aa71d0a702c1c9b21b251d543c7af5953d1eee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 232.8 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
cc07876cfb079b6f6f36d21ce75784ad6c2c6b563eeac0ed26c2fa2669b85df9
|
|
BLAKE2b-256 checksum How to use checksums |
96d3e97cd6f5de2176bd90ed4076c7a9b5e09d0f0b9687d00a576507988bb62c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 245.3 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
7b9100a93b372418d8688f3f2a3e5b45c64d70ca4d6176e121aca1e3bfc1e32f
|
|
BLAKE2b-256 checksum How to use checksums |
a23e763e370340db16115c5e63ad46e21ef0770a7f06928b3d3b62d8f8edfca4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 241.5 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
7a8d5ff04eb1f85698a78d20c62a14676e7b960dcafde09a388d60ad377d355d
|
|
BLAKE2b-256 checksum How to use checksums |
7295f222f13b6fe623310be0eb61a673bf26df439ce27e563ca8e422d0818777
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 232.6 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
251c63dd46a0659bb875cb254dc4c1e79ee91a847c737cd62373295afc2235dc
|
|
BLAKE2b-256 checksum How to use checksums |
f17470ac8430e28f21e442c7bcb964eb46c4363f6881ade4aa0e978bfd8d503a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 51.9 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1d759d05634f1b038fb625a66662a8c85e5a8fec912da381b5149ddac107482b
|
|
BLAKE2b-256 checksum How to use checksums |
e222b533b493d7025456f44518b33e53e000021a20fe7c27b88cf3d341df7186
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | propcache-0.5.4-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 50.2 kB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
4cfe0a92ae30151869e67a4b5f5e105e4e03ad30b3f38e5211b5bf77d0881993
|
|
BLAKE2b-256 checksum How to use checksums |
e4e16710bb44510c4e4a8e0f004bbaf3cecfd048141309c77bae56d4e5a6ebc1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl
| Download URL | propcache-0.5.4-cp314-cp314-macosx_10_15_universal2.whl |
|---|---|
| Size | 85.9 kB |
| Tags | CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
e6720ba44ad7e72174314d0e1fb0172494cff5c73a3a8a2159c3d2402ff15565
|
|
BLAKE2b-256 checksum How to use checksums |
33c907e227b930c8ae513b8ef1aae3793499be097bffcdf7aee4fb8b33db4cd1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-win_arm64.whl
| Download URL | propcache-0.5.4-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 42.4 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
69fc35c0779522da366c563e5faf203ffc1f8ff0021d5b1337fa4efa5be73177
|
|
BLAKE2b-256 checksum How to use checksums |
9a7050b031cafe72a5c1878b903ee87303f71313345566bf3d6ec202e5ddc9ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-win_amd64.whl
| Download URL | propcache-0.5.4-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 45.3 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0c889f6fa84957bc7e8b4eab71fd16a0455068d5045e3aa40c733071d2b2fd77
|
|
BLAKE2b-256 checksum How to use checksums |
01bce0a7b84af04ec02d73a48aa71f091e1e4a2107e3074b7ce12195b66901f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-win32.whl
| Download URL | propcache-0.5.4-cp313-cp313-win32.whl |
|---|---|
| Size | 42.6 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3e413d7a4a9b4866b7a761d6060d434b64d23cd35122eda3b026a0bbe8196b25
|
|
BLAKE2b-256 checksum How to use checksums |
b1bbdf90f62c9cf7c93ea235f6f9405143bba802914607317266dd81fc8d737e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 229.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
c02c0e570c5c7e077b0181a9f3cdb7d4c3617d1cda6b5c95bd5d34022923d82c
|
|
BLAKE2b-256 checksum How to use checksums |
ee2895456fabd2daf6be89049a13fbf03341756014d2959c83d12957d4c49694
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_s390x.whl |
|---|---|
| Size | 235.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
a5793c7698a53f56f4a1889a4737c7eeb1b7ad0842fa6b1abca22913ff79c8c1
|
|
BLAKE2b-256 checksum How to use checksums |
ba5af99c92068f1e0f5c886899ce0e4a619db376ca98c5279d93f95bd86906af
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 204.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
425f8cc86ab5018b4b8d4a23bc8e74d964bd3d757c3702e301aa79be76c53f6c
|
|
BLAKE2b-256 checksum How to use checksums |
557edbd637572a279692e5518d117274a9331bf5faac59f191d30e82521a3ec7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 233.6 kB |
| Tags | CPython 3.13 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
7cc528e760a8af06f2b13e9b9f362cd90c7c718ea61228a96dbd31ba16ed7f47
|
|
BLAKE2b-256 checksum How to use checksums |
dc72fbf17c589f92c0b3bbf6709a425661f8ef2ed0d46b38985a7d7b5a0f6b91
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 220.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
96f7c5c15656040ddcbc51e56dc59b58aa25999d743c126abd425b9766ab43e9
|
|
BLAKE2b-256 checksum How to use checksums |
d96d11014938d3fe9bea2ea2dcf930f26ed565bfb2f5be3c756362ea48c92636
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 225.9 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
ae58f361bd5dae942717c65d3413b478c70aea9c462599e7b9adad3731db3894
|
|
BLAKE2b-256 checksum How to use checksums |
1df4e87bc7629af9a14a752b218764a78742d73c2c563ac58315da6841f0cbe4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 204.7 kB |
| Tags | CPython 3.13 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
c2ba30a89035b57b73e00475de948521602f543d79ce01db10b04b36c4c76fc8
|
|
BLAKE2b-256 checksum How to use checksums |
5c9a08385733c9321c9bb78039d3ff31045e4fca962d9665023c4eb70f998819
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 234.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f85915e00dcb1cd9f2f890ead064ed40a27df06f0db65be427b29482ae357572
|
|
BLAKE2b-256 checksum How to use checksums |
ed7408e6c1faf26ee2732023a3828787ba535557122774f4a386b1f715cbd8e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 246.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
db3ae52ccc150dbc84704e9d642743897f3e1c54742ff34cacb661e52e3818a9
|
|
BLAKE2b-256 checksum How to use checksums |
7d712b35e91455209b85ee98f7859583e0814fab57d3af0f2381aaee34c37304
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 240.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
c3e98c55bde2bcf7db3c70d1aed7ae9aa8aebbf19a250c66645cde44cdb8b867
|
|
BLAKE2b-256 checksum How to use checksums |
ae8f0de9d4c8e05ce0be71b436919a216bd7fc5cc6e2691c0602295efb22b9ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 233.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
dbab5f5ff6897c81f355d079010cdae85b02e5a0b518b5251523b8ad8ae9ac3c
|
|
BLAKE2b-256 checksum How to use checksums |
73360093091ebb270fcd1bc1f6e095f93b2e0ed7f1011c28837dc2dbe5f96b99
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 51.4 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
44149f46500a0a41b95b4d99c2e586a77319539730607b9892974a092788b111
|
|
BLAKE2b-256 checksum How to use checksums |
257dc1ab1ef09e9d4d835be5d58c0a32a1e1de8397abaa4e502a9d4141328cad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | propcache-0.5.4-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 50.0 kB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
e1d52a05dc417279f7e5c7618c5dfbbc29923aaf9bc0a5c1802ddcebf54c61a0
|
|
BLAKE2b-256 checksum How to use checksums |
8f615f9c29c3aa67c30238c4eadf95149b1d983a48f69b86b0cff927a7d6df13
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl
| Download URL | propcache-0.5.4-cp313-cp313-macosx_10_13_universal2.whl |
|---|---|
| Size | 85.3 kB |
| Tags | CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
36c0d9db44b523ef93d03341b1c42d69ff01d673c053d1b1c6c3a363bcaa39ba
|
|
BLAKE2b-256 checksum How to use checksums |
784c3b1365d58a667689e067e13d055fcd92bdf8d9a2fca3d9201b47ed5b3631
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-win_arm64.whl
| Download URL | propcache-0.5.4-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 43.1 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
8876b39961e33d912afe3c1bee18ee564fdad0206f873cc15d522756b7f50737
|
|
BLAKE2b-256 checksum How to use checksums |
08b972028c5b56ced97f456de6aefa79435ca64d7f77af78ea8cf3c76fc5195f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-win_amd64.whl
| Download URL | propcache-0.5.4-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 46.2 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
98914de2c4d7f0f9f4a8c6ea4bf05841f4175796941e3ef7d47eb718f22311fb
|
|
BLAKE2b-256 checksum How to use checksums |
587b6e8ef26f6d510a7916064fec68d55fcbfbdf7eb01e377480d66a122152d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-win32.whl
| Download URL | propcache-0.5.4-cp312-cp312-win32.whl |
|---|---|
| Size | 43.1 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b3083bfe87f95c756e610bd8025f26cbd1cd4aaa03a422f2d65efb7a97cd53d8
|
|
BLAKE2b-256 checksum How to use checksums |
5da9424e38838793d37160b4379c702f61c74c598fc6cd17204adbe3c554f7a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 247.1 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
8a235f73d6e020855dc29dff012d920c02ee0feab8d73a24185a7569f4be1161
|
|
BLAKE2b-256 checksum How to use checksums |
516feeca9647245d5f92e87d53e5f14335bb42fce1a7e6842c8045b364eded8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_s390x.whl |
|---|---|
| Size | 254.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
d1f5a500bfcbb2c0ab85e98a0dcd70f5899d34efe365a0187700369a79603031
|
|
BLAKE2b-256 checksum How to use checksums |
f1b7adfae4bf9c63bccf12e2d9690a175c6579047a6eec3b5a6a5f51428c15e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 214.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
7ffafcbfc7b549ab940047e505c831eabac5e67de53e1bc174adbc5285c55944
|
|
BLAKE2b-256 checksum How to use checksums |
c20d41b848036db6621370c1f2e5471a7da8149c730f8552a5257567721f4576
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 251.1 kB |
| Tags | CPython 3.12 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
9a2a8a50a93dee0268a860a07fa3b4bd968f8ce4dbd794957da772f395368526
|
|
BLAKE2b-256 checksum How to use checksums |
8584cb08d79f1762daafeb2b030c470cd0c725c97b8ad67412457c6f35c53e9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 238.2 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
cdee8205a44d0be91bbac4c41b95d86641b72dfc7aef1279400e4fda3f26a937
|
|
BLAKE2b-256 checksum How to use checksums |
9f366683597de4907e70c717e3588c541202c66086a72ff3db58be49de66e72c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 246.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4fbc1a15dc8cd1689508758d626b372b1f09d28d9577667feaf9e6bfcd8efcbc
|
|
BLAKE2b-256 checksum How to use checksums |
6ae24d11bea8fd6a777149c6c20645f873952eab5de3a2497aa11648ec9ab6ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 216.7 kB |
| Tags | CPython 3.12 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
6af4693716bfb03f1752ef1b30faa593db2c01d5272e9b8564a1549452a979ab
|
|
BLAKE2b-256 checksum How to use checksums |
332ca763a8251f50fba042af0fb1f02bfec4b31381e40aff760db2be7b2e1f84
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 250.4 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
2814ecd8e818f487bee4b0f921bc4d1c176cc5fc71ac0f072d0fa67eda4ac14b
|
|
BLAKE2b-256 checksum How to use checksums |
859f83a07b6ec0e043c050cfdd35fb0cf1b7897b91d554d6eea293740309afe7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 265.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
a4d7a54719b67338a305dca2ce6aafe366817df94ddfd4b5514374356f5ca546
|
|
BLAKE2b-256 checksum How to use checksums |
cbd5ee6350fb0be9122bb6c67082a876d34b90d980d100c106af4b81023e04f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 257.7 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
a74bfa37147cc08fb29df10bd9c16f40fa7f860cd3a6d2fff853323a94f6e17f
|
|
BLAKE2b-256 checksum How to use checksums |
b0193742a5eed62317b03b4002ee865dc9fd720308bdd0da1f29a5786c630311
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 251.8 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
60a64cbccaa11b7760ce705a14ada17ba459e7ca9f23ba587eb013821032d7ef
|
|
BLAKE2b-256 checksum How to use checksums |
834f48865bd02a16ee5236bc46166b2946f37b93e07b0eae355dac0be0b216ca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 52.5 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
87a3caecf8095e48dc72f84bfa42e23a848cf410cc9cc13031fba4869b706a21
|
|
BLAKE2b-256 checksum How to use checksums |
25881d7df7201750b37765ef2b23bc1c526c028dadde80afa0f57a118fc01182
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | propcache-0.5.4-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 51.0 kB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
dcbf346a318a5e30063f547630b02bb787ce2f45b6368d5da143660b6a3835d8
|
|
BLAKE2b-256 checksum How to use checksums |
dff4f3ffaee281b276da854ac1d7a6a506d26cbc62ea2e623756f1d0a4a1ba1a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl
| Download URL | propcache-0.5.4-cp312-cp312-macosx_10_13_universal2.whl |
|---|---|
| Size | 87.3 kB |
| Tags | CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
b28f41fa3b8c6900457f858ec5b03998f3a6d535fbc1bb2edec5961ea05ec429
|
|
BLAKE2b-256 checksum How to use checksums |
71cd348d58f142aebc4873345c6b31087629182ca6e0f2b3caeaa528cf882eba
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-win_arm64.whl
| Download URL | propcache-0.5.4-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 43.5 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
d42a9a856a4a6e2f6c10f1318c07e7daa498d6593abe745c71dae4521a26ca39
|
|
BLAKE2b-256 checksum How to use checksums |
41075222e2665bbf6e45847492ecbf3b9f3e4975a0ae300e5fd465df7d48ce55
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-win_amd64.whl
| Download URL | propcache-0.5.4-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 46.3 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e904d4d01f36bd6e197590be1533c44e06058771e0746dd073a8ebb3ef880858
|
|
BLAKE2b-256 checksum How to use checksums |
0a8a3db6a3543d8101263b4c52978b6276a04ead2caff2c5ab880d934f47bd89
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-win32.whl
| Download URL | propcache-0.5.4-cp311-cp311-win32.whl |
|---|---|
| Size | 42.7 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
9f86f7259efe2c951f43e57d471c9b41daa5bfc7db9f67189059cf1ae6d77fd9
|
|
BLAKE2b-256 checksum How to use checksums |
d9e2c32a7df3f39caa7f11b2eb37ea5b6960a6946f2bc7c4b8ff97bbdf6d6b6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 230.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
40e94adb1e7d39ff28a8bd8d8b8fbd1df6b9f40976dbe379134f1ce058e532dd
|
|
BLAKE2b-256 checksum How to use checksums |
3d80c80f6adaaa1e51f0db2dce8c9b3714d94ec45e358a21f9a1910b10b40a80
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_s390x.whl |
|---|---|
| Size | 240.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
4054acf80d40456a0537f2913b349718649d8d6458a14ab7f48d0ce28c30869d
|
|
BLAKE2b-256 checksum How to use checksums |
746bd510c0c378cabbf9d0ac7b663af6d00f2e9074073d93b20c85f24aa5c071
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 208.2 kB |
| Tags | CPython 3.11 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
dd2ac8f5b643454c2cc6b6118b13da16e88f4a6434fc3ba61aca384029f04f36
|
|
BLAKE2b-256 checksum How to use checksums |
892df9c47691aa024c8299a3afacd78d22a01ab57eb627b481b6089708e71017
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 239.0 kB |
| Tags | CPython 3.11 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
c3ef2818d63bc86071e9d2989ae75a1bc32b8f7059cfd9f5abbbee70c32e2ed6
|
|
BLAKE2b-256 checksum How to use checksums |
654726810d889d89bba31db397e6a88f8984af775f5ed6bad0a29dce84324cff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 223.5 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
2dba2f02d2d5c09ef8a0e6c1a42aeaa451f4be9898cb00b04fe98717da2eb23b
|
|
BLAKE2b-256 checksum How to use checksums |
9ca3570d92fc952eae93b676f3a1568f4b89264102abd3c982ab6a9ebec58dcf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 233.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
594eb4c6ec35e7179b058481f4e9f02521b56de16fa577c4b85c76fb1bf8a9f8
|
|
BLAKE2b-256 checksum How to use checksums |
625c9324fab27d6088eecc47fe4332bf7aaf8c1ded93c36f558391e8a06d41a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 209.0 kB |
| Tags | CPython 3.11 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
004e685b315646c410771836e72a44f143bbe624f29653a42687815069a303d5
|
|
BLAKE2b-256 checksum How to use checksums |
3c071e0a9bb310830f2245edbd5cd3c6d24a783c053c4efd8e08e386e513c940
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 235.4 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
6e9368e87a3efc285e559131092c5db643eb8e56de4ee42064d5baec22ef2bb5
|
|
BLAKE2b-256 checksum How to use checksums |
c706519a5ebb48b6f94beb48396e55c905f12246a25c3a3608a7ec7bceabf50e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 251.7 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
4f2d880ff60f45898f4acfa152aac8d04e3ee627d90ff4003491bf92239d5757
|
|
BLAKE2b-256 checksum How to use checksums |
bc5ddf0684fc2b1732a01a7bec26d7897369022712422d25b09c37ce7dbc88a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 246.1 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
56fc3f7599528db40b1efa0889a620116e2704144495273d66066e8164e45838
|
|
BLAKE2b-256 checksum How to use checksums |
5cb4442715b2e980df51be52d203549279e027728f24c80b00b5e525e31cd5ea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 238.7 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
62530ca89187827e4a4fe733f971abe81a7542eeea48ff61995f19b64d7199c8
|
|
BLAKE2b-256 checksum How to use checksums |
86a87c6cd6bfead1a11f2e411e688640e6d26574cb0bde7dcaa7423b0b65ed7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 52.1 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3fc24f209c1b7f7f688b66b98293954f5504279760999b58920ee12dd8471c1d
|
|
BLAKE2b-256 checksum How to use checksums |
05cfb5248180bf056cc76acc60c9c6e8c0ebbfdbd1c6cffd31fd14996927b7c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | propcache-0.5.4-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 50.4 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
9cbfff4423eef4cc6cafc021469641a2b835f610b2647a6c5281903e21b8670d
|
|
BLAKE2b-256 checksum How to use checksums |
e74b5a52e1a7b43563f7d408814194bb23cc8bf214eb6b86639b667a33a8d0d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl
| Download URL | propcache-0.5.4-cp311-cp311-macosx_10_9_universal2.whl |
|---|---|
| Size | 86.4 kB |
| Tags | CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
897d1ddf6716e8f47200f7aad9a0efa6cc7586df66c6defa572f9eab379c078e
|
|
BLAKE2b-256 checksum How to use checksums |
1e4014b21e505b7921617466576423f188a5c9caddfdaa1cf4b2b8a83d8fe216
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-win_arm64.whl
| Download URL | propcache-0.5.4-cp310-cp310-win_arm64.whl |
|---|---|
| Size | 44.0 kB |
| Tags | CPython 3.10 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
6c7599df2b57ebeea8de011b5f2f7b85de95e76037d43d34b95e328430275487
|
|
BLAKE2b-256 checksum How to use checksums |
6687e71b24adc8ece61782ba3d6f3879e6a07fdb85bce21a9c529524184e3ec6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-win_amd64.whl
| Download URL | propcache-0.5.4-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 46.6 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
146f48a9e4812611a7581003b1a39de56c34967046310c4171a68ef908c9a745
|
|
BLAKE2b-256 checksum How to use checksums |
80570a0b4b1122f4ed5bcd1c626d910003cdf5282c2a12f8a1cfa17970b3ded2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-win32.whl
| Download URL | propcache-0.5.4-cp310-cp310-win32.whl |
|---|---|
| Size | 43.1 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
141fdbd73748db0cf7636035030aaac383d2efde8f34e7bc24594cc776d225b8
|
|
BLAKE2b-256 checksum How to use checksums |
55c051e5d1ad504e9529831606534c48e272db751072eee9ff07e4abe37e50bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 218.3 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3d605bb239b796e82a81c6709548b2bd460ab73b4590cb0c83de8a2dd9694d0f
|
|
BLAKE2b-256 checksum How to use checksums |
3af9b1a0bd47218216b935d019912d6fec1676ae7c07f15fa82bfb54b8d58976
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_s390x.whl |
|---|---|
| Size | 228.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
1783582065a1f07f9d9ee1e992e13f15d7dc8fb1eb3a7476d43eb3f2e69d26bb
|
|
BLAKE2b-256 checksum How to use checksums |
410b7b19eb20bb0b1f9476d08f6e387ae094dc6870fc06d459ea1f35f28b25d3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_riscv64.whl |
|---|---|
| Size | 201.4 kB |
| Tags | CPython 3.10 Linux musl 1.2+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
e9f165403b81fea7e89c932d89046a1e3d9a3a60e8d7ef2f249dccdcb0982bf5
|
|
BLAKE2b-256 checksum How to use checksums |
ceb759c16e245a549df202b4ebe2de91fa58a67dc4373df9840e372a64224dee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_ppc64le.whl |
|---|---|
| Size | 228.1 kB |
| Tags | CPython 3.10 Linux musl 1.2+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
279655a16973f1ee2bd2fe79973137681642fd9ae0d89215bba263726eb0dc3a
|
|
BLAKE2b-256 checksum How to use checksums |
4b3d0189b6537f4a8cd795e685a130a6f47aeda78a5b7b062574705cffc685ca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 211.0 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
fc2461ecc45f17893f8207e73b46ea8ba93e33630e51cf4af3fbc21d47462b1a
|
|
BLAKE2b-256 checksum How to use checksums |
6bd4bf563e19ac9a5cc47113431337fdf2ee3573859f3f3e0a58e59833e9b75d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | propcache-0.5.4-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 219.1 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
f273dcf7149a50527c4fd1f55cfe9eac0f60753f5af544b4c9352578e20c0874
|
|
BLAKE2b-256 checksum How to use checksums |
6fb4a468700d0526dfb2ca6af5d790125de5894acc7d8ecd99243ecedfa4c4cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
| Download URL | propcache-0.5.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl |
|---|---|
| Size | 202.7 kB |
| Tags | CPython 3.10 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64 |
|
SHA-256 checksum How to use checksums |
d8e017eeb7482bed34cdb0d61cf2bcfc88d104bbab296a17cd16a6af8aabc70e
|
|
BLAKE2b-256 checksum How to use checksums |
9d5354bd510bb5d473edf66914602885226187218b4e3a5017e9dd80bceea41f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
| Download URL | propcache-0.5.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 224.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f574e460d1c8a08384a016fdb09ccf3543433263ed6b2f97104f979e64ea57c2
|
|
BLAKE2b-256 checksum How to use checksums |
f0515adee15e12a7e314cece4543fbf295b0fe1b504dc78b32dff4c8eb1e29b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
| Download URL | propcache-0.5.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl |
|---|---|
| Size | 240.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
ec6a85f424afa8d23e0d9a094e5dbb6eda01da91c92b9183cd433768247ffc97
|
|
BLAKE2b-256 checksum How to use checksums |
127c08c15c7df256f94a6b4563f74165c3242fb554cdd1909b661d093c31b976
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
| Download URL | propcache-0.5.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 234.5 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
9f3551b8a35c1df3e7ea4d2d86edee15f0dde1bddd434a71744048683544d0ef
|
|
BLAKE2b-256 checksum How to use checksums |
7487a3e199c45b26587f073db655d19c30d2144b0f883827ba6ab77acf5c7d45
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | propcache-0.5.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 226.8 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
c9281e922c072158c91974d4589f1dbe0fee6d467f284c28e463f9f5a4d933f4
|
|
BLAKE2b-256 checksum How to use checksums |
bfd17fd3ffb5ca0e669a8fbf55d9fbb17c50ff5f44becfefcab27a9b9b67908f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | propcache-0.5.4-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 52.6 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d83b12902eb8bce151259c86c03ba746600b2d994543de46e370cecf96c452f2
|
|
BLAKE2b-256 checksum How to use checksums |
ff9a6be90814d8762952594a9e380161802541bff690f3a2e011dcc28ec193ce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | propcache-0.5.4-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 50.8 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
8f911c395cef73c510bac566da9507bb6a43e7763d0c79138dc60ee53f11207e
|
|
BLAKE2b-256 checksum How to use checksums |
3e6dceeca1762ed51230c08d557591404f844ecef5e294550136155572f7faae
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency logRelease files / propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl
| Download URL | propcache-0.5.4-cp310-cp310-macosx_10_9_universal2.whl |
|---|---|
| Size | 87.2 kB |
| Tags | CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) |
|
SHA-256 checksum How to use checksums |
b77c313314524ca9c38fbd70f73515d04597ac58c40c939bc0e71eeb4abff680
|
|
BLAKE2b-256 checksum How to use checksums |
ecdd997704118aea215cc5f65c277f5323657b4ba44c1f9a32fb11c8064e4997
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 16, 2026.
Transparency log