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():
103
103
if os .system ('sphinx-build -P -b html -d build/doctrees '
104
104
'source build/html' ):
105
105
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
107
114
108
115
def latex ():
109
116
check_build ()
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ pandas: powerful Python data analysis toolkit
6
6
7
7
`PDF Version <pandas.pdf >`__
8
8
9
+ `Zipped HTML <pandas.zip >`__
10
+
9
11
.. module :: pandas
10
12
11
13
**Date **: |today | **Version **: |version |
You can’t perform that action at this time.
0 commit comments