[Checkins] SVN: zope.app.zapi/trunk/ Update required pacakges to make tests working and get ready for release.

Stephan Richter srichter at gmail.com
Thu Jul 23 03:15:59 EDT 2009


Log message for revision 102112:
  Update required pacakges to make tests working and get ready for release.
  

Changed:
  U   zope.app.zapi/trunk/CHANGES.txt
  U   zope.app.zapi/trunk/setup.py
  _U  zope.app.zapi/trunk/src/

-=-
Modified: zope.app.zapi/trunk/CHANGES.txt
===================================================================
--- zope.app.zapi/trunk/CHANGES.txt	2009-07-23 06:47:09 UTC (rev 102111)
+++ zope.app.zapi/trunk/CHANGES.txt	2009-07-23 07:15:58 UTC (rev 102112)
@@ -1,8 +1,14 @@
-Change History
-==============
+CHANGES
+=======
 
 
+3.4.1 (2009-07-23)
+------------------
+
+- Explicitely list all dependencies. Fixes test failures.
+
+
 3.4.0 (2007-10-03)
 ------------------
 
-Initial public release as an individual package.
+- Initial public release as an individual package.

Modified: zope.app.zapi/trunk/setup.py
===================================================================
--- zope.app.zapi/trunk/setup.py	2009-07-23 06:47:09 UTC (rev 102111)
+++ zope.app.zapi/trunk/setup.py	2009-07-23 07:15:58 UTC (rev 102112)
@@ -36,7 +36,7 @@
 
 setup(
     name='zope.app.zapi',
-    version='3.4.1dev',
+    version='3.4.1',
     url='http://pypi.python.org/pypi/zope.app.zapi',
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
@@ -58,13 +58,16 @@
     package_dir={'': 'src'},
     namespace_packages=['zope', 'zope.app'],
     include_package_data=True,
-    install_requires=['setuptools',
-                      'zope.interface',
-                      'zope.component',
-                      'zope.traversing',
-                      'zope.app.publisher',
-                      'zope.app.interface'
-                      ],
+    install_requires=[
+        'setuptools',
+        'zope.app.interface',
+        'zope.app.publisher',
+        'zope.component',
+        'zope.deferredimport',
+        'zope.deprecation',
+        'zope.interface',
+        'zope.traversing',
+        ],
     extras_require=dict(test=['zope.app.testing']),
     zip_safe=False,
     )


Property changes on: zope.app.zapi/trunk/src
___________________________________________________________________
Added: svn:ignore
   + zope.app.zapi.egg-info




More information about the Checkins mailing list