summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-17 05:21:53 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-17 08:24:08 +0100
commitc8a76059ff6ff37fb51972fe2ba8b9d9464af769 (patch)
treee0de6f4defceb4f6082d747d6ea5623708aebb36 /docs
parent0fbdb9784da915fce5dcc1fe82bac9b4785749e5 (diff)
Refs #34255 -- Bumped required psycopg version to 3.1.8.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/install/postgis.txt2
-rw-r--r--docs/ref/databases.txt6
-rw-r--r--docs/releases/4.2.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/contrib/gis/install/postgis.txt b/docs/ref/contrib/gis/install/postgis.txt
index e469ede4d0..6859dce7de 100644
--- a/docs/ref/contrib/gis/install/postgis.txt
+++ b/docs/ref/contrib/gis/install/postgis.txt
@@ -24,7 +24,7 @@ platform-specific instructions if you are on :ref:`macos` or :ref:`windows`.
.. versionchanged:: 4.2
- Support for ``psycopg`` 3.1+ was added.
+ Support for ``psycopg`` 3.1.8+ was added.
Post-installation
=================
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 860d550232..2dbf71562f 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -114,8 +114,8 @@ below for information on how to set up your database correctly.
PostgreSQL notes
================
-Django supports PostgreSQL 12 and higher. `psycopg`_ 3.1+ or `psycopg2`_ 2.8.4+
-is required, though the latest `psycopg`_ 3.1+ is recommended.
+Django supports PostgreSQL 12 and higher. `psycopg`_ 3.1.8+ or `psycopg2`_
+2.8.4+ is required, though the latest `psycopg`_ 3.1.8+ is recommended.
.. _psycopg: https://www.psycopg.org/psycopg3/
.. _psycopg2: https://www.psycopg.org/
@@ -127,7 +127,7 @@ is required, though the latest `psycopg`_ 3.1+ is recommended.
.. versionchanged:: 4.2
- Support for ``psycopg`` 3.1+ was added.
+ Support for ``psycopg`` 3.1.8+ was added.
.. _postgresql-connection-settings:
diff --git a/docs/releases/4.2.txt b/docs/releases/4.2.txt
index 91684301a5..83bdedfc75 100644
--- a/docs/releases/4.2.txt
+++ b/docs/releases/4.2.txt
@@ -29,7 +29,7 @@ What's new in Django 4.2
Psycopg 3 support
-----------------
-Django now supports `psycopg`_ version 3.1 or higher. To update your code,
+Django now supports `psycopg`_ version 3.1.8 or higher. To update your code,
install the `psycopg library`_, you don't need to change the
:setting:`ENGINE <DATABASE-ENGINE>` as ``django.db.backends.postgresql``
supports both libraries.