Skip to content

Commit

Permalink
Update changelog and express support for Python 2.7, 3.4 and 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
sallner committed Jul 13, 2016
1 parent cd80ced commit 71e2d5d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Changes
- Use ``zope.interface.implementer`` decorator instead of
``zope.interface.implements`` with classes to support Python 3.

- Express support for Python 2.7, 3.4 and 3.5.

- Use tox for test orchestration.


1.3.1 (2016-01-29)
------------------
Expand Down
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ def read(*rnames):
'zope.container',
'zope.interface',
'zope.lifecycleevent',
]
]

tests_require = [
'zope.testing',
'zope.component',
]
]

setup(
name='grokcore.content',
Expand All @@ -46,5 +46,11 @@ def read(*rnames):
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Framework :: Zope3'],
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Zope3'
],
)

0 comments on commit 71e2d5d

Please sign in to comment.