On Tue, Jul 30, 2013 at 12:09 PM, Mary Clark <[email protected]> wrote: > So I've been fixing things to merge with master, and I am a bit confused > about some errors that the travis build is giving me. > Here is the link to the travis build: > https://travis-ci.org/sympy/sympy/builds/9653672 > > I am uncertain as to why the doctests fail in 3.2 and 3.3 but not in 2.6 and > 2.7. The error is > > ________________________________________________________________________________ > > > /home/travis/virtualenv/python3.2/lib/python3.2/site-packages/sympy/liealgebras/type_e.py > > File "/usr/lib/python3.2/doctest.py", line 205, in _normalize_module > > return __import__(module, globals(), locals(), ["*"]) > > File > "/home/travis/virtualenv/python3.2/lib/python3.2/site-packages/sympy/liealgebras/type_e.py", > line 2, in <module> > > from cartan_type import Standard_Cartan > > ImportError: No module named cartan_type
I think you need to use: from .cartan_type import Standard_Cartan as Matthew said. This is because we now have just one source code that works in all Pythons. Ondrej > > and similarly for type_f, type_g, type_c, and type_d. Does anyone have any > insights into this? > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sympy. > For more options, visit https://groups.google.com/groups/opt_out. > > -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
