From ff7f7168714d12e2cd0138a5138c5eb7906217ca Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Wed, 9 Apr 2008 11:30:53 -0700 Subject: [PATCH] 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 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.45.2