From a719e359f8e5bebda2ccb66bd023075390931be5 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 3 Oct 2024 09:46:33 -0500 Subject: [PATCH] Fix docs url --- README.rst | 6 +++--- setup.cfg | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 0b8886c..0457b29 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -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 ------------ @@ -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 ----------- diff --git a/setup.cfg b/setup.cfg index c34550d..acc06dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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