]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
docs: set libpq version to '17'
authorDenis Laxalde <denis.laxalde@dalibo.com>
Mon, 1 Jul 2024 06:21:42 +0000 (08:21 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Tue, 2 Jul 2024 09:08:17 +0000 (11:08 +0200)
Branch REL_17_STABLE is now available in Postgres repository.

Using this version is needed to build the documentation with the next
commit.

docs/conf.py
docs/lib/libpq_docs.py

index cafcb5e60a7c61754ae624816585b2a1978cfe2a..cac973651c63f397e31916a01a61d33259bd3ee3 100644 (file)
@@ -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"
index e072d0658c93e2f795dd143ccc889b263222c99e..b638c63b4b08ea3f7475788d3ac5b84767457c7a 100644 (file)
@@ -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