diff --git a/CHANGES/552.bugfix b/CHANGES/552.bugfix new file mode 100644 index 000000000..3adaa344b --- /dev/null +++ b/CHANGES/552.bugfix @@ -0,0 +1 @@ +Synchronize the declared supported Python versions in ``setup.py`` with actually supported and tested ones. \ No newline at end of file diff --git a/setup.py b/setup.py index 0762a1572..044f1d72e 100644 --- a/setup.py +++ b/setup.py @@ -61,10 +61,10 @@ def read(f): "Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Development Status :: 5 - Production/Stable", ], author="Andrew Svetlov", @@ -80,14 +80,14 @@ def read(f): }, license="Apache 2", packages=["multidict"], - python_requires=">=3.5", + python_requires=">=3.6", include_package_data=True, ) if not NO_EXTENSIONS: - print("**********************") - print("* Accellerated build *") - print("**********************") + print("*********************") + print("* Accelerated build *") + print("*********************") setup(ext_modules=extensions, **args) else: print("*********************")