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 29f2e5c commit 2a7e6afCopy full SHA for 2a7e6af
ci/prep_cython_cache.sh
@@ -2,10 +2,9 @@
2
3
ls "$HOME/.cache/"
4
5
-
6
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"`
+pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd"`
+pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx" -o -name "*.pxd"`
9
10
CACHE_File="$HOME/.cache/cython_files.tar"
11
pandas/src/util.pxd
@@ -85,6 +85,7 @@ cdef inline bint _checknull(object val):
85
except ValueError:
86
return False
87
88
+
89
cdef inline bint _checknull_old(object val):
90
import numpy as np
91
cdef double INF = <double> np.inf
0 commit comments