summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-01 18:34:36 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-01 18:34:36 +0000
commitdf1c6f7fcba90ced4cc5b3ea98cceacac39e8af1 (patch)
tree9f2dc49456c557d54b4cc1cbfc7a7021ddb816c9 /setup.py
parentba9b0e647bff1bf0c437ab204ddf11783ed698f8 (diff)
downloadpyramid-df1c6f7fcba90ced4cc5b3ea98cceacac39e8af1.tar.gz
pyramid-df1c6f7fcba90ced4cc5b3ea98cceacac39e8af1.tar.bz2
pyramid-df1c6f7fcba90ced4cc5b3ea98cceacac39e8af1.zip
Remove dependencies on zope.deferredimport. zope.deferredimport was
only used as a deprecation mechanism, so where possible we've kept around the deprecation warnings and we've used zope.deprectation instead. However, when cross-module deprecations were included, rather than introducing a cyclic dependency, we just removed the deprecation itself. As a result: - Since version 0.6.1, a deprecation warning has been emitted when the name ``model_url`` is imported from the ``repoze.bfg.traversal`` module. This import alias (and the deprecation warning) has been removed. Any import of the ``model_url`` function will now need to be done from ``repoze.bfg.url``; any import of the name ``model_url`` from ``repoze.bfg.traversal`` will now fail. This was done to remove a dependency on zope.deferredimport. - Since version 0.6.5, a deprecation warning has been emitted when the name ``RoutesModelTraverser`` is imported from the ``repoze.bfg.traversal`` module. This import alias (and the deprecation warning) has been removed. Any import of the ``RoutesModelTraverser`` class will now need to be done from ``repoze.bfg.urldispatch``; any import of the name ``RoutesModelTraverser`` from ``repoze.bfg.traversal`` will now fail. This was done to remove a dependency on zope.deferredimport.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d36f33c24..67d05f206 100644
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,6 @@ install_requires=[
'zope.interface >= 3.5.1', # 3.5.0 comment: "allow to bootstrap on jython"
'zope.component >= 3.6.0', # independent of zope.hookable
'zope.testing',
- 'zope.deferredimport',
'zope.deprecation',
'repoze.zcml',
'martian',