Skip to content

Commit

Permalink
Merge b4747da into f3f89ad
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Jul 14, 2020
2 parents f3f89ad + b4747da commit ba3b74a
Show file tree
Hide file tree
Showing 14 changed files with 4,509 additions and 2,793 deletions.
2 changes: 1 addition & 1 deletion lint.sh
Expand Up @@ -242,7 +242,7 @@ if [ "$LINT" == true ]; then
if [ -n "$NEW_FILES" ]; then
echo "Linting newly added files with strict rules"
echo "New files: $NEW_FILES"
flake8 --isolated --ignore=W503,W504,E741,E203 $(eval echo $NEW_FILES)
flake8 --isolated --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E741,E203 $(eval echo $NEW_FILES)
if [ $? -ne "0" ]; then
echo "New files failed linting."
RET=1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -148,7 +148,7 @@

exts = dict(
_stl={'source': 'statsmodels/tsa/_stl.pyx'},
_exponential_smoothers={'source': 'statsmodels/tsa/_exponential_smoothers.pyx'}, # noqa: E501
_exponential_smoothers={'source': 'statsmodels/tsa/holtwinters/_exponential_smoothers.pyx'}, # noqa: E501
_ets_smooth={'source': 'statsmodels/tsa/exponential_smoothing/_ets_smooth.pyx'}, # noqa: E501
_innovations={'source': 'statsmodels/tsa/_innovations.pyx'},
_hamilton_filter={'source': 'statsmodels/tsa/regime_switching/_hamilton_filter.pyx.in'}, # noqa: E501
Expand Down
344 changes: 0 additions & 344 deletions statsmodels/tsa/_exponential_smoothers.pyx

This file was deleted.

0 comments on commit ba3b74a

Please sign in to comment.