[Checkins] SVN: persistent/trunk/ Note official support for Py3k.

Tres Seaver cvs-admin at zope.org
Fri Jun 29 04:02:54 UTC 2012


Log message for revision 127181:
  Note official support for Py3k.

Changed:
  _U  persistent/trunk/
  U   persistent/trunk/CHANGES.txt
  U   persistent/trunk/setup.py
  U   persistent/trunk/tox.ini

-=-
Modified: persistent/trunk/CHANGES.txt
===================================================================
--- persistent/trunk/CHANGES.txt	2012-06-29 04:02:46 UTC (rev 127180)
+++ persistent/trunk/CHANGES.txt	2012-06-29 04:02:50 UTC (rev 127181)
@@ -4,10 +4,13 @@
 4.0 (unreleased)
 -----------------
 
+- Added explicit support for Python 3.2 and PyPy.
+
+  - Note that the C implementations of Persistent, PickleCache, and Timestamp
+    are not built (yet) on these platforms.
+
 - 100% unit test coverage.
 
-- Added explicit support for PyPy.
-
 - Dropped explicit support for Python < 2.6.
 
 - Added support for continuous integration using ``tox`` and ``jenkins``.

Modified: persistent/trunk/setup.py
===================================================================
--- persistent/trunk/setup.py	2012-06-29 04:02:46 UTC (rev 127180)
+++ persistent/trunk/setup.py	2012-06-29 04:02:50 UTC (rev 127181)
@@ -75,8 +75,11 @@
         "Development Status :: 6 - Mature",
         "License :: OSI Approved :: Zope Public License",
         "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 :: Implementation :: CPython",
         "Programming Language :: Python :: Implementation :: PyPy",
         "Topic :: Database",

Modified: persistent/trunk/tox.ini
===================================================================
--- persistent/trunk/tox.ini	2012-06-29 04:02:46 UTC (rev 127180)
+++ persistent/trunk/tox.ini	2012-06-29 04:02:50 UTC (rev 127181)
@@ -3,7 +3,7 @@
 # Jython support pending 2.7 support, due 2012-07-15 or so.  See:
 # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
 #   py26,py27,py32,jython,pypy,coverage,docs
-    py26,py27,pypy,coverage,docs
+    py26,py27,pypy,py32,coverage,docs
 
 [testenv]
 deps =



More information about the checkins mailing list