Skip to content

Commit

Permalink
Add explicit dep. on 'persistent' / 'zope.annotation'.
Browse files Browse the repository at this point in the history
Previously, both were required but not declared.
  • Loading branch information
tseaver committed Jan 10, 2015
1 parent a54e7aa commit 5208dd3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,9 @@ Changes
4.1.1 (Unreleased)
------------------

- TBD
- Add explicit dependency on ``persistent`` (required but not declared).

- Add explicit dependency on ``zope.annotation`` (required but not declared).


4.1.0 (2014-12-26)
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -82,14 +82,15 @@ def alltests():
extras_require=dict(
test=['zope.testing >= 3.8',
'zope.testrunner',
'zope.annotation',
'zope.configuration',
]
),
install_requires = [
'persistent',
'pytz',
'setuptools',
'six',
'zope.annotation',
'zope.component[zcml]',
'zope.datetime',
'zope.interface',
Expand All @@ -101,8 +102,8 @@ def alltests():
tests_require = [
'zope.testing',
'zope.testrunner',
'zope.annotation',
'zope.configuration'],
'zope.configuration',
],
test_suite = '__main__.alltests',
zip_safe = False
)
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -11,6 +11,7 @@ commands =
# without explicit deps, setup.py test will download a bunch of eggs into $PWD
# (and it seems I can't use zope.dottedname[testing] here, so forget DRY)
deps =
persistent
pytz
six
zope.annotation
Expand Down

0 comments on commit 5208dd3

Please sign in to comment.