diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-18 16:13:56 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-18 16:13:56 +0000 |
commit | 42706d25d0b876092cec538ebe31407788817463 (patch) | |
tree | 1d1241d7d98fefe9307fd3239294acfb711fbfb4 | |
parent | Merge pull request #6235 from matrix-org/anoa/room_upgrade_groups (diff) | |
parent | Python 3.8 for tox (#6341) (diff) | |
download | synapse-42706d25d0b876092cec538ebe31407788817463.tar.xz |
Python 3.8 for tox (#6341)
* commit 'c5abb67e4': Python 3.8 for tox (#6341)
-rw-r--r-- | INSTALL.md | 2 | ||||
-rw-r--r-- | changelog.d/6341.misc | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md index e7b429c05d..29e0abafd3 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -36,7 +36,7 @@ that your email address is probably `user@example.com` rather than System requirements: - POSIX-compliant system (tested on Linux & OS X) -- Python 3.5, 3.6, or 3.7 +- Python 3.5, 3.6, 3.7 or 3.8. - 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/6341.misc b/changelog.d/6341.misc new file mode 100644 index 0000000000..359b9bf1d7 --- /dev/null +++ b/changelog.d/6341.misc @@ -0,0 +1 @@ +Add continuous integration for python 3.8. \ No newline at end of file diff --git a/tox.ini b/tox.ini index 74176631b2..010a09183e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = packaging, py35, py36, py37, check_codestyle, check_isort +envlist = packaging, py35, py36, py37, py38, check_codestyle, check_isort [base] basepython = python3.7 |