From: Zooko O'Whielacronx Date: Wed, 9 Apr 2008 18:30:53 +0000 (-0700) Subject: setup: setup_requires twisted, because foolscap <= 0.2.5 imports twisted in its setup... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=ff7f7168714d12e2cd0138a5138c5eb7906217ca;p=tahoe-lafs%2Ftahoe-lafs.git setup: setup_requires twisted, because foolscap <= 0.2.5 imports twisted in its setup.py and because we want trial to be available at build time --- diff --git a/setup.py b/setup.py index 0926c379..46164f50 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,9 @@ dependency_links=[os.path.join(miscdeps, t) for t in os.listdir(miscdeps) if t.e # tahoe source when that source was built. dependency_links.append("http://allmydata.org/trac/tahoe/wiki/Dependencies") -setup_requires = ['pyutil >= 1.3.16'] # used by the Windows installer builder, see misc/sub-ver.py +setup_requires = [] +setup_requires.append('pyutil >= 1.3.16') # used by the Windows installer builder, see misc/sub-ver.py +setup_requires.append('twisted >= 2.4.0') # for trial, and because foolscap <= 0.2.5 imports it in its setup.py # darcsver is needed only if you want "./setup.py darcsver" to write a new # version stamp in src/allmydata/_version.py, with a version number derived from