From: Brian Warner <warner@lothar.com>
Date: Sat, 14 Jul 2007 02:47:56 +0000 (-0700)
Subject: simplejson: lower our minimum-required-version of setuptools to 0.6a9, since that... 
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/about.html?a=commitdiff_plain;h=016e17446a5863a44b3e9284403dc30b3882c35b;p=tahoe-lafs%2Ftahoe-lafs.git

simplejson: lower our minimum-required-version of setuptools to 0.6a9, since that seems to work, and it's the version that comes with dapper
---

diff --git a/src/simplejson/setup.py b/src/simplejson/setup.py
index efc4454b..01d1e433 100644
--- a/src/simplejson/setup.py
+++ b/src/simplejson/setup.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 import ez_setup
-ez_setup.use_setuptools(min_version="0.6c3")
+ez_setup.use_setuptools(min_version="0.6a9")
 
 from setuptools import setup, find_packages, Extension, Feature
 from distutils.command.build_ext import build_ext