|
|
|
@ -293,6 +293,11 @@ class CleanCommand(Command):
|
|
|
|
|
if d == '__pycache__': |
|
|
|
|
self._clean_trees.append(pjoin(root, d)) |
|
|
|
|
|
|
|
|
|
# clean the generated pxi files |
|
|
|
|
for pxifile in _pxifiles: |
|
|
|
|
pxifile = pxifile.replace(".pxi.in", ".pxi") |
|
|
|
|
self._clean_me.append(pxifile) |
|
|
|
|
|
|
|
|
|
for d in ('build', 'dist'): |
|
|
|
|
if os.path.exists(d): |
|
|
|
|
self._clean_trees.append(d) |
|
|
|
|