[Checkins] SVN: zope.i18n/branches/3.4.0.1-repoze/ Create a branch that allows us to use this package as a library (without inappropriate dependencies).

Chris McDonough chrism at plope.com
Fri Nov 2 00:41:24 EDT 2007


Log message for revision 81404:
  Create a branch that allows us to use this package as a library (without inappropriate dependencies).
  

Changed:
  U   zope.i18n/branches/3.4.0.1-repoze/CHANGES.txt
  U   zope.i18n/branches/3.4.0.1-repoze/setup.py

-=-
Modified: zope.i18n/branches/3.4.0.1-repoze/CHANGES.txt
===================================================================
--- zope.i18n/branches/3.4.0.1-repoze/CHANGES.txt	2007-11-02 04:34:05 UTC (rev 81403)
+++ zope.i18n/branches/3.4.0.1-repoze/CHANGES.txt	2007-11-02 04:41:24 UTC (rev 81404)
@@ -2,6 +2,14 @@
 CHANGES
 =======
 
+3.4.0.1-repoze (2007-11-01)
+--------------------
+
+ - Repoze-local release which fixes dependencies (don't depend on
+   zope.configuration or zope.component's [zcml] extra) so we can use
+   this package as a library with sane transitive dependencies (as
+   opposed to a Zope plugin).
+
 3.4.0 (2007-10-02)
 ------------------
 

Modified: zope.i18n/branches/3.4.0.1-repoze/setup.py
===================================================================
--- zope.i18n/branches/3.4.0.1-repoze/setup.py	2007-11-02 04:34:05 UTC (rev 81403)
+++ zope.i18n/branches/3.4.0.1-repoze/setup.py	2007-11-02 04:41:24 UTC (rev 81404)
@@ -24,7 +24,7 @@
 
 setup(
     name='zope.i18n',
-    version = '3.4.0',
+    version = '3.4.0.1-repoze',
     author='Zope Corporation and Contributors',
     author_email='zope3-dev at zope.org',
     description='Zope3 Internationalization Support',
@@ -51,10 +51,9 @@
     package_dir = {'': 'src'},
     namespace_packages=['zope',],
     install_requires=['setuptools',
-                      'pytz',
-                      'zope.i18nmessageid',
-                      'zope.component [zcml]',
-                      'zope.configuration',
+                      'pytz == 2007g',
+                      'zope.i18nmessageid >= 3.4.0a1, < 3.4.1',
+		      'zope.component >= 3.4.0a1, < 3.4.1',
                       ],
     include_package_data = True,
     zip_safe = False,



More information about the Checkins mailing list