remove test requirement for six

This requirement is problematic, as some versions cause problems with
assertWarns and some do not.  We are already filtering out versions that
we know cause problems and it can unintentionally cause an upgrade
superceding the system version if it remains as a "test_requires"
option, so best to get rid of it.
This commit is contained in:
John Evans 2015-01-08 15:30:10 -05:00
commit 1602991fac

View file

@ -21,7 +21,6 @@ kwargs = {'name': 'Glymur',
'test_suite': 'glymur.test'}
install_requires = ['numpy>=1.7.0', 'lxml>=3.0.0']
test_requires = ['six>=1.7.0']
if sys.hexversion < 0x03030000:
install_requires.append('contextlib2>=0.4')
test_requires.append('mock>=1.0.1')