Skip to content

Commit 52f5b45

Browse files
committed
Merge pull request #55 from dieterv77/CleanCommand
Minor change to CleanCommand so build works with stdeb
2 parents 9a5dc9b + 439f7c5 commit 52f5b45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ def write_version_py(filename='pandas/version.py'):
9292
class CleanCommand(Command):
9393
"""Custom distutils command to clean the .so and .pyc files."""
9494

95-
user_options = [ ]
95+
user_options = [("all", "a", "") ]
9696

9797
def initialize_options(self):
98+
self.all = True
9899
self._clean_me = []
99100
self._clean_trees = []
100101
for root, dirs, files in list(os.walk('pandas')):

0 commit comments

Comments
 (0)