Skip to content

Commit 2a7e6af

Browse files
committed
actually change caching logic
1 parent 29f2e5c commit 2a7e6af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/prep_cython_cache.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
ls "$HOME/.cache/"
44

5-
65
PYX_CACHE_DIR="$HOME/.cache/pyxfiles"
7-
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx"`
8-
pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx"`
6+
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd"`
7+
pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx" -o -name "*.pxd"`
98

109
CACHE_File="$HOME/.cache/cython_files.tar"
1110

pandas/src/util.pxd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ cdef inline bint _checknull(object val):
8585
except ValueError:
8686
return False
8787

88+
8889
cdef inline bint _checknull_old(object val):
8990
import numpy as np
9091
cdef double INF = <double> np.inf

0 commit comments

Comments
 (0)