From c57fee2c92e1f561858babda616a50202d1c8474 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 9 Jun 2018 20:06:23 -0700 Subject: [PATCH] Update intersphinx URLs to point to Python 3 docs Python 3 docs are more up to date and reflect the future of Python. Removed unused py3 marker. --- doc/src/conf.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/src/conf.py b/doc/src/conf.py index 2c52a568..867afb7c 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -61,9 +61,8 @@ except ImportError: release = version intersphinx_mapping = { - 'py': ('https://docs.python.org/2', None), - 'py3': ('https://docs.python.org/3', None), - } + 'py': ('https://docs.python.org/3', None), +} # Pattern to generate links to the bug tracker ticket_url = 'https://github.com/psycopg/psycopg2/issues/%s'