[Checkins] SVN: plone.z3cform/trunk/ Depend on zope.component<3.5 to avoid TypeError("Missing 'provides'

Daniel Nouri daniel.nouri at gmail.com
Fri Jul 25 10:13:46 EDT 2008


Log message for revision 88815:
  Depend on zope.component<3.5 to avoid TypeError("Missing 'provides'
  attribute") error.
  

Changed:
  U   plone.z3cform/trunk/docs/HISTORY.txt
  U   plone.z3cform/trunk/setup.py

-=-
Modified: plone.z3cform/trunk/docs/HISTORY.txt
===================================================================
--- plone.z3cform/trunk/docs/HISTORY.txt	2008-07-25 12:41:50 UTC (rev 88814)
+++ plone.z3cform/trunk/docs/HISTORY.txt	2008-07-25 14:13:43 UTC (rev 88815)
@@ -4,6 +4,9 @@
 0.4 - Unreleased
 ----------------
 
+* Depend on zope.component<3.5 to avoid ``TypeError("Missing
+  'provides' attribute")`` error.
+
 * Allow ICrudForm.add to raise ValidationError, which allows for
   displaying a user-friendly error message.
 

Modified: plone.z3cform/trunk/setup.py
===================================================================
--- plone.z3cform/trunk/setup.py	2008-07-25 12:41:50 UTC (rev 88814)
+++ plone.z3cform/trunk/setup.py	2008-07-25 14:13:43 UTC (rev 88815)
@@ -39,6 +39,7 @@
       install_requires=[
           'setuptools',
           'z3c.form',
-          'zope.i18n>=3.4'
+          'zope.i18n>=3.4',
+          'zope.component<3.5dev',
       ],
       )



More information about the Checkins mailing list