summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2021-04-08 12:00:47 +0100
committerRichard van der Hoff <richard@matrix.org>2021-04-08 16:42:32 +0100
commitabade34633da2002014a1dd7e4da3f558e610582 (patch)
treecbbae1709dd8843aeae757ea4a283eaa44bb5bff /synapse/storage
parentunpin olddeps build from py36 (diff)
downloadsynapse-abade34633da2002014a1dd7e4da3f558e610582.tar.xz
Require py36 and Postgres 9.6
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/engines/postgres.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/engines/postgres.py b/synapse/storage/engines/postgres.py
index 80a3558aec..d95f88b3e9 100644
--- a/synapse/storage/engines/postgres.py
+++ b/synapse/storage/engines/postgres.py
@@ -47,8 +47,8 @@ class PostgresEngine(BaseDatabaseEngine):
         self._version = db_conn.server_version
 
         # Are we on a supported PostgreSQL version?
-        if not allow_outdated_version and self._version < 90500:
-            raise RuntimeError("Synapse requires PostgreSQL 9.5+ or above.")
+        if not allow_outdated_version and self._version < 90600:
+            raise RuntimeError("Synapse requires PostgreSQL 9.6 or above.")
 
         with db_conn.cursor() as txn:
             txn.execute("SHOW SERVER_ENCODING")