From e7d6f89aca21486b98a1af47a497af837c0c105e Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 19 Jul 2021 10:15:32 +0200 Subject: [PATCH] increase minimum version for PostgreSQL to 9.5 This is the minimum version we can test with the CI. With 9.5 there is also complete support for jsonb available. --- docs/admin/Installation.md | 2 +- nominatim/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/admin/Installation.md b/docs/admin/Installation.md index 76af39c6..691487b8 100644 --- a/docs/admin/Installation.md +++ b/docs/admin/Installation.md @@ -37,7 +37,7 @@ For compiling: For running Nominatim: - * [PostgreSQL](https://www.postgresql.org) (9.3+ will work, 11+ strongly recommended) + * [PostgreSQL](https://www.postgresql.org) (9.5+ will work, 11+ strongly recommended) * [PostGIS](https://postgis.net) (2.2+) * [Python 3](https://www.python.org/) (3.6+) * [Psycopg2](https://www.psycopg.org) (2.7+) diff --git a/nominatim/version.py b/nominatim/version.py index 6f9005ea..025600f7 100644 --- a/nominatim/version.py +++ b/nominatim/version.py @@ -12,5 +12,5 @@ Version information for Nominatim. # Released versions always have a database patch level of 0. NOMINATIM_VERSION = (3, 7, 0, 2) -POSTGRESQL_REQUIRED_VERSION = (9, 3) +POSTGRESQL_REQUIRED_VERSION = (9, 5) POSTGIS_REQUIRED_VERSION = (2, 2) -- 2.39.5