##// END OF EJS Templates
Disable PDF manual building for distribution and installation....
Disable PDF manual building for distribution and installation. The PDF docs are huge, take forever to build and aren't particularly useful in practice being so unwieldy. We can always build and manually upload a static copy if there's demand, but they don't really serve much useful purpose anymore and bloat our downloads.

File last commit:

r4452:d010497a
r4453:6c0e05de
Show More
testupload
19 lines | 497 B | text/plain | TextLexer
#!/usr/bin/env python
"""Simple upload script to push up into the testing directory a local build
"""
from __future__ import print_function
from toollib import *
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
distdir = pjoin(ipdir, 'dist')
# Load release info
execfile(pjoin(ipdir, 'IPython','core','release.py'))
# Build site addresses for file uploads
testing_site = '%s/testing/%s' % (archive, version)
cd(distdir)
sh('scp * %s' % testing_site)