[Checkins] SVN: z3c.zalchemy/trunk/ - Declared install dependency on `zope.deferredimport`.

Michael Howitz mh at gocept.com
Fri Nov 12 02:17:25 EST 2010


Log message for revision 118358:
  - Declared install dependency on `zope.deferredimport`.
  - Tests still break (ImportError) even with version 0.4.8 of SQLAlchemy.
  
  

Changed:
  U   z3c.zalchemy/trunk/CHANGES.txt
  U   z3c.zalchemy/trunk/setup.py

-=-
Modified: z3c.zalchemy/trunk/CHANGES.txt
===================================================================
--- z3c.zalchemy/trunk/CHANGES.txt	2010-11-12 07:08:30 UTC (rev 118357)
+++ z3c.zalchemy/trunk/CHANGES.txt	2010-11-12 07:17:25 UTC (rev 118358)
@@ -6,12 +6,14 @@
 ==================
 
   - Updated to SQLAlchmy 0.4 compatibility. `z3c.zalchemy` now requires
-    SQLAlchemy 0.4
+    SQLAlchemy 0.4.
 
   - Added support for non-optimistic savepoints. Rolling back savepoints does
-    not evict the session but roll back the loaded object's state. 
+    not evict the session but roll back the loaded object's state.
 
-0.2.1 - 2007-11-13 
+  - Declared install dependency on `zope.deferredimport`.
+
+0.2.1 - 2007-11-13
 ==================
 
    - Conflict detection did not work with savepoints.

Modified: z3c.zalchemy/trunk/setup.py
===================================================================
--- z3c.zalchemy/trunk/setup.py	2010-11-12 07:08:30 UTC (rev 118357)
+++ z3c.zalchemy/trunk/setup.py	2010-11-12 07:17:25 UTC (rev 118358)
@@ -22,13 +22,14 @@
       install_requires=['setuptools',
                         'SQLAlchemy>=0.4.3',
                         'ZODB3',
+                        'zope.app.component',
+                        'zope.app.container',
+                        'zope.app.keyreference',
+                        'zope.app.pagetemplate',
+                        'zope.app.testing',
                         'zope.component',
+                        'zope.deferredimport',
                         'zope.interface',
                         'zope.schema',
-                        'zope.app.testing',
-                        'zope.app.component',
-                        'zope.app.keyreference',
-                        'zope.app.container',
-                        'zope.app.pagetemplate',
                        ],
       extras_require = dict(test=['pysqlite']))



More information about the checkins mailing list