[Checkins] SVN: zc.zope3recipes/trunk/ Fixed tests to work with latest packages and get ready for release.

Stephan Richter srichter at gmail.com
Thu Jul 23 15:36:31 EDT 2009


Log message for revision 102177:
  Fixed tests to work with latest packages and get ready for release.
  

Changed:
  U   zc.zope3recipes/trunk/README.txt
  U   zc.zope3recipes/trunk/setup.py
  U   zc.zope3recipes/trunk/zc/zope3recipes/tests.py

-=-
Modified: zc.zope3recipes/trunk/README.txt
===================================================================
--- zc.zope3recipes/trunk/README.txt	2009-07-23 19:12:45 UTC (rev 102176)
+++ zc.zope3recipes/trunk/README.txt	2009-07-23 19:36:31 UTC (rev 102177)
@@ -18,6 +18,12 @@
 ********
 
 ==================
+0.9.0 (2009/07/21)
+==================
+
+Updated tests to work with latest package versions.
+
+==================
 0.8.0 (2009/04/03)
 ==================
 

Modified: zc.zope3recipes/trunk/setup.py
===================================================================
--- zc.zope3recipes/trunk/setup.py	2009-07-23 19:12:45 UTC (rev 102176)
+++ zc.zope3recipes/trunk/setup.py	2009-07-23 19:36:31 UTC (rev 102177)
@@ -7,7 +7,7 @@
 name = "zc.zope3recipes"
 setup(
     name = name,
-    version = "0.8dev",
+    version = "0.9.0",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for defining Zope 3 applications",
@@ -28,8 +28,12 @@
     packages = find_packages('.'),
     include_package_data = True,
     namespace_packages = ['zc'],
-    install_requires = ['zc.buildout', 'zope.testing', 'setuptools',
-                        'zc.recipe.egg', 'ZConfig >=2.4a5'],
+    install_requires = [
+        'zc.buildout',
+        'zope.testing',
+        'setuptools',
+        'zc.recipe.egg',
+        'ZConfig >=2.4a5'],
     entry_points = {
         'zc.buildout': [
              'application = %s.recipes:Application' % name,

Modified: zc.zope3recipes/trunk/zc/zope3recipes/tests.py
===================================================================
--- zc.zope3recipes/trunk/zc/zope3recipes/tests.py	2009-07-23 19:12:45 UTC (rev 102176)
+++ zc.zope3recipes/trunk/zc/zope3recipes/tests.py	2009-07-23 19:36:31 UTC (rev 102177)
@@ -192,6 +192,7 @@
 def setUp(test):
     zc.buildout.testing.buildoutSetUp(test)
     zc.buildout.testing.install_develop('zc.zope3recipes', test)
+    zc.buildout.testing.install('zope.exceptions', test)
     zc.buildout.testing.install('zope.interface', test)
     zc.buildout.testing.install('zope.testing', test)
     zc.buildout.testing.install('zc.recipe.egg', test)



More information about the Checkins mailing list