We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 724a1f3 commit fb4e69eCopy full SHA for fb4e69e
doc/make.py
@@ -72,7 +72,12 @@ def upload_prev(ver, doc_root='./'):
72
if os.system(pdf_cmd):
73
raise SystemExit('Upload PDF to %s from %s failed' % (ver, doc_root))
74
75
-
+def build_pandas():
76
+ os.chdir('..')
77
+ os.system('python setup.py clean')
78
+ os.system('python setup.py build_ext --inplace')
79
+ os.chdir('doc')
80
+
81
def build_prev(ver):
82
if os.system('git checkout v%s' % ver) != 1:
83
os.chdir('..')
@@ -238,6 +243,7 @@ def _get_config():
238
243
'clean': clean,
239
244
'auto_dev': auto_dev_build,
240
245
'auto_debug': lambda: auto_dev_build(True),
246
+ 'build_pandas': build_pandas,
241
247
'all': all,
242
248
}
249
0 commit comments