[sympy] Re: sympy version decimal places

2009-06-03 Thread janwillem
Thanks for the reply. I am afraid I didn't get what you meant me to do, possibly because this is my first encounter with git. I did: 1) git clone git://git.sympy.org/sympy.git (found that in the README) this created the ~/sympy folder an than from that folder: 2) ./setup.py install this seemed to

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ryan Krauss
So, I was getting ready to make my first patch (I think I have two to submit - one on tweaking the output of sympy.latex to allow different matrix choices like bmatrix and one on the mainvar idea), when I noticed that I am not running the latest version. This raises two issues for me. I am runnin

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ryan Krauss
So, I think I successfully created my first patch to handle the stuff of this thread (changing matrix type in latex and allowing inline=None). I think I joined the patches group and sent the email from git. Can anyone confirm receiving it? Thanks, Ryan On Wed, Jun 3, 2009 at 8:41 AM, Ryan Krau

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ryan Krauss
So, I re-sent the email from the email address that is actually a member of sympy-patches, but I still see no proof of it going through (I didn't get the email). Here is the output of git send-email r...@ryan-duo-laptop:~/git/sympy$ git send-email 000* 0001-sympy.latex-allowed-specifying-the-late

[sympy] Re: sympy version decimal places

2009-06-03 Thread janwillem
Sorry, got it. Had to un-install the ubuntu synaptic install of the old sympy. On Jun 3, 12:58 pm, janwillem wrote: > Thanks for the reply. I am afraid I didn't get what you meant me to > do, possibly because this is my first encounter with git. I did: > 1) git clone git://git.sympy.org/sympy.gi

[sympy] git vs. mercurial

2009-06-03 Thread Ryan Krauss
So, I need to choose a tool for my students and I to share code and collaborate. I was about to get serious about setting up an hg server when I learned that sympy had switched to git. Googling didn't immediately turn up a good list of pros and cons. Can anyone give me a short explanation of why

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Aaron S. Meurer
You don't have to install the git version. Just cd into the git sympy directory. Any time you import sympy, it will import the git version. At least, that works for me. Also, you should probably install 0.6.4 on your system to fall back into like you said. There were many bug fixes inclu

[sympy] Re: git vs. mercurial

2009-06-03 Thread Friedrich Hagedorn
On Wed, Jun 03, 2009 at 10:49:53AM -0500, Ryan Krauss wrote: >So, I need to choose a tool for my students and I to share code and >collaborate.  I was about to get serious about setting up an hg server >when I learned that sympy had switched to git.  Googling didn't >immediately tu

[sympy] Re: git vs. mercurial

2009-06-03 Thread william ratcliff
btw. for windows, there is now tortoisegit On Wed, Jun 3, 2009 at 1:46 PM, Friedrich Hagedorn wrote: > > On Wed, Jun 03, 2009 at 10:49:53AM -0500, Ryan Krauss wrote: > >So, I need to choose a tool for my students and I to share code and > >collaborate. I was about to get serious about se

[sympy] Re: git vs. mercurial

2009-06-03 Thread Neal Becker
On Wednesday 03 June 2009, Friedrich Hagedorn wrote: > On Wed, Jun 03, 2009 at 10:49:53AM -0500, Ryan Krauss wrote: > >So, I need to choose a tool for my students and I to share code and > >collaborate. I was about to get serious about setting up an hg server > >when I learned that sy

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Joel C. Salomon
On Tue, Jun 2, 2009 at 11:16 AM, Joel C. Salomon wrote: > Is there a way for me to get the nicer Unicode pretty-printing under Windows? Bad news, it’s a Python issue. A search for windows+unicode+terminal in comp.lang.python turns up a bunch of threads about this. Good news, I got this result f

[sympy] Re: git vs. mercurial

2009-06-03 Thread Aaron S. Meurer
You might want to read this: http://ondrejcertik.blogspot.com/2008/08/i-am-switching-from-mercurial-to-git.html It is a blog post on Ondrej's blog from when he decided to switch. Aaron Meurer On Jun 3, 2009, at 9:49 AM, Ryan Krauss wrote: > So, I need to choose a tool for my students and I to s

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Gael Varoquaux
On Wed, Jun 03, 2009 at 02:02:16PM -0400, Joel C. Salomon wrote: > Seems it /should/ work, so… Can I run ISymPy from within IDLE? No you can't. IPython doesn't run in IDLE. However, this gives me an idea: Ondrej, are you aware that I have hacked an IPython wx fronted. It is still a hack, and I

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Ondrej Certik
On Wed, Jun 3, 2009 at 12:23 PM, Gael Varoquaux wrote: > > On Wed, Jun 03, 2009 at 02:02:16PM -0400, Joel C. Salomon wrote: > >> Seems it /should/ work, so…  Can I run ISymPy from within IDLE? > > No you can't. IPython doesn't run in IDLE. > > However, this gives me an idea: Ondrej, are you aware

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ondrej Certik
On Wed, Jun 3, 2009 at 10:21 AM, Aaron S. Meurer wrote: > You don't have to install the git version.  Just cd into the git sympy > directory.  Any time you import sympy, it will import the git version.  At > least, that works for me. > Also, you should probably install 0.6.4 on your system to fal

[sympy] Re: git vs. mercurial

2009-06-03 Thread Ondrej Certik
And this too: http://ondrejcertik.blogspot.com/2008/12/experience-with-git-after-4-months.html so usually people around me switch from mercurial to git after some time (like sfepy[0], hermes[1],...). :) That said, you can use mercurial with sympy if you prefer, we synchronise it automatically

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ryan Krauss
I am just creating two patches for now and am about to email them (one I already sent to sympy-patches). But I also just opened a github account. Should I fork from http://github.com/certik/sympy/tree/master and is that the same as the one I just checked out a few hour ago using *git clone git:/

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Sebastian Haase
On Wed, Jun 3, 2009 at 8:23 PM, Gael Varoquaux wrote: > > On Wed, Jun 03, 2009 at 02:02:16PM -0400, Joel C. Salomon wrote: > >> Seems it /should/ work, so…  Can I run ISymPy from within IDLE? > > No you can't. IPython doesn't run in IDLE. > > However, this gives me an idea: Ondrej, are you aware

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Gael Varoquaux
On Wed, Jun 03, 2009 at 09:33:48PM +0200, Sebastian Haase wrote: > This is very interesting to hear ! Is it built on top of the wx wxPyShell ? No. The architecture of that thing is less than ideal. It is built on top of Scintilla, thought, similar to PyShell. > And it handles unicode ?? I shou

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Sebastian Haase
On Wed, Jun 3, 2009 at 9:36 PM, Gael Varoquaux wrote: > > On Wed, Jun 03, 2009 at 09:33:48PM +0200, Sebastian Haase wrote: >> This is very interesting to hear !  Is it built on top of the wx wxPyShell ? > > No. The architecture of that thing is less than ideal. It is built on top > of Scintilla,

[sympy] Re: Unicode pretty-print under Windows

2009-06-03 Thread Gael Varoquaux
On Wed, Jun 03, 2009 at 09:51:53PM +0200, Sebastian Haase wrote: > > No. The architecture of that thing is less than ideal. It is built on top > > of Scintilla, thought, similar to PyShell. > I see. So you cooked something up from scratch !? Yes, on top of IPython. > (Except building on Scintil

[sympy] Re: tweaking the output of sympy.latex

2009-06-03 Thread Ondrej Certik
On Wed, Jun 3, 2009 at 1:24 PM, Ryan Krauss wrote: > I am just creating two patches for now and am about to email them (one I > already sent to sympy-patches). > > But I also just opened a github account.  Should I fork from > http://github.com/certik/sympy/tree/master > and is that the same as t

[sympy] html documentation

2009-06-03 Thread Alan Bromborsky
I got the html docs to compile under windows xp. If anyone wants to know how let me know, its not pretty! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@go

[sympy] Re: html documentation

2009-06-03 Thread Ondrej Certik
On Wed, Jun 3, 2009 at 4:18 PM, Alan Bromborsky wrote: > > I got the html docs to compile under windows xp.  If anyone wants to > know how let me know, its not pretty! It's not pretty how it looks after compiling? (that's bad) or it's not pretty how to compile it? Yes, write it here, if you hav

[sympy] Re: html documentation

2009-06-03 Thread Alan Bromborsky
Ondrej Certik wrote: > On Wed, Jun 3, 2009 at 4:18 PM, Alan Bromborsky wrote: > >> I got the html docs to compile under windows xp. If anyone wants to >> know how let me know, its not pretty! >> > > It's not pretty how it looks after compiling? (that's bad) or it's not > pretty how to co

[sympy] Re: html documentation

2009-06-03 Thread Alan Bromborsky
Ondrej Certik wrote: > On Wed, Jun 3, 2009 at 4:18 PM, Alan Bromborsky wrote: > >> I got the html docs to compile under windows xp. If anyone wants to >> know how let me know, its not pretty! >> > > It's not pretty how it looks after compiling? (that's bad) or it's not > pretty how to com