]> git.openstreetmap.org Git - nominatim.git/commitdiff
increase minimum version for PostgreSQL to 9.5
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 19 Jul 2021 08:15:32 +0000 (10:15 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 19 Jul 2021 08:21:19 +0000 (10:21 +0200)
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
nominatim/version.py

index 76af39c6e0a0b102547dedeb23343e57aa7c42ee..691487b87ef89c7c4394dc67bf17da7dcb8104f8 100644 (file)
@@ -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+)
index 6f9005eaf868d8dabce8f26ade77ec28612d63e4..025600f7956069e58da3a2e08d0d654d8e8a301e 100644 (file)
@@ -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)