Skip to content

Commit

Permalink
Merge branch 'feature/2.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Apr 16, 2013
2 parents fea177d + f96778e commit 27abcb8
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 192 deletions.
95 changes: 0 additions & 95 deletions python-tw2-forms.spec

This file was deleted.

20 changes: 13 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,20 @@
"tw2.core>=2.1.4",
]

tests_require=[
#'BeautifulSoup',
'nose',
'sieve',
] + _extra_genshi + _extra_mako + _extra_jinja

if sys.version_info[0] == 2 and sys.version_info[1] <= 5:
requires.append('WebOb<=1.1.1')
tests_require.append('WebTest<2.0')
else:
tests_require.append('WebTest')

if sys.version_info[0] < 3:
tests_require.append('FormEncode')

setup(
name='tw2.forms',
Expand All @@ -42,13 +54,7 @@
keywords=[
'toscawidgets.widgets',
],
tests_require=[
'BeautifulSoup',
'nose',
'FormEncode',
'WebTest<2.0',
'strainer',
] + _extra_genshi + _extra_mako + _extra_jinja,
tests_require=tests_require,
extras_require={
'genshi': _extra_genshi,
'mako': _extra_mako,
Expand Down
Loading

0 comments on commit 27abcb8

Please sign in to comment.