From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Fri, 21 Nov 2008 05:36:45 +0000 (-0700)
Subject: setup: turn off --multi-version until I can figure out why it breaks test_runner
X-Git-Url: https://git.rkrishnan.org/%5B/CLI.txt?a=commitdiff_plain;h=1d377cc2d9871e39cdc1b50c95ad63c07de865d1;p=tahoe-lafs%2Ftahoe-lafs.git

setup: turn off --multi-version until I can figure out why it breaks test_runner
---

diff --git a/setup.py b/setup.py
index 2aae4789..c2b0bc69 100644
--- a/setup.py
+++ b/setup.py
@@ -300,7 +300,8 @@ class BuildTahoe(Command):
         if not os.path.isdir(supportlib):
             os.makedirs(supportlib)
 
-        command = [sys.executable, "setup.py", "develop", "--multi-version", "--prefix", "support"]
+        # command = [sys.executable, "setup.py", "develop", "--multi-version", "--prefix", "support"]
+        command = [sys.executable, "setup.py", "develop", "--prefix", "support"]
         if sys.platform == "linux2":
             # workaround for tahoe #229 / setuptools #17, on debian
             command.extend(["--site-dirs", "/var/lib/python-support/" + pyver])