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

Brian May bam at moszumanska.debian.org
Tue Feb 23 06:00:26 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 59407e85d2b5af15d19bacfea4317e081d4bf6f8
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 79f9ecb..5444bb0 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