[Checkins] SVN: zope.publisher/branches/3.5/ Hackery to try getting tests to pass (will replace with KGS index).

Tres Seaver tseaver at palladion.com
Mon Apr 6 10:46:08 EDT 2009


Log message for revision 98929:
  Hackery to try getting tests to pass (will replace with KGS index).

Changed:
  U   zope.publisher/branches/3.5/CHANGES.txt
  U   zope.publisher/branches/3.5/setup.py

-=-
Modified: zope.publisher/branches/3.5/CHANGES.txt
===================================================================
--- zope.publisher/branches/3.5/CHANGES.txt	2009-04-06 14:44:19 UTC (rev 98928)
+++ zope.publisher/branches/3.5/CHANGES.txt	2009-04-06 14:46:08 UTC (rev 98929)
@@ -1,6 +1,15 @@
 CHANGES
 =======
 
+3.5.7 (unreleased)
+------------------
+
+- Pin transitive dependency on ``zope.app.component`` to a version less than
+  ``3.7.0``, which conflicts with this release.
+
+- Pin dependency on ``zope.component`` to a version less than
+  ``3.6.0``, which removed BBB interfaces used by this release.
+
 3.5.6 (2009-02-14)
 ------------------
 

Modified: zope.publisher/branches/3.5/setup.py
===================================================================
--- zope.publisher/branches/3.5/setup.py	2009-04-06 14:44:19 UTC (rev 98928)
+++ zope.publisher/branches/3.5/setup.py	2009-04-06 14:46:08 UTC (rev 98929)
@@ -24,38 +24,46 @@
 """
 
 setup(name='zope.publisher',
-      version = '3.5.6',
+      version = '3.5.7dev',
       url='http://pypi.python.org/pypi/zope.publisher',
       license='ZPL 2.1',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description="The Zope publisher publishes Python objects on the web.",
-      long_description=(open('README.txt').read()
-                        + '\n\n'
-                        + open('CHANGES.txt').read()),
-
+      long_description=(open('README.txt').read() + '\n\n'
+                      + open('CHANGES.txt').read()),
       entry_points = entry_points,
-
       packages=find_packages('src'),
       package_dir = {'': 'src'},
-
       namespace_packages=['zope',],
-      install_requires=['setuptools',
-                        'zope.component',
-                        'zope.event',
-                        'zope.exceptions',
-                        'zope.i18n',
-                        'zope.interface',
-                        'zope.location',
-                        'zope.proxy',
-                        'zope.security',
-                        'zope.deprecation',
-                        'zope.deferredimport'],
-      extras_require=dict(
-          test = ['zope.testing',
-                  'zope.app.testing'],
-          ),
       include_package_data = True,
-
       zip_safe = False,
-      )
+      install_requires=[
+        'setuptools',
+        'zope.component<=3.5.99',     # 3.6.0 removes BBB interfaces.
+        'zope.app.component<=3.6.99', # transitive: later versions require
+                                      # zope.publisher >= 3.6.0.
+        'zope.app.security<=3.6.99',  # transitive: later versions require
+                                      # zope.component >= 3.6.0.
+        'zope.app.authentication<=3.5.99',  # transitive: later versions
+                                      # require zope.component >= 3.6.0.
+        'zope.traversing<3.5.3',      # 3.5.3 depends on newer zope.publisher
+        'zope.container<=3.6.99',     # transitive;  newer versions
+                                      # depend on zope.publisher >= 3.6.0
+        'zope.event',
+        'zope.exceptions',
+        'zope.i18n',
+        'zope.interface',
+        'zope.location',
+        'zope.proxy',
+        'zope.security',
+        'zope.deprecation',
+        'zope.deferredimport',
+      ],
+      extras_require={
+        'test': [
+            'zope.testing',
+            'zope.app.testing',
+         ],
+      },
+)



More information about the Checkins mailing list