On Tue, Feb 24, 2015 at 10:52 AM, Sarfo <[email protected]> wrote: > Hi, > I am writing a library that deals extensively with vectors - i.e vector > equations of lines in 2d and 3d, skew line, angle between two vectors, > checking for linear dependence of two vectors, collinear points, coplanar > vectors, vector equation of a circle, some common loci using vectors, > vectors in a plane and in space, etc. but I want to know if it won't be a > problem integrating it into Sage since I am coding in python 3.
Sage currently uses Python 2 and has no support at all for Python 3, and definitely won't for at least a year (or longer). If you want your code to be usable from Sage, you'll have to write it so it can run with both Python 2 and 3. There are tools to make doing so easier. -- William -- William (http://wstein.org) -- You received this message because you are subscribed to the Google Groups "sage-devel" 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/sage-devel. For more options, visit https://groups.google.com/d/optout.
