From: david-sarah Date: Tue, 25 May 2010 00:44:44 +0000 (-0700) Subject: Document reason for the trialcoverage version requirement being 0.3.3. X-Git-Url: https://git.rkrishnan.org/configuration.txt?a=commitdiff_plain;h=02d0c4eb92c457b3757d4c301f9609797da25c71;p=tahoe-lafs%2Ftahoe-lafs.git Document reason for the trialcoverage version requirement being 0.3.3. --- diff --git a/setup.py b/setup.py index 81cf80dc..d1481564 100644 --- a/setup.py +++ b/setup.py @@ -125,6 +125,8 @@ setup_requires.append('setuptools_darcs >= 1.1.0') # trialcoverage is required if you want the "trial" unit test runner to have a # "--reporter=bwverbose-coverage" option which produces code-coverage results. +# The required version is 0.3.3, because that is the latest version that only +# depends on a version of pycoverage for which binary packages are available. if "--reporter=bwverbose-coverage" in sys.argv: setup_requires.append('trialcoverage >= 0.3.3')