diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2021-04-27 13:46:16 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2021-04-27 13:46:16 +0100 |
commit | 9773abf3d8e1b2711e936ff150d8ae2f48f98be9 (patch) | |
tree | b8c98e96f1262bba37a7ec58bcc7373fdd99a751 /synapse/__init__.py | |
parent | Merge remote-tracking branch 'origin/release-v1.32.2' into matrix-org-hotfixes (diff) | |
parent | Remove various bits of compatibility code for Python <3.6 (#9879) (diff) | |
download | synapse-9773abf3d8e1b2711e936ff150d8ae2f48f98be9.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/__init__.py')
-rw-r--r-- | synapse/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index 5bfae24cbd..fbd49a93e1 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -21,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 @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.32.1" +__version__ = "1.32.2" 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 |