The easiest way to develop on SymPy is to not install it. If you start Python from within the sympy directory (the outer one, not the one with __init__.py) it will import from the development version, because Python always imports things from the current directory first.
If you do want to install it, you can use python setupegg.py develop. To check the changes, run the tests. You can run the full test suite with ./bin/test and ./bin/doctest This can take a while, though. Generally you only need to test the part that you changed, like ./bin/test sympy/solvers (to test the solvers). Also, when you make a pull request on GitHub, Travis CI will run the full test suite on your code automatically. Aaron Meurer On Tue, Oct 20, 2015 at 1:49 PM, Speed <[email protected]> wrote: > One thing I want to ask. > as let's say I made some changes in my forked code of sympy which I have > cloned on my system. > now how can I update my systems installed Sympy to check for my changes that > I had made, > > Finally I want to ask what do I need to do to check for the changes that I > had made in the code is working or not?? > > Thanks. > > -- > 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. > To view this discussion on the web visit > https://groups.google.com/d/msgid/sympy/c84af97a-2424-4753-a1c7-97e73157c941%40googlegroups.com. > > For more options, visit https://groups.google.com/d/optout. -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAKgW%3D6K%2B45a8AT-5hg5VL5n2e6vFep6izZFwowNnBrPyybsbiw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
