Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docs url #10

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The module provides a fast implementation of cached properties for Python 3.8+.


.. image:: https://readthedocs.org/projects/propcache/badge/?version=latest
:target: https://propcache.aio-libs.org
:target: https://propcache.readthedocs.io


.. image:: https://img.shields.io/pypi/pyversions/propcache.svg
Expand All @@ -36,7 +36,7 @@ The API is designed to be nearly identical to the built-in ``functools.cached_pr
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.aio-libs.org.
For full documentation please read https://propcache.readthedocs.io.

Installation
------------
Expand Down Expand Up @@ -69,7 +69,7 @@ by this variable.
API documentation
------------------

The documentation is located at https://propcache.aio-libs.org.
The documentation is located at https://propcache.readthedocs.io.

Source code
-----------
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ project_urls =
CI: GitHub Workflows = https://github.com/aio-libs/propcache/actions?query=branch:master
Code of Conduct = https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md
Coverage: codecov = https://codecov.io/github/aio-libs/propcache
Docs: Changelog = https://propcache.aio-libs.org/en/latest/changes/
Docs: RTD = https://propcache.aio-libs.org
Docs: Changelog = https://propcache.readthedocs.io/en/latest/changes/
Docs: RTD = https://propcache.readthedocs.io
GitHub: issues = https://github.com/aio-libs/propcache/issues
GitHub: repo = https://github.com/aio-libs/propcache
description = Accelerated property cache
Expand Down
Loading