From 65506e2aefb4ce3c4c3a931b56a3ba86fe1329bd Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:57:36 -0400 Subject: [PATCH] fix(docs): update intersphinx mapping for cross-linking between libs --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 24f3a843..143832f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,14 +30,14 @@ # Looks for objects in documentation of external libraries intersphinx_mapping = { 'a_sync': ('https://bobthebuidler.github.io/ez-a-sync', None), - 'brownie': ('https://eth-brownie.readthedocs.io/', None), + 'brownie': ('https://eth-brownie.readthedocs.io/en/stable', None), 'checksum_dict': ('https://bobthebuidler.github.io/checksum_dict', None), 'msgspec': ('https://jcristharif.com/msgspec/', None), - 'pandas': ('https://pandas.pydata.org/pandas-docs/', None), + 'pandas': ('https://pandas.pydata.org/docs/', None), 'pony': ('https://docs.ponyorm.org/', None), 'python': ('https://docs.python.org/3', None), 'typing_extensions': ('https://typing-extensions.readthedocs.io/en/latest/', None), - 'web3': ('https://web3py.readthedocs.io/', None), + 'web3': ('https://web3py.readthedocs.io/en/stable', None), 'y': ('https://bobthebuidler.github.io/ypricemagic', None), }