From b92ea7f32198107f320c56fcfc17bf3b1ea963e1 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sat, 14 Nov 2020 23:25:06 +0200 Subject: [PATCH] Drop Python 3.5 from setup.py (#552) * Drop Python 3.5 from setup.py * Add CHANGES --- CHANGES/552.bugfix | 1 + setup.py | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 CHANGES/552.bugfix 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("*********************")