From 7bdffe153e0999625a9e874ce68c5fcf43c3eac8 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 25 Apr 2018 14:10:39 -0700 Subject: [PATCH] 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. --- README | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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' ], -- 2.26.2