From 4917a0dd34d7d53dae73a24808e0ff95bfd32ab2 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 13 Jan 2015 11:33:23 +0100 Subject: Fix testsuite under py3k We don't support python 3.1, and 3.2 ... if anybody provides patches, I will accept them, but otherwise I cannot make myself to care. --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1a970b2..23afc38 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def read(fname): setup( name='yamlish', - version="0.15.1", + version="0.16", description='Python implementation of YAMLish', author='Matěj Cepl', author_email='mcepl@redhat.com', @@ -25,6 +25,10 @@ setup( "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: Implementation :: PyPy", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Information Technology", -- cgit