[Python-modules-commits] [nose2] 03/06: Disable some broken settings in setup.py.

Brian May bam at moszumanska.debian.org
Thu Feb 25 10:47:31 UTC 2016


This is an automated email from the git hooks/post-receive script.

bam pushed a commit to branch master
in repository nose2.

commit a99bc1b08f2b5013c209753886bc90c4c948d54d
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 ef348b3..2fc5763 100644
--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,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