##// END OF EJS Templates
Reduce travis testing....
Reduce travis testing. Travis seem to now have a lower limit on open-source builds; so reduce dependency on Travis to get faster turnaround. Will also limit the number of failures to 10, so that if there are many test failing we don't spend too many cycles.

File last commit:

r21453:38422053
r26165:0c0de25c
Show More
cythonmagic.py
21 lines | 701 B | text/x-python | PythonLexer
Brian Granger
Adding Cython extension and example notebook.
r7031 # -*- coding: utf-8 -*-
"""
Matthias Bussonnier
Remove old deprecated extensions....
r21453 **DEPRECATED**
Matthias Bussonnier
remove cython extension....
r17910 The cython magic has been integrated into Cython itself,
which is now released in version 0.21.
Bradley M. Froehle
Add %%cython magics to generated documentation.
r8893
Matthias Bussonnier
Fix version string comparison, capitalisation and typos.
r18302 cf github `Cython` organisation, `Cython` repo, under the
Matthias Bussonnier
remove cython extension....
r17910 file `Cython/Build/IpythonMagic.py`
Brian Granger
Adding Cython extension and example notebook.
r7031 """
#-----------------------------------------------------------------------------
# Copyright (C) 2010-2011, IPython Development Team.
#-----------------------------------------------------------------------------
Matthias Bussonnier
Remove old deprecated extensions....
r21453 import warnings
Brian Granger
Adding Cython extension and example notebook.
r7031
Matthias Bussonnier
remove cython extension....
r17910 ## still load the magic in IPython 3.x, remove completely in future versions.
Brian Granger
Adding Cython extension and example notebook.
r7031 def load_ipython_extension(ip):
"""Load the extension in IPython."""
Matthias Bussonnier
Remove old deprecated extensions....
r21453
warnings.warn("""The Cython magic has been moved to the Cython package""")