浏览代码

Note support for Python 3.9 (#8665)

As expected, all tests pass locally without modification.

Signed-off-by: Dan Callahan <danc@element.io>
tags/v1.23.0rc1
Dan Callahan 3 年前
committed by GitHub
父节点
当前提交
88e1d0c52b
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 4 个文件被更改,包括 4 次插入2 次删除
  1. +1
    -1
      INSTALL.md
  2. +1
    -0
      changelog.d/8665.doc
  3. +1
    -0
      setup.py
  4. +1
    -1
      tox.ini

+ 1
- 1
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


+ 1
- 0
changelog.d/8665.doc 查看文件

@@ -0,0 +1 @@
Note support for Python 3.9.

+ 1
- 0
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},


+ 1
- 1
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


正在加载...
取消
保存