Browse Source

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.
Andrew Morgan 3 years ago
parent
commit
25e2d193e3
2 changed files with 2 additions and 0 deletions
  1. 1 0
      changelog.d/7602.doc
  2. 1 0
      setup.py

+ 1 - 0
changelog.d/7602.doc

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

+ 1 - 0
setup.py

@@ -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},