Skip to content

Commit

Permalink
Drop Python 3.5 from setup.py (#552)
Browse files Browse the repository at this point in the history
* Drop Python 3.5 from setup.py

* Add CHANGES
  • Loading branch information
asvetlov committed Nov 14, 2020
1 parent 8109eaf commit b92ea7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES/552.bugfix
@@ -0,0 +1 @@
Synchronize the declared supported Python versions in ``setup.py`` with actually supported and tested ones.
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -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",
Expand All @@ -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("*********************")
Expand Down

0 comments on commit b92ea7f

Please sign in to comment.