Advertise Python 3.8 support in setup.py (#7602)

Synapse supports Python 3.8. We've been using it in CI for a while now.
This commit is contained in:
Andrew Morgan 2020-06-01 19:45:01 +01:00 committed by GitHub
parent fe434cd3c9
commit 25e2d193e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
changelog.d/7602.doc Normal file
View file

@ -0,0 +1 @@
Advertise Python 3.8 support in `setup.py`.

View file

@ -114,6 +114,7 @@ setup(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
scripts=["synctl"] + glob.glob("scripts/*"),
cmdclass={"test": TestCommand},