Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions content/administration/on_premise/source.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,14 @@ Prepare
Python
~~~~~~

Odoo requires **Python 3.10** or later to run.
Odoo requires **Python 3.12** or later to run.

.. versionchanged:: 17
Minimum requirement updated from Python 3.7 to Python 3.10.

.. versionchanged:: 20
Minimum requirement updated from Python 3.10 to Python 3.12.


.. tabs::

Expand Down Expand Up @@ -194,11 +197,17 @@ PostgreSQL

Odoo uses PostgreSQL as its database management system.

.. versionchanged:: 19
Minimum requirement updated from PostgreSQL 12 to PostgreSQL 13.

.. versionchanged:: 20
Minimum requirement updated from PostgreSQL 13 to PostgreSQL 16.

Comment on lines +200 to +205
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't do this since the doc is versioned.
The displayed requirements should match the version whose documentation you're reading, that's all.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was just copied from the existing one in the Python section (line 123)

Copy link
Collaborator

@Feyensv Feyensv Oct 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, we weren't notified of #5940 introducing it so we didn't block it :D

.. tabs::

.. group-tab:: Linux

Use a package manager to download and install PostgreSQL (supported versions: 12.0 or above).
Use a package manager to download and install PostgreSQL (supported versions: 16.0 or above).
It can be achieved by executing the following:

.. code-block:: console
Expand All @@ -207,13 +216,13 @@ Odoo uses PostgreSQL as its database management system.

.. group-tab:: Windows

`Download PostgreSQL <https://www.postgresql.org/download/windows>`_ (supported versions: 12.0
`Download PostgreSQL <https://www.postgresql.org/download/windows>`_ (supported versions: 16.0
or above) and install it.

.. group-tab:: Mac OS

Use `Postgres.app <https://postgresapp.com>`_ to download and install PostgreSQL (supported
version: 12.0 or above).
version: 16.0 or above).

.. tip::
To make the command line tools bundled with Postgres.app available, make sure to set up the
Expand Down