summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Theune <ct@gocept.com>2007-06-10 10:32:40 +0000
committerChristian Theune <ct@gocept.com>2007-06-10 10:32:40 +0000
commitb5daa8ddfb0c9b48bf3ded36c236a876491dcd1e (patch)
tree2b3482509b02a31760f9d5568854071189a06735
parente31eaa592efe476d7d1c4ef862a10d353e7a48db (diff)
downloadzope-tal-b5daa8ddfb0c9b48bf3ded36c236a876491dcd1e.tar.gz
- removed setup.cfg3.4.0b1
- requiring newer version of zope.i18n - added changelog
-rw-r--r--CHANGES.txt12
-rw-r--r--setup.cfg2
-rw-r--r--setup.py4
3 files changed, 14 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
new file mode 100644
index 0000000..61da1c1
--- /dev/null
+++ b/CHANGES.txt
@@ -0,0 +1,12 @@
+zope.tal package changelog
+==========================
+
+3.4.0b1
+-------
+
+- Updated dependency for zope.i18n that requires the correct version of
+ zope.security to avoid a hidden dependency issue in zope.security.
+
+
+Note: The code changes before 3.4.0b1 where not tracked as an individual
+package and have been documented in the Zope 3 changelog.
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 9350078..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1 \ No newline at end of file
diff --git a/setup.py b/setup.py
index 1cfce67..94858d9 100644
--- a/setup.py
+++ b/setup.py
@@ -27,14 +27,14 @@ setup(name='zope.tal',
description='Zope 3 Template Application Languate (TAL)',
author='Zope Corporation and Contributors',
author_email='zope3-dev@zope.org',
-
+
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['zope',],
install_requires=['setuptools',
'zope.i18nmessageid',
- 'zope.i18n',
+ 'zope.i18n>=3.4.0b1',
'zope.interface',
],
include_package_data = True,