From: Daniele Varrazzo Date: Sat, 27 Nov 2021 23:08:27 +0000 (+0100) Subject: docs: fetch libpq functions index from PostgreSQL 14 docs X-Git-Tag: 3.0.5~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0c9baace42a3ec93d7773f403f0ee3c1bb2952e;p=thirdparty%2Fpsycopg.git docs: fetch libpq functions index from PostgreSQL 14 docs --- diff --git a/docs/conf.py b/docs/conf.py index 112bc17d8..78974d482 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -103,7 +103,7 @@ intersphinx_mapping = { autodoc_member_order = "bysource" # PostgreSQL docs version to link libpq functions to -libpq_docs_version = "13" +libpq_docs_version = "14" # Where to point on :ticket: role ticket_url = "https://github.com/psycopg/psycopg/issues/%s" diff --git a/docs/lib/libpq_docs.py b/docs/lib/libpq_docs.py index 0831b2a56..239609baf 100644 --- a/docs/lib/libpq_docs.py +++ b/docs/lib/libpq_docs.py @@ -171,6 +171,6 @@ def pq_role(name, rawtext, text, lineno, inliner, options={}, content=[]): def setup(app): - app.add_config_value("libpq_docs_version", "13", "html") + app.add_config_value("libpq_docs_version", "14", "html") roles.register_local_role("pq", pq_role) get_reader().app = app