From 0c067d195decc908ce2c3076f3c92f8fa3f19d03 Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Sun, 17 May 2009 18:48:20 +0000 Subject: require setuptools 0.6c9, remove old cygwin hack git-svn-id: http://simplejson.googlecode.com/svn/trunk@187 a4795897-2c25-0410-b006-0d3caba88fa1 --- setup.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 78a453d..44eb1a2 100644 --- a/setup.py +++ b/setup.py @@ -1,17 +1,7 @@ #!/usr/bin/env python from ez_setup import use_setuptools -import sys -if 'cygwin' in sys.platform.lower(): - min_version='0.6c6' -else: - min_version='0.6a9' -try: - use_setuptools(min_version=min_version) -except TypeError: - # If a non-local ez_setup is already imported, it won't be able to - # use the min_version kwarg and will bail with TypeError - use_setuptools() +use_setuptools() from setuptools import setup, find_packages, Extension, Feature from distutils.command.build_ext import build_ext -- cgit v1.2.1