Skip to content

Commit e2bda23

Browse files
jbrockmendelvictor
authored and
victor
committed
Finish moving period_helper to cython (pandas-dev#22196)
1 parent a560b16 commit e2bda23

File tree

10 files changed

+663
-811
lines changed

10 files changed

+663
-811
lines changed

ci/lint.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,19 @@ if [ "$LINT" ]; then
9292
# this particular codebase (e.g. src/headers, src/klib, src/msgpack). However,
9393
# we can lint all header files since they aren't "generated" like C files are.
9494
echo "Linting *.c and *.h"
95-
for path in '*.h' 'period_helper.c' 'datetime' 'parser' 'ujson'
95+
for path in '*.h' 'parser' 'ujson'
9696
do
9797
echo "linting -> pandas/_libs/src/$path"
9898
cpplint --quiet --extensions=c,h --headers=h --filter=-readability/casting,-runtime/int,-build/include_subdir --recursive pandas/_libs/src/$path
9999
if [ $? -ne "0" ]; then
100100
RET=1
101101
fi
102102
done
103+
echo "linting -> pandas/_libs/tslibs/src/datetime"
104+
cpplint --quiet --extensions=c,h --headers=h --filter=-readability/casting,-runtime/int,-build/include_subdir --recursive pandas/_libs/tslibs/src/datetime
105+
if [ $? -ne "0" ]; then
106+
RET=1
107+
fi
103108
echo "Linting *.c and *.h DONE"
104109

105110
echo "Check for invalid testing"

0 commit comments

Comments
 (0)