Skip to content

Commit

Permalink
Remove deps on zope.interface and zope.exceptions. They aren't used h…
Browse files Browse the repository at this point in the history
…ere and this helps prevent circular build issues.
  • Loading branch information
jamadden committed Jun 8, 2017
1 parent 0691739 commit 04b2a52
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ python:
- pypy
- pypy3
install:
- pip install .
- pip install -e .[test]
script:
- python setup.py -q test -q
notifications:
Expand Down
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changes
4.6.2 (unreleased)
------------------

- Nothing changed yet.
- Remove dependencies on ``zope.interface`` and ``zope.exceptions``;
they're not used here.


4.6.1 (2017-01-04)
Expand Down
16 changes: 11 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
'src/zope/testing/doctest.txt',
'src/zope/testing/formparser.txt',
'src/zope/testing/module.txt',
'src/zope/testing/setupstack.txt'],
'src/zope/testing/setupstack.txt',
],
)
else:
extras = {}
Expand All @@ -51,7 +52,8 @@ def read(*rnames):
'setupstack.txt',
'wait.txt',
'doctestcase.txt',
]]
]
]


long_description = '\n\n'.join(
Expand Down Expand Up @@ -92,13 +94,17 @@ def read(*rnames):
keywords=keywords,
packages=[
"zope",
"zope.testing"],
"zope.testing",
],
package_dir={'': 'src'},
namespace_packages=['zope'],
install_requires=[
'setuptools',
'zope.exceptions',
'zope.interface'],
],
extras_require={
'test': [
],
},
include_package_data=True,
zip_safe=False,
test_suite='zope.testing.tests.test_suite',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ envlist =
commands =
python setup.py -q test -q
deps =
zope.exceptions
zope.interface
.[test]

0 comments on commit 04b2a52

Please sign in to comment.