From ee420dc8b30e2af4023a61c7b8199467ff8f194f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 15 Feb 2014 09:25:05 -0800 Subject: [PATCH 1/2] Added trove classifiers showing versions supported This is how many tools are checking whether Python3 is supported. --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 23167a65..f166fcd3 100755 --- a/setup.py +++ b/setup.py @@ -94,4 +94,13 @@ def run(self): packages=["ecdsa"], license="MIT", cmdclass={ "test": Test, "version": Version, "sdist": sdist }, - ) + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", + ], +) From 73e58cfae61237ed297c9229b476197567dcce30 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 15 Feb 2014 09:29:45 -0800 Subject: [PATCH 2/2] Remove Python 2.5 from travis. Travis no longer supports python 2.5 --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb87cb53..ab1af996 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "2.5" - "2.6" - "2.7" - "3.2"