File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
tseries : pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
2
2
python setup.py build_ext --inplace
3
3
4
- .PHONY : clean develop build clean clean_pyc tseries doc
4
+ .PHONY : develop build clean clean_pyc tseries doc
5
5
6
- clean : clean_pyc
7
- -rm -rf build dist
8
- -find . -name ' *.so' -exec rm {} \;
6
+ clean :
7
+ -python setup.py clean
9
8
10
9
clean_pyc :
11
- -find . -name ' *.pyc ' -exec rm {} \; -or -name ' *.pyo ' -exec rm {} \;
10
+ -find . -name ' *.py[co] ' -exec rm {} \;
12
11
13
12
sparse : pandas/src/sparse.pyx
14
13
python setup.py build_ext --inplace
@@ -20,8 +19,7 @@ develop: build
20
19
-python setup.py develop
21
20
22
21
doc :
23
- -rm -rf doc/build
24
- -rm -rf doc/source/generated
22
+ -rm -rf doc/build doc/source/generated
25
23
cd doc; \
26
24
python make.py clean; \
27
25
python make.py html
Original file line number Diff line number Diff line change @@ -314,6 +314,8 @@ Bug Fixes
314
314
- Bug in setting a tz-aware index directly via ``.index `` (:issue: `6785 `)
315
315
- Bug in expressions.py where numexpr would try to evaluate arithmetic ops
316
316
(:issue: `6762 `).
317
+ - Bug in Makefile where it didn't remove Cython generated C files with ``make
318
+ clean `` (:issue: `6768 `)
317
319
318
320
pandas 0.13.1
319
321
-------------
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ def initialize_options(self):
280
280
'ultrajsondec.c' ,
281
281
]
282
282
283
- for root , dirs , files in list ( os .walk ('pandas' ) ):
283
+ for root , dirs , files in os .walk ('pandas' ):
284
284
for f in files :
285
285
if f in self ._clean_exclude :
286
286
continue
@@ -297,7 +297,7 @@ def initialize_options(self):
297
297
if d == '__pycache__' :
298
298
self ._clean_trees .append (pjoin (root , d ))
299
299
300
- for d in ('build' ,):
300
+ for d in ('build' , 'dist' ):
301
301
if os .path .exists (d ):
302
302
self ._clean_trees .append (d )
303
303
You can’t perform that action at this time.
0 commit comments