No need to check for Python2.6 to install plone.app.uuid anymore.

svn path=/plone.app.discussion/trunk/; revision=49028
This commit is contained in:
Timo Stollenwerk 2011-04-22 07:16:14 +00:00
parent dbbe631cf2
commit 1c2d5651b9
1 changed files with 1 additions and 4 deletions

View File

@ -8,6 +8,7 @@ install_requires = [
'collective.monkeypatcher',
'plone.app.layout',
'plone.app.registry',
'plone.app.uuid',
'plone.app.z3cform',
'plone.indexer',
'plone.registry',
@ -23,10 +24,6 @@ install_requires = [
'z3c.form>=2.3.3',
]
# On Python 2.6 (implying Plone 4), require plone.app.uuid
if sys.version_info >= (2,6):
install_requires.append('plone.app.uuid')
setup(name='plone.app.discussion',
version=version,
description="Enhanced discussion support for Plone",