summary refs log tree commit diff
diff options
context:
space:
mode:
authorDan Callahan <dan.callahan@gmail.com>2020-10-27 23:24:33 +0000
committerGitHub <noreply@github.com>2020-10-27 23:24:33 +0000
commit88e1d0c52b6f59ee8eb13a8a0c6657eb54557fe6 (patch)
treeb1912461e9076c46825a031c0353fa4d90a0406f
parentCross-link documentation to the prometheus recording rules. (#8667) (diff)
downloadsynapse-88e1d0c52b6f59ee8eb13a8a0c6657eb54557fe6.tar.xz
Note support for Python 3.9 (#8665)
As expected, all tests pass locally without modification.

Signed-off-by: Dan Callahan <danc@element.io>
-rw-r--r--INSTALL.md2
-rw-r--r--changelog.d/8665.doc1
-rwxr-xr-xsetup.py1
-rw-r--r--tox.ini2
4 files changed, 4 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md

index 22f7b7c029..c6fcb3bd7f 100644 --- a/INSTALL.md +++ b/INSTALL.md
@@ -57,7 +57,7 @@ light workloads. System requirements: - POSIX-compliant system (tested on Linux & OS X) -- Python 3.5.2 or later, up to Python 3.8. +- Python 3.5.2 or later, up to Python 3.9. - At least 1GB of free RAM if you want to join large public rooms like #matrix:matrix.org Synapse is written in Python but some of the libraries it uses are written in diff --git a/changelog.d/8665.doc b/changelog.d/8665.doc new file mode 100644
index 0000000000..3b75307dc5 --- /dev/null +++ b/changelog.d/8665.doc
@@ -0,0 +1 @@ +Note support for Python 3.9. diff --git a/setup.py b/setup.py
index 2f4a3170d2..9730afb41b 100755 --- a/setup.py +++ b/setup.py
@@ -131,6 +131,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], scripts=["synctl"] + glob.glob("scripts/*"), cmdclass={"test": TestCommand}, diff --git a/tox.ini b/tox.ini
index 6dcc439a40..6a507d3012 100644 --- a/tox.ini +++ b/tox.ini
@@ -1,5 +1,5 @@ [tox] -envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort +envlist = packaging, py35, py36, py37, py38, py39, check_codestyle, check_isort [base] extras = test