-
Notifications
You must be signed in to change notification settings - Fork 1
/
make.py
165 lines (126 loc) · 3.66 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
#!/usr/bin/env python
"""
Python script for building documentation.
To build the docs you must have all optional dependencies for statsmodels
installed. See the installation instructions for a list of these.
Note: currently latex builds do not work because of table formats that are not
supported in the latex generation.
Usage
-----
python make.py clean
python make.py html
"""
import os
import shutil
import sys
import subprocess
import base64
os.environ['PYTHONPATH'] = '..'
SPHINX_BUILD = 'sphinxbuild'
def upload():
sf_account = 'jseabold,[email protected]'
retcode = subprocess.call(['rsync', '-avPrzh', '--inplace', '-e ssh',
'build/html/',
sf_account + ':htdocs/vbench/'],
stderr=sys.stderr, stdout=sys.stdout)
if retcode != 0:
msg = "Could not upload vbench result"
raise Exception(msg)
def clean():
if os.path.exists('build'):
shutil.rmtree('build')
if os.path.exists('source/generated'):
shutil.rmtree('source/generated')
def html():
check_build()
if os.system('sphinx-build -P -b html -d build/doctrees '
'source build/html'):
raise SystemExit("Building HTML failed.")
def check_build():
build_dirs = [
'build', 'build/doctrees', 'build/html',
'build/plots', 'build/_static',
'build/_templates']
for d in build_dirs:
try:
os.mkdir(d)
except OSError:
pass
def all():
clean()
html()
def auto_update():
msg = ''
try:
clean()
html()
upload()
sendmail()
except (Exception, SystemExit) as inst:
msg += str(inst) + '\n'
sendmail(msg)
def sendmail(err_msg=None):
if err_msg is None:
msgstr = 'vbench uploaded successfully'
subject = "VB: update successful"
else:
msgstr = err_msg
subject = "VB: update failed"
server_str, port, login, pwd = _get_credentials()
import smtplib
from email.MIMEText import MIMEText
msg = MIMEText(msgstr)
msg['Subject'] = subject
msg['From'] = login
msg['To'] = login
to_email = [login]
#('josef.pktd' + 'AT' + 'gmail' + '.com').replace('AT', '@')]
server = smtplib.SMTP(server_str, port)
server.ehlo()
server.starttls()
server.ehlo()
server.login(login, pwd)
try:
server.sendmail(login, to_email, msg.as_string())
finally:
server.close()
def _get_dir(subdir=None):
import getpass
USERNAME = getpass.getuser()
if sys.platform == 'darwin':
HOME = '/Users/%s' % USERNAME
else:
HOME = '/home/%s' % USERNAME
if subdir is None:
subdir = '/code/scripts'
conf_dir = '%s%s' % (HOME, subdir)
return conf_dir
def _get_credentials():
# my security holes
with open('/home/skipper/statsmodels/gmail.txt') as f:
pwd = f.readline().strip()
pwd = base64.b64decode(pwd)
email_name = 'statsmodels.dev' + 'AT' + 'gmail' + '.com'
email_name = email_name.replace('AT', '@')
return 'smtp.gmail.com', 587, email_name, pwd
funcd = {
'html': html,
'clean': clean,
'upload': upload,
'auto_update': auto_update,
'all': all,
}
small_docs = False
# current_dir = os.getcwd()
# os.chdir(os.path.dirname(os.path.join(current_dir, __file__)))
if len(sys.argv) > 1:
for arg in sys.argv[1:]:
func = funcd.get(arg)
if func is None:
raise SystemExit('Do not know how to handle %s; valid args are %s' % (
arg, funcd.keys()))
func()
else:
small_docs = False
all()
# os.chdir(current_dir)