[Checkins] SVN: ZODB3/trunk/ Prepare new release

Hano Schlichting cvs-admin at zope.org
Sat Mar 2 12:57:41 UTC 2013


Log message for revision 130002:
  Prepare new release
  

Changed:
  U   ZODB3/trunk/CHANGES.txt
  A   ZODB3/trunk/MANIFEST.in
  U   ZODB3/trunk/setup.py

-=-
Modified: ZODB3/trunk/CHANGES.txt
===================================================================
--- ZODB3/trunk/CHANGES.txt	2013-03-02 12:24:07 UTC (rev 130001)
+++ ZODB3/trunk/CHANGES.txt	2013-03-02 12:57:40 UTC (rev 130002)
@@ -1,13 +1,20 @@
-================
- Change History
-================
+==============
+Change History
+==============
 
+3.11.0a3 (2013-03-02)
+=====================
+
+Made the setup.py file Python 3 compatible. Actual Python 3 compatibility
+depends on the porting status of the BTrees, persistent, ZEO and ZODB
+projects.
+
 3.11.0a2 (2012-12-02)
 =====================
 
 Fixed: The ZODB3 "test" extra was inadvertently removed.
 
-       Note that the text extra exists soley to allow other packages
+       Note that the text extra exists solely to allow other packages
        to use ``ZODB [test]`` in their test dependencies.
 
 3.11.0a1 (2012-12-01)

Added: ZODB3/trunk/MANIFEST.in
===================================================================
--- ZODB3/trunk/MANIFEST.in	                        (rev 0)
+++ ZODB3/trunk/MANIFEST.in	2013-03-02 12:57:40 UTC (rev 130002)
@@ -0,0 +1,2 @@
+include *.rst
+include *.txt

Modified: ZODB3/trunk/setup.py
===================================================================
--- ZODB3/trunk/setup.py	2013-03-02 12:24:07 UTC (rev 130001)
+++ ZODB3/trunk/setup.py	2013-03-02 12:57:40 UTC (rev 130002)
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-VERSION = "3.11.0dev"
+VERSION = "3.11.0a3"
 
 from setuptools import setup
 import sys
@@ -24,10 +24,14 @@
 Intended Audience :: Developers
 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 :: 3.3
+Programming Language :: Python :: Implementation :: CPython
 Topic :: Database
-Topic :: Software Development :: Libraries :: Python Modules
 Operating System :: Microsoft :: Windows
 Operating System :: Unix
 Framework :: ZODB
@@ -37,28 +41,31 @@
     open('README.txt').read()
     + '\n' +
     open('CHANGES.txt').read()
+)
+
+setup(
+    name="ZODB3",
+    version=VERSION,
+    maintainer="Zope Foundation and Contributors",
+    maintainer_email="zodb-dev at zope.org",
+    license="ZPL 2.1",
+    platforms=["any"],
+    description=long_description.split('\n', 2)[1],
+    long_description=long_description,
+    classifiers=filter(None, classifiers.split("\n")),
+    install_requires=[
+        'ZEO >=4.0.0dev',
+        'ZODB >=4.0.0dev',
+        'persistent >=4.0.0dev',
+        'BTrees >=4.0.0dev',
+        'transaction'],
+    zip_safe=False,
+    extras_require=dict(
+        test=[
+            'ZEO [test]',
+            'ZODB [test]',
+            'BTrees [test]',
+            'persistent [test]',
+        ],
     )
-
-setup(name="ZODB3",
-      version=VERSION,
-      maintainer="Zope Foundation and Contributors",
-      maintainer_email="zodb-dev at zope.org",
-      license = "ZPL 2.1",
-      platforms = ["any"],
-      description = long_description.split('\n', 2)[1],
-      long_description = long_description,
-      classifiers = filter(None, classifiers.split("\n")),
-      install_requires = [
-          'ZEO >=4.0.0dev, <4.1dev',
-          'ZODB >=4.0.0dev, <4.1dev',
-          'persistent >=4.0.0dev, <4.1dev',
-          'BTrees >=4.0.0dev, <4.1dev',
-          'transaction'],
-      zip_safe = False,
-      extras_require = dict(
-          test=['ZEO [test]',
-                'ZODB [test]',
-                'BTrees [test]',
-                'persistent [test]'],
-          )
-      )
+)



More information about the checkins mailing list