diff --git a/changelog.d/7602.doc b/changelog.d/7602.doc new file mode 100644 index 000000000..09039353d --- /dev/null +++ b/changelog.d/7602.doc @@ -0,0 +1 @@ +Advertise Python 3.8 support in `setup.py`. diff --git a/setup.py b/setup.py index 5ce06c898..54ddec8f9 100755 --- a/setup.py +++ b/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},