From 439f7c50f4027a3afa3fc6768605ed73812d63bc Mon Sep 17 00:00:00 2001 From: Dieter Vandenbussche Date: Tue, 28 Jun 2011 20:40:31 -0400 Subject: [PATCH] Minor change to CleanCommand so build works with stdeb --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cb565e35ff81a..1d7f460fd3e01 100644 --- a/setup.py +++ b/setup.py @@ -92,9 +92,10 @@ def write_version_py(filename='pandas/version.py'): class CleanCommand(Command): """Custom distutils command to clean the .so and .pyc files.""" - user_options = [ ] + user_options = [("all", "a", "") ] def initialize_options(self): + self.all = True self._clean_me = [] self._clean_trees = [] for root, dirs, files in list(os.walk('pandas')):