[Checkins] SVN: zope.app.pagetemplate/trunk/ move zope.app.interpreter dependency to an extra since it is only

Fred L. Drake, Jr. fdrake at gmail.com
Mon May 7 23:19:03 EDT 2007


Log message for revision 75616:
  move zope.app.interpreter dependency to an extra since it is only
  needed in very special cases
  

Changed:
  A   zope.app.pagetemplate/trunk/CHANGES.txt
  U   zope.app.pagetemplate/trunk/setup.py

-=-
Added: zope.app.pagetemplate/trunk/CHANGES.txt
===================================================================
--- zope.app.pagetemplate/trunk/CHANGES.txt	2007-05-08 02:41:08 UTC (rev 75615)
+++ zope.app.pagetemplate/trunk/CHANGES.txt	2007-05-08 03:19:02 UTC (rev 75616)
@@ -0,0 +1,10 @@
+=================================
+Changes for zope.app.pagetemplate
+=================================
+
+Version 3.4.0
+-------------
+
+- Dependency on zope.app.interpreter moved to an extra
+  [inline-evaluation]; this is only needed by zope.app.pythonpage,
+  which is an oddity.


Property changes on: zope.app.pagetemplate/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Modified: zope.app.pagetemplate/trunk/setup.py
===================================================================
--- zope.app.pagetemplate/trunk/setup.py	2007-05-08 02:41:08 UTC (rev 75615)
+++ zope.app.pagetemplate/trunk/setup.py	2007-05-08 03:19:02 UTC (rev 75616)
@@ -13,7 +13,6 @@
       include_package_data=True,
       install_requires=[
           'setuptools',
-          'zope.app.interpreter',
           'zope.component [hook]',
           'zope.configuration',
           'zope.dublincore',
@@ -29,6 +28,9 @@
           'zope.traversing',
           ],
       extras_require={
+          "inline-evaluation": ['zope.app.interpreter'],
+          # The tests appear not to need zope.app.interpreter; there
+          # should be tests for that, though.  :-(
           "test": ['zope.app.testing',
                    'zope.app.securitypolicy',
                    'zope.app.zcmlfiles'],



More information about the Checkins mailing list