[Python-modules-commits] [nose2] 03/05: Disable some broken settings in setup.py.
Barry Warsaw
barry at moszumanska.debian.org
Wed Mar 16 20:31:27 UTC 2016
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository nose2.
commit 9ae8032315c3c93e5d1787d064c87fe2154fbe1c
Author: Barry Warsaw <barry at debian.org>
Date: Thu Oct 8 10:02:15 2015 -0700
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`
Forwarded: not-needed
Patch-Name: requirements.patch
---
setup.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/setup.py b/setup.py
index d556a05..3125410 100644
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,9 @@ else:
'%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)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/nose2.git
More information about the Python-modules-commits
mailing list