On Tue, Dec 30, 2008 at 12:04 PM, Alan Bromborsky <[email protected]> wrote: > > Ondrej Certik wrote: >> On Tue, Dec 30, 2008 at 10:59 AM, Alan Bromborsky <[email protected]> >> wrote: >> >>> Ondrej Certik wrote: >>> >>>> On Tue, Dec 30, 2008 at 10:15 AM, Alan Bromborsky <[email protected]> >>>> wrote: >>>> >>>> >>>>> I have gotten the latest sympy distribution with git, have commited my >>>>> changes to galgebra. Now how do I send the revised distribution back to >>>>> you? >>>>> >>>>> >>>> $ git ci -a >>>> $ git format-patch -1 >>>> >>>> and send the generated patch. More info at: >>>> >>>> http://docs.sympy.org/sympy-patches-tutorial.html#id7 >>>> >>>> Ondrej >>>> >>>> >>>> >>> Patch is attached. >>> >> >> Thanks! When I test it, I get: >> >> $ bin/test sympy/galgebra/ >> ============================= test process starts >> ============================== >> executable: /usr/bin/python (2.5.2-final-0) >> >> sympy/galgebra/tests/test_GA.py[?] Failed to import >> [FAIL] >> >> ________________________________________________________________________________ >> ___________ /home/ondra/repos/sympy/sympy/galgebra/tests/test_GA.py >> ____________ >> File "/home/ondra/repos/sympy/sympy/galgebra/tests/test_GA.py", line >> 12, in <module> >> from sympy.galgebra.GAsympy import set_main, MV, make_symbols, >> types, ZERO, ONE, HALF >> File "/home/ondra/repos/sympy/sympy/galgebra/GAsympy.py", line 25, in >> <module> >> import sympy.galgebra.latex_ex >> ImportError: No module named latex_ex >> >> ============ tests finished: 0 passed, 1 exceptions in 0.20 seconds >> ============ >> DO *NOT* COMMIT! >> >> >> Do you think you could please fix that? I guess just removing that >> import would work. >> >> Ondrej >> >> > >> >> > When I run test I get - > > bro...@ga:~/SYMPY-git/sympy$ bin/test sympy/galgebra/ > ============================= test process starts > ============================== > executable: /usr/bin/python (2.5.2-final-0) > > sympy/galgebra/tests/test_GA.py[6] > ...... [OK] > > =================== tests finished: 6 passed in 1.32 seconds > =================== > bro...@ga:~/SYMPY-git/sympy$ > > Note that when I updated I deleted latex_out.py and replaced it with > latex_ex.py. Does this information need to be put in some configuration > file or is it all automatic now. I remember that that when I first > submitted > GAsympy.py and latex_out.py the file names had to be added to some > python setup file?
Yes, you need to do: $ git add sympy/galgebra/latex_ex.py Then the file will get added when you do "git ci" or "git ci -a". Ondrej --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sympy?hl=en -~----------~----~----~----~------~----~------~--~---
