From 3e2ef9ab23a872c06c2a03504d038984e8576381 Mon Sep 17 00:00:00 2001 From: mdxs Date: Fri, 25 Oct 2019 17:48:27 +0200 Subject: [PATCH] Including more recent Python versions Including more recent Python versions in the classifiers, as used in PyPI releases. Also added a generic Python classifier. While I've not used the current cbor 1.0.0 with Python 3.6, it does work (for me, not fully tested...) with Python 3.7 (v3.7.3 in fact) when installing it via PIP on a Raspberry Pi with Rasbian Buster; therefore, I assumed the 3.6 and 3.7 releases should work fine as well. As said, not fully tested; so it is perfectly fine to ignore this PR for that reason. No hard feelings, no need to explain. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ec20768..ebfeb5c 100644 --- a/setup.py +++ b/setup.py @@ -91,9 +91,12 @@ def build_extension(self, ext): 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', + 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: C', 'Topic :: Software Development :: Libraries :: Python Modules', ],