We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5dc9b commit 439f7c5Copy full SHA for 439f7c5
setup.py
@@ -92,9 +92,10 @@ def write_version_py(filename='pandas/version.py'):
92
class CleanCommand(Command):
93
"""Custom distutils command to clean the .so and .pyc files."""
94
95
- user_options = [ ]
+ user_options = [("all", "a", "") ]
96
97
def initialize_options(self):
98
+ self.all = True
99
self._clean_me = []
100
self._clean_trees = []
101
for root, dirs, files in list(os.walk('pandas')):
0 commit comments