Skip to content

Commit 79fe0f0

Browse files
committed
Remove do_not_merge
Delete pyx file Add pyx file Change pyx file Undo pyx change Un test commit Test commit after ci change Change a pyx file Bug fix
1 parent dca6e61 commit 79fe0f0

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed
File renamed without changes.

ci/prep_cython_cache.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [ -f "$CACHE_File" ] && [ "$USE_CACHE" ] && [ -d "$PYX_CACHE_DIR" ]; then
2929
for i in ${pyx_file_list}
3030
do
3131
diff=`diff -u $i $PYX_CACHE_DIR${i}`
32-
if [[ $? -ne 0 ]]
32+
if [[ $? -eq 2 ]]
3333
then
3434
echo "${i##*/} can't be diffed; probably not in cache"
3535
clear_cache=1

pandas/src/no_merge.pyx

Whitespace-only changes.

pandas/src/period.pyx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from datetime import datetime, date, timedelta
2+
23
import operator
34

45
from cpython cimport (
@@ -21,6 +22,7 @@ from pandas.tseries import offsets
2122
from pandas.tseries.tools import parse_time_string
2223

2324
cimport cython
25+
2426
from datetime cimport *
2527
cimport util
2628
cimport lib

0 commit comments

Comments
 (0)