Hi, On Tue, Jul 30, 2013 at 11:13 AM, David Joyner <[email protected]> wrote: > > > On Tuesday, July 30, 2013, Mary Clark 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 >> >> > > > If fails for one flavor of python and not another? > I don't know of a language difference that would cause an import error:-(
Relative vs absolute imports as default on Python 3? >> /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 How about a change to: from .cartan_type import Standard_Cartan (dot preprended to "cartan_type"), Cheers, Matthew -- 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.
