mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-20 15:04:03 +01:00
Note support for Python 3.9 (#8665)
As expected, all tests pass locally without modification. Signed-off-by: Dan Callahan <danc@element.io>
This commit is contained in:
parent
f49c2093b5
commit
88e1d0c52b
4 changed files with 4 additions and 2 deletions
|
@ -57,7 +57,7 @@ light workloads.
|
||||||
System requirements:
|
System requirements:
|
||||||
|
|
||||||
- POSIX-compliant system (tested on Linux & OS X)
|
- 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
|
- 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
|
Synapse is written in Python but some of the libraries it uses are written in
|
||||||
|
|
1
changelog.d/8665.doc
Normal file
1
changelog.d/8665.doc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Note support for Python 3.9.
|
1
setup.py
1
setup.py
|
@ -131,6 +131,7 @@ setup(
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
],
|
],
|
||||||
scripts=["synctl"] + glob.glob("scripts/*"),
|
scripts=["synctl"] + glob.glob("scripts/*"),
|
||||||
cmdclass={"test": TestCommand},
|
cmdclass={"test": TestCommand},
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort
|
envlist = packaging, py35, py36, py37, py38, py39, check_codestyle, check_isort
|
||||||
|
|
||||||
[base]
|
[base]
|
||||||
extras = test
|
extras = test
|
||||||
|
|
Loading…
Reference in a new issue