summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2007-11-02 04:41:24 +0000
committerChris McDonough <chrism@plope.com>2007-11-02 04:41:24 +0000
commit3219d2a7e9f508cdd71d0fe4829dd77a14c7b001 (patch)
tree5ec3e3c826fd2f3ec8a855c3fd899907cef38a5e
parent101ff8390e0309987a80dbca05b1300e4717c8ae (diff)
downloadzope-i18n-3.4.0.1-repoze.tar.gz
Create a branch that allows us to use this package as a library (without inappropriate dependencies).3.4.0.1-repoze
-rw-r--r--CHANGES.txt8
-rw-r--r--setup.py9
2 files changed, 12 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 581c6fc..e18a610 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)
------------------
diff --git a/setup.py b/setup.py
index f986b9b..1494899 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ def read(*rnames):
setup(
name='zope.i18n',
- version = '3.4.0',
+ version = '3.4.0.1-repoze',
author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org',
description='Zope3 Internationalization Support',
@@ -51,10 +51,9 @@ setup(
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,