Skip to content

Commit

Permalink
Merge pull request #3 from gbastien/master
Browse files Browse the repository at this point in the history
Use future>=0.14.0 so 'html' is available in Python 2.7.
  • Loading branch information
strichter committed Apr 19, 2017
2 parents 4b0a801 + aeff980 commit b1a3949
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CHANGES
2.0.1 (unreleased)
------------------

- Nothing changed yet.
- Required future>=0.14.0 so `html` package is available in Python 2.7.


2.0.0 (2017-04-17)
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def read(*rnames):
setup(
name='z3c.table',
version='2.0.1.dev0',
author = "Stephan Richter, Roger Ineichen and the Zope Community",
author_email = "zope-dev@zope.org",
description = "Modular table rendering implementation for Zope3",
author="Stephan Richter, Roger Ineichen and the Zope Community",
author_email="zope-dev@zope.org",
description="Modular table rendering implementation for Zope3",
long_description=(
read('README.txt')
+ '\n\n' +
Expand Down Expand Up @@ -77,7 +77,7 @@ def read(*rnames):
),
install_requires=[
'setuptools',
'future',
'future>=0.14.0',
'z3c.batching>=1.1.0',
'zope.component',
'zope.contentprovider',
Expand Down

0 comments on commit b1a3949

Please sign in to comment.