From: W. Trevor King Date: Wed, 25 Apr 2018 21:10:39 +0000 (-0700) Subject: setup.py: Claim conformance with Python 3.4 through 3.6 X-Git-Url: http://git.tremily.us/?p=pyassuan.git;a=commitdiff_plain;h=7bdffe153e0999625a9e874ce68c5fcf43c3eac8 setup.py: Claim conformance with Python 3.4 through 3.6 The tests pass on all of these anyway, and I've been running it on Python 3.4 for a while now. --- diff --git a/README b/README index 613c90c..dbefa15 100644 --- a/README +++ b/README @@ -28,7 +28,7 @@ Dependencies ------------ ``pyassuan`` is a simple package with no external dependencies outside -the Python 3.3 standard library. +the Python 3.3+ standard library. Installing by hand ------------------ diff --git a/setup.py b/setup.py index 183c0ac..bbe28df 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,9 @@ _setup( 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Security :: Cryptography', 'Topic :: Software Development' ],