From 325729298680de92ddd5941bc79f2d2ec3d3cb4f Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Sat, 4 May 2013 18:10:35 +0200 Subject: [PATCH] update changelog / trove classifiers for Py3k support --- .travis.yml | 2 ++ CHANGES.rst | 3 +++ setup.py | 6 +++--- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 78b1a00..cef557f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: python python: - "2.6" - "2.7" + - "3.2" + - "3.3" - "pypy" install: - python bootstrap.py diff --git a/CHANGES.rst b/CHANGES.rst index 71385c8..5493f69 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,9 @@ Changelog 3.0 (unreleased) ---------------- +- Add support for Python 3.2, 3.3 and PyPy using the Python reference + implementation. + - Add support for `__contains__`. - Provide an Python reference implementation using `__slots__`. diff --git a/setup.py b/setup.py index 3d5bb1d..a4af035 100644 --- a/setup.py +++ b/setup.py @@ -57,9 +57,9 @@ "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", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ],