From: Denis Laxalde Date: Mon, 1 Jul 2024 06:21:42 +0000 (+0200) Subject: docs: set libpq version to '17' X-Git-Tag: 3.2.2~16^2~2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=0634ee39d642f6f96aa25f2b0e31365e81f6b7ba;p=thirdparty%2Fpsycopg.git docs: set libpq version to '17' Branch REL_17_STABLE is now available in Postgres repository. Using this version is needed to build the documentation with the next commit. --- diff --git a/docs/conf.py b/docs/conf.py index cafcb5e60..cac973651 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -106,7 +106,7 @@ intersphinx_mapping = { autodoc_member_order = "bysource" # PostgreSQL docs version to link libpq functions to -libpq_docs_version = "14" +libpq_docs_version = "17" # 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 e072d0658..b638c63b4 100644 --- a/docs/lib/libpq_docs.py +++ b/docs/lib/libpq_docs.py @@ -183,6 +183,6 @@ def pq_role(name, rawtext, text, lineno, inliner, options={}, content=[]): def setup(app): - app.add_config_value("libpq_docs_version", "14", "html") + app.add_config_value("libpq_docs_version", "17", "html") roles.register_local_role("pq", pq_role) get_reader().app = app