We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c8cf6 commit 612508aCopy full SHA for 612508a
setup.py
@@ -293,6 +293,11 @@ def initialize_options(self):
293
if d == '__pycache__':
294
self._clean_trees.append(pjoin(root, d))
295
296
+ # clean the generated pxi files
297
+ for pxifile in _pxifiles:
298
+ pxifile = pxifile.replace(".pxi.in", ".pxi")
299
+ self._clean_me.append(pxifile)
300
+
301
for d in ('build', 'dist'):
302
if os.path.exists(d):
303
self._clean_trees.append(d)
0 commit comments