Skip to content
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
- script: |
source activate pandas-dev
# Next we should simply have `doc/make.py --warnings-are-errors`, everything else is required because the ipython directive doesn't fail the build on errors (https://github.com/ipython/ipython/issues/11547)
doc/make.py --warnings-are-errors | tee sphinx.log ; SPHINX_RET=${PIPESTATUS[0]}
doc/make.py --num-jobs=4 --warnings-are-errors | tee sphinx.log ; SPHINX_RET=${PIPESTATUS[0]}
grep -B1 "^<<<-------------------------------------------------------------------------$" sphinx.log ; IPY_RET=$(( $? != 1 ))
exit $(( $SPHINX_RET + $IPY_RET ))
displayName: 'Build documentation'
Expand Down
2 changes: 1 addition & 1 deletion ci/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ conda list pandas
# Make sure any error below is reported as such

echo "Build extensions and install pandas"
python setup.py build_ext -q --inplace
python setup.py build_ext -q --inplace -j 4
python -m pip install -e .

echo
Expand Down
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.9.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ New features

.. ipython:: python

df = DataFrame(np.random.randn(5, 3), columns = ['A','B','C'])
df = pd.DataFrame(np.random.randn(5, 3), columns = ['A','B','C'])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you revert changes to this file?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The doc build fails due to an import error


df

Expand Down