Skip to content

Commit

Permalink
Fix package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hvelarde committed Jul 4, 2018
1 parent 58cfd18 commit 61f382d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ There's a frood who really knows where his towel is.
This version disables usage of Latest Sectionable NITF portlet.
Remove manually all Latest Sectionable NITF portlets before upgrading.

- Fix package dependencies.
[hvelarde]

- Small code refactor to increase future Python 3 compatibility;
add dependency on `six <https://pypi.python.org/pypi/six>`_.
[hvelarde]
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,18 @@
include_package_data=True,
zip_safe=False,
install_requires=[
'AccessControl',
'Acquisition',
'collective.js.cycle2 >=1.0b1',
'collective.js.jqueryui',
'collective.prettydate >=1.1',
'plone.api',
'plone.app.content',
'plone.app.contentmenu',
'plone.app.dexterity [relations]',
'plone.app.imaging',
'plone.app.layout >=2.3.12',
'plone.app.lockingbehavior',
'plone.app.portlets',
'plone.app.querystring >=1.2.5',
'plone.app.registry',
'plone.app.relationfield',
'plone.app.textfield',
Expand All @@ -63,6 +62,7 @@
'plone.formwidget.autocomplete',
'plone.formwidget.contenttree',
'plone.indexer',
'plone.memoize',
'plone.portlets',
'plone.registry',
'plone.supermodel',
Expand All @@ -71,17 +71,17 @@
'Products.CMFQuickInstallerTool',
'Products.GenericSetup',
'setuptools',
'six',
'zope.browserpage',
'zope.component',
'zope.deprecation',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.schema',
],
extras_require={
'test': [
'AccessControl',
'lxml',
'mock',
'plone.app.customerize',
'plone.app.robotframework',
Expand All @@ -91,8 +91,10 @@
'plone.testing',
'robotframework-selenium2accessibility',
'robotsuite',
'six',
'z3c.relationfield',
'zope.intid',
'zope.viewlet',
],
},
entry_points="""
Expand Down

0 comments on commit 61f382d

Please sign in to comment.