Skip to content

Commit 1773ce6

Browse files
committed
CI: add .pxi.in to build caching
closes pandas-dev#15154
1 parent 986943c commit 1773ce6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/prep_cython_cache.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
ls "$HOME/.cache/"
44

55
PYX_CACHE_DIR="$HOME/.cache/pyxfiles"
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"`
6+
pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd" -o -name "*.pxi.in"`
7+
pyx_cache_file_list=`find ${PYX_CACHE_DIR} -name "*.pyx" -o -name "*.pxd" -o -name "*.pxi.in"`
88

99
CACHE_File="$HOME/.cache/cython_files.tar"
1010

0 commit comments

Comments
 (0)