From 6a8b89ae1c27dcc5806270dcc6a259c8634c0943 Mon Sep 17 00:00:00 2001 From: John Evans Date: Sat, 10 Jan 2015 10:06:25 -0500 Subject: [PATCH] remove test_requires, as setuptools doesn't seem to support it "mock" won't get installed in a virtualenv because of this --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 00566cd..b49ed69 100644 --- a/setup.py +++ b/setup.py @@ -21,12 +21,10 @@ kwargs = {'name': 'Glymur', 'test_suite': 'glymur.test'} install_requires = ['numpy>=1.7.0', 'lxml>=3.0.0'] -test_requires = [] if sys.hexversion < 0x03030000: install_requires.append('contextlib2>=0.4') - test_requires.append('mock>=1.0.1') + install_requires.append('mock>=1.0.1') kwargs['install_requires'] = install_requires -kwargs['test_requires'] = test_requires clssfrs = ["Programming Language :: Python", "Programming Language :: Python :: 2.7",