1 files changed, 3 insertions, 4 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 781f5ac3a2..5eac40730a 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018-9 New Vector Ltd
#
@@ -22,8 +21,8 @@ import os
import sys
# Check that we're not running on an unsupported Python version.
-if sys.version_info < (3, 5):
- print("Synapse requires Python 3.5 or above.")
+if sys.version_info < (3, 6):
+ print("Synapse requires Python 3.6 or above.")
sys.exit(1)
# Twisted and canonicaljson will fail to import when this file is executed to
@@ -48,7 +47,7 @@ try:
except ImportError:
pass
-__version__ = "1.32.2"
+__version__ = "1.33.0"
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
# We import here so that we don't have to install a bunch of deps when
|