From a4b5848305cb2c52961027f1ddd39c5ae98ccdf2 Mon Sep 17 00:00:00 2001
From: Tres Seaver <tseaver@palladion.com>
Date: Wed, 20 Mar 2013 21:49:22 +0100
Subject: [PATCH] Denote explicit support for PyPy, Python 3.3.

---
 setup.py    |    7 ++++++-
 CHANGES.txt |    5 +++++
 tox.ini     |    2 +-
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/CHANGES.txt b/CHANGES.txt
index afc80dc..67c82bf 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,11 @@
 repoze.who Changelog
 ====================
 
+2.2 (unreleased)
+----------------
+
+- Added support for Python 3.3, PyPy.
+
 
 2.1 (2013-03-20)
 ----------------
diff --git a/setup.py b/setup.py
index 3c40fdc..40c1208 100644
--- a/setup.py
+++ b/setup.py
@@ -23,15 +23,20 @@
 testing_extras = tests_require + ['nose', 'coverage']
 
 setup(name='repoze.who',
-      version='2.1',
+      version='2.2dev',
       description=('repoze.who is an identification and authentication '
                    'framework for WSGI.'),
       long_description='\n\n'.join([README, CHANGES]),
       classifiers=[
         "Intended Audience :: Developers",
+        "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 :: Implementation :: CPython",
+        "Programming Language :: Python :: Implementation :: PyPy",
         "Topic :: Internet :: WWW/HTTP",
         "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
         "Topic :: Internet :: WWW/HTTP :: WSGI",
diff --git a/tox.ini b/tox.ini
index ec13b2e..8919380 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 envlist = 
-    py26,py27,py32,pypy,cover
+    py26,py27,py32,py33,pypy,cover
 
 [testenv]
 commands = 

--
Gitblit v1.9.3