File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,14 @@ def html():
103103 if os .system ('sphinx-build -P -b html -d build/doctrees '
104104 'source build/html' ):
105105 raise SystemExit ("Building HTML failed." )
106-
106+ try :
107+ print ("\n Zipping up HTML docs..." )
108+ # just in case the wonky build box doesn't have zip
109+ # don't fail this.
110+ os .system ('cd build; rm -f html/pandas.zip; zip html/pandas.zip -r -q html/* ' )
111+ print ("\n " )
112+ except :
113+ pass
107114
108115def latex ():
109116 check_build ()
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ pandas: powerful Python data analysis toolkit
66
77`PDF Version <pandas.pdf >`__
88
9+ `Zipped HTML <pandas.zip >`__
10+
911.. module :: pandas
1012
1113**Date **: |today | **Version **: |version |
You can’t perform that action at this time.
0 commit comments