Skip to content

Commit 8243ec8

Browse files
committed
Merge branch 'master' of https://github.com/pandas-dev/pandas into bool_ops3
2 parents a591078 + ce77b79 commit 8243ec8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2878
-1708
lines changed

.pep8speaks.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ scanner:
66
pycodestyle:
77
max-line-length: 79
88
ignore: # Errors and warnings to ignore
9-
- E731
10-
- E402
9+
- E402, # module level import not at top of file
10+
- E731, # do not assign a lambda expression, use a def
11+
- E741, # do not use variables named 'l', 'O', or 'I'
12+
- W503 # line break before binary operator

ci/lint.sh

+8
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ if [ "$LINT" ]; then
3737
fi
3838
echo "Linting scripts/*.py DONE"
3939

40+
echo "Linting doc scripts"
41+
flake8 doc/make.py doc/source/conf.py
42+
if [ $? -ne "0" ]; then
43+
RET=1
44+
fi
45+
echo "Linting doc scripts DONE"
46+
4047
echo "Linting *.pyx"
4148
flake8 pandas --filename=*.pyx --select=E501,E302,E203,E111,E114,E221,E303,E128,E231,E126,E265,E305,E301,E127,E261,E271,E129,W291,E222,E241,E123,F403
4249
if [ $? -ne "0" ]; then
@@ -149,6 +156,7 @@ if [ "$LINT" ]; then
149156
RET=1
150157
fi
151158
echo "Check for deprecated messages without sphinx directive DONE"
159+
152160
else
153161
echo "NOT Linting"
154162
fi

0 commit comments

Comments
 (0)