##// END OF EJS Templates
Remove updating of revnumber in final tarball....
Remove updating of revnumber in final tarball. This makes the released code be different from the backup. Instead, the release manager must at the end, do a final update_revnum and commit prior to release, so that the publicly available code matches the static backup.

File last commit:

r1227:28e005fa
r2170:32ee120c
Show More
ipy_profile_numpy.py
24 lines | 522 B | text/x-python | PythonLexer
""" IPython 'numpy' profile, to preload NumPy.
This profile loads the math/cmath modules as well as all of numpy.
It exposes numpy via the 'np' shorthand as well for convenience.
"""
import IPython.ipapi
import ipy_defaults
def main():
ip = IPython.ipapi.get()
try:
ip.ex("import math,cmath")
ip.ex("import numpy")
ip.ex("import numpy as np")
ip.ex("from numpy import *")
except ImportError:
print "Unable to start NumPy profile, is numpy installed?"
main()