gituser/docker_multiarch/: propcache-0.3.1 metadata and description
Accelerated property cache
| author | Andrew Svetlov |
| author_email | andrew.svetlov@gmail.com |
| classifiers |
|
| description_content_type | text/x-rst |
| keywords | cython,cext,propcache |
| license | Apache-2.0 |
| maintainer | aiohttp team <team@aiohttp.org> |
| maintainer_email | team@aiohttp.org |
| project_urls |
|
| requires_python | >=3.9 |
| File | Tox results | History |
|---|---|---|
propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
|
|
|
propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
propcache
The module provides a fast implementation of cached properties for Python 3.9+.
Introduction
The API is designed to be nearly identical to the built-in functools.cached_property class, except for the additional under_cached_property class which uses self._cache instead of self.__dict__ to store the cached values and prevents __set__ from being called.
For full documentation please read https://propcache.readthedocs.io.
Installation
$ pip install propcache
The library is Python 3 only!
PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install propcache on another operating system where wheels are not provided, the the tarball will be used to compile the library from the source code. It requires a C compiler and and Python headers installed.
To skip the compilation you must explicitly opt-in by using a PEP 517 configuration setting pure-python, or setting the PROPCACHE_NO_EXTENSIONS environment variable to a non-empty value, e.g.:
$ pip install propcache --config-settings=pure-python=false
Please note that the pure-Python (uncompiled) version is much slower. However, PyPy always uses a pure-Python implementation, and, as such, it is unaffected by this variable.
API documentation
The documentation is located at https://propcache.readthedocs.io.
Source code
The project is hosted on GitHub
Please file an issue on the bug tracker if you have found a bug or have some suggestion in order to improve the library.
Discussion list
aio-libs google group: https://groups.google.com/forum/#!forum/aio-libs
Feel free to post your questions and ideas here.
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.