Skip to content

Commit

Permalink
DOC: Fix doc build failure
Browse files Browse the repository at this point in the history
Fix issue in doc build
  • Loading branch information
bashtage committed Aug 22, 2019
1 parent 0ba3162 commit bdadd90
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ html:
mkdir -p $(BUILDDIR)/source/examples/notebooks/generated
$(TOOLSPATH)$(NOTEBOOKBUILD) --parallel --report-errors --skip-existing --execute-only
@echo "Running sphinx-build"
@echo @$(SPHINXBUILD) -j auto -b html "$(SOURCEDIR)" "$(BUILDDIR)" $(ALLSPHINXOPTS) $(O)
@$(SPHINXBUILD) -j auto -b html "$(SOURCEDIR)" "$(BUILDDIR)" $(ALLSPHINXOPTS) $(O)
@echo @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(ALLSPHINXOPTS) $(O)
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(ALLSPHINXOPTS) $(O)

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
Expand Down
6 changes: 3 additions & 3 deletions statsmodels/regression/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,11 @@ def fit(self, method='inv', cov_type='nonrobust', cov_kwds=None,
Method to use when computing the the model parameters.
* 'inv' - use moving windows inner-products and matrix inversion.
This method is the fastest, but may be less accurate than the
other methods.
This method is the fastest, but may be less accurate than the
other methods.
* 'lstsq' - Use numpy.linalg.lstsq
* 'pinv' - Use numpy.linalg.pinv. This method matches the default
estimator in non-moving regression estimators.
estimator in non-moving regression estimators.
cov_type : {'nonrobust', 'HCCM', 'HC0'}
Covariance estimator:
Expand Down
4 changes: 4 additions & 0 deletions tools/ci/docbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ if [ -f "build/html/index.html" ]; then
echo "docbuild succeeded.";
else
echo "docbuild failed. Aborting doctr.";
echo "contents of build"
ls build
echo "contents of build/html"
ls build/html
exit 1;
fi;

Expand Down

0 comments on commit bdadd90

Please sign in to comment.