1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Disable some broken settings in setup.py.
- Don't try to install requirements from PyPI.
- A bug in nose2 prevents the use of `python setup.py test`
Author: Barry Warsaw <barry@debian.org>
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,9 @@
'%s = nose2:discover' % SCRIPT2,
],
}
- params['install_requires'] = REQS
- params['test_suite'] = 'nose2.compat.unittest.collector'
+ # DEBIAN: don't try to install requirements from PyPI.
+ #params['install_requires'] = REQS
+ # DEBIAN: https://github.com/nose-devs/nose2/issues/118
+ #params['test_suite'] = 'nose2.compat.unittest.collector'
setup(**params)
|