From 50b28c5d7a1ccfc3cc3a5a8fc5cf664880598fc6 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Mon, 30 Jan 2012 23:46:36 -0800 Subject: [PATCH] Remove optional setuptools import. We don't rely on any setuptools features for python2 builds, and the optional import makes our builds depend on the environment in subtle ways (egg-info directories, etc). --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 872c737c..91e55933 100644 --- a/setup.py +++ b/setup.py @@ -16,12 +16,6 @@ import distutils.core import sys -# Importing setuptools adds some features like "setup.py develop", but -# it's optional so swallow the error if it's not there. -try: - import setuptools -except ImportError: - pass kwargs = {}