Skip to content

Commit 470c327

Browse files
DOC: remove latex and parallel building (pandas-dev#15637)
1 parent 5667a3a commit 470c327

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

ci/build_docs.sh

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ if [ x"$DOC_BUILD" != x"" ]; then
2323

2424
source activate pandas
2525

26-
# install sudo deps
27-
time sudo apt-get $APT_ARGS install dvipng texlive-latex-base texlive-latex-extra
28-
2926
mv "$TRAVIS_BUILD_DIR"/doc /tmp
3027
cd /tmp/doc
3128

doc/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def html():
197197
print(e)
198198
print("Failed to convert %s" % nb)
199199

200-
if os.system('sphinx-build -j 2 -P -b html -d build/doctrees '
200+
if os.system('sphinx-build -P -b html -d build/doctrees '
201201
'source build/html'):
202202
raise SystemExit("Building HTML failed.")
203203
try:

doc/source/io.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -2070,9 +2070,9 @@ by the Table Schema spec.
20702070
The full list of types supported are described in the Table Schema
20712071
spec. This table shows the mapping from pandas types:
20722072

2073-
============== =================
2073+
=============== =================
20742074
Pandas type Table Schema type
2075-
============== =================
2075+
=============== =================
20762076
int64 integer
20772077
float64 number
20782078
bool boolean
@@ -3096,6 +3096,7 @@ The default is to 'infer
30963096
30973097
.. ipython:: python
30983098
:suppress:
3099+
30993100
import os
31003101
os.remove("data.pkl.compress")
31013102
os.remove("data.pkl.xz")

doc/source/whatsnew/v0.20.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ The default is to 'infer
140140

141141
.. ipython:: python
142142
:suppress:
143+
143144
import os
144145
os.remove("data.pkl.compress")
145146
os.remove("data.pkl.xz")

0 commit comments

Comments
 (0)