##// END OF EJS Templates
use better integration boundaries...
use better integration boundaries Because this example intends to illustrate the difference between trapezoid rule and high-order integration, choose an appropriate integration interval where such a difference exists. Also implement the trapezoid rule directly for pedagogical purposes, instead of relying on a canned version from scipy.

File last commit:

r17631:9dae4712
r19878:9f0fa954
Show More
build_release
28 lines | 581 B | text/plain | TextLexer
#!/usr/bin/env python
"""IPython release build script.
"""
import os
from shutil import rmtree
from toollib import *
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
cd(ipdir)
# Load release info
execfile(pjoin('IPython', 'core', 'release.py'))
# Check that everything compiles
compile_tree()
# Cleanup
for d in ['build', 'dist', pjoin('docs', 'build'), pjoin('docs', 'dist'),
pjoin('docs', 'source', 'api', 'generated')]:
if os.path.isdir(d):
rmtree(d)
# Build source and binary distros
sh(sdists)
sh(wheels)