Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Note support for Python 3.9 (#8665)
Browse files Browse the repository at this point in the history
As expected, all tests pass locally without modification.

Signed-off-by: Dan Callahan <danc@element.io>
  • Loading branch information
callahad committed Oct 27, 2020
1 parent f49c209 commit 88e1d0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions changelog.d/8665.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Note support for Python 3.9.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def exec_file(path_segments):
"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},
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 88e1d0c

Please sign in to comment.