forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.py
executable file
·232 lines (192 loc) · 6.97 KB
/
make.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
#!/usr/bin/env python
"""Wrapper script for calling Sphinx. """
from __future__ import print_function
import glob
import os
import shutil
import sys
import re
import argparse
import subprocess
import matplotlib
import six
def copy_if_out_of_date(original, derived):
"""Copy file only if newer as target or if target does not exist. """
if (not os.path.exists(derived) or
os.stat(derived).st_mtime < os.stat(original).st_mtime):
try:
shutil.copyfile(original, derived)
except IOError:
if os.path.basename(original) == 'matplotlibrc':
msg = "'%s' not found. " % original + \
"Did you run `python setup.py build`?"
raise IOError(msg)
else:
raise
def check_build():
"""Create target build directories if necessary. """
build_dirs = ['build', 'build/doctrees', 'build/html', 'build/latex',
'build/texinfo', '_static', '_templates']
for d in build_dirs:
try:
os.mkdir(d)
except OSError:
pass
def doctest():
"""Execute Sphinx 'doctest' target. """
subprocess.call(
[sys.executable]
+ '-msphinx -b doctest -d build/doctrees . build/doctest'.split())
def linkcheck():
"""Execute Sphinx 'linkcheck' target. """
subprocess.call(
[sys.executable]
+ '-msphinx -b linkcheck -d build/doctrees . build/linkcheck'.split())
DEPSY_PATH = "_static/depsy_badge.svg"
DEPSY_URL = "http://depsy.org/api/package/pypi/matplotlib/badge.svg"
DEPSY_DEFAULT = "_static/depsy_badge_default.svg"
def fetch_depsy_badge():
"""Fetches a static copy of the depsy badge.
If there is any network error, use a static copy from git.
This is to avoid a mixed-content warning when serving matplotlib.org
over https, see https://github.com/Impactstory/depsy/issues/77
The downside is that the badge only updates when the documentation
is rebuilt."""
try:
request = six.moves.urllib.request.urlopen(DEPSY_URL)
try:
data = request.read().decode('utf-8')
with open(DEPSY_PATH, 'w') as output:
output.write(data)
finally:
request.close()
except six.moves.urllib.error.URLError:
shutil.copyfile(DEPSY_DEFAULT, DEPSY_PATH)
def html(buildername='html'):
"""Build Sphinx 'html' target. """
check_build()
fetch_depsy_badge()
rc = '../lib/matplotlib/mpl-data/matplotlibrc'
default_rc = os.path.join(matplotlib._get_data_path(), 'matplotlibrc')
if not os.path.exists(rc) and os.path.exists(default_rc):
rc = default_rc
copy_if_out_of_date(rc, '_static/matplotlibrc')
options = ['-j{}'.format(n_proc),
'-b{}'.format(buildername),
'-dbuild/doctrees']
if small_docs:
options += ['-Dplot_formats=png:100']
if warnings_as_errors:
options += ['-W']
if subprocess.call(
[sys.executable, '-msphinx', '.', 'build/{}'.format(buildername)]
+ options):
raise SystemExit("Building HTML failed.")
# Clean out PDF files from the _images directory
for filename in glob.glob('build/%s/_images/*.pdf' % buildername):
os.remove(filename)
def htmlhelp():
"""Build Sphinx 'htmlhelp' target. """
html(buildername='htmlhelp')
# remove scripts from index.html
with open('build/htmlhelp/index.html', 'r+') as fh:
content = fh.read()
fh.seek(0)
content = re.sub(r'<script>.*?</script>', '', content,
flags=re.MULTILINE | re.DOTALL)
fh.write(content)
fh.truncate()
def latex():
"""Build Sphinx 'latex' target. """
check_build()
# figs()
if sys.platform != 'win32':
# LaTeX format.
if subprocess.call(
[sys.executable]
+ '-msphinx -b latex -d build/doctrees . build/latex'.split()):
raise SystemExit("Building LaTeX failed.")
# Produce pdf.
# Call the makefile produced by sphinx...
if subprocess.call("make", cwd="build/latex"):
raise SystemExit("Rendering LaTeX failed with.")
else:
print('latex build has not been tested on windows')
def texinfo():
"""Build Sphinx 'texinfo' target. """
check_build()
# figs()
if sys.platform != 'win32':
# Texinfo format.
if subprocess.call(
[sys.executable]
+ '-msphinx -b texinfo -d build/doctrees . build/texinfo'.split()):
raise SystemExit("Building Texinfo failed.")
# Produce info file.
# Call the makefile produced by sphinx...
if subprocess.call("make", cwd="build/texinfo"):
raise SystemExit("Rendering Texinfo failed with.")
else:
print('texinfo build has not been tested on windows')
def clean():
"""Remove generated files. """
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("examples", ignore_errors=True)
shutil.rmtree("api/_as_gen", ignore_errors=True)
for pattern in ['_static/matplotlibrc',
'_templates/gallery.html',
'users/installing.rst']:
for filename in glob.glob(pattern):
if os.path.exists(filename):
os.remove(filename)
def build_all():
"""Build Sphinx 'html' and 'latex' target. """
# figs()
html()
latex()
funcd = {
'html': html,
'htmlhelp': htmlhelp,
'latex': latex,
'texinfo': texinfo,
'clean': clean,
'all': build_all,
'doctest': doctest,
'linkcheck': linkcheck,
}
small_docs = False
warnings_as_errors = True
n_proc = 1
# Change directory to the one containing this file
current_dir = os.getcwd()
os.chdir(os.path.dirname(os.path.join(current_dir, __file__)))
copy_if_out_of_date('../INSTALL.rst', 'users/installing.rst')
parser = argparse.ArgumentParser(description='Build matplotlib docs')
parser.add_argument("cmd", help=("Command to execute. Can be multiple. "
"Valid options are: %s" % (funcd.keys())), nargs='*')
parser.add_argument("--small",
help="Smaller docs with only low res png figures",
action="store_true")
parser.add_argument("--allowsphinxwarnings",
help="Don't turn Sphinx warnings into errors",
action="store_true")
parser.add_argument("-n",
help="Number of parallel workers to use")
args = parser.parse_args()
if args.small:
small_docs = True
if args.allowsphinxwarnings:
warnings_as_errors = False
if args.n is not None:
n_proc = int(args.n)
_valid_commands = "Valid targets are: {}".format(", ".join(sorted(funcd)))
if args.cmd:
for command in args.cmd:
func = funcd.get(command)
if func is None:
raise SystemExit("Do not know how to handle {}. {}"
.format(command, _valid_commands))
func()
else:
raise SystemExit(_valid_commands)
os.chdir(current_dir)