Re: [sympy] Use a bot to pick potential reviewers for PRs

2016-05-16 Thread Ted Horst
You might want to have a look at https://github.com/servo/highfive. The rust and servo projects use it for assigning reviewers among other things. Ted > On 2016-05-16, at 16:49, Ondřej Čertík wrote: > > On Mon, May 16, 2016 at 3:41 PM, Aaron Meurer wrote: >> Does mention-bot provide a way fo

Re: [sympy] Test failure in 0.7.0 pysics.quantum.matrixcache

2011-06-24 Thread Ted Horst
All tests pass for me now on 0.7.0. Thanks Aaron On 2011-06-23, at 03:13, Aaron Meurer wrote: OK, I've finished it up. See https://github.com/sympy/sympy/pull/ 451. Please review the changes to that branch, and also if you have the chance, test it as you would the release candidate, as thi

Re: [sympy] Test failure in 0.7.0 pysics.quantum.matrixcache

2011-06-22 Thread Ted Horst
Aaron Meurer On Mon, Jun 20, 2011 at 6:11 PM, Aaron Meurer wrote: It should at least be in a separate file for the quantum code. I didn't consider to make one file for it for all of SymPy. I'm waiting to see what Brian Granger thinks, since he knows the most about the quantum module.

Re: [sympy] Test failure in 0.7.0 pysics.quantum.matrixcache

2011-06-20 Thread Ted Horst
urer On Sun, Jun 19, 2011 at 5:36 PM, Aaron Meurer wrote: Thanks for reporting this. It seems you've uncovered two bugs (the second one is that the error killed the test runner). I'll see if I can figure out how to fix at least the numpy one for the release. Do you know how to

[sympy] Test failure in 0.7.0 pysics.quantum.matrixcache

2011-06-18 Thread Ted Horst
I'm a little late to the party, but I just tested 0.7.0 tip and got this error (stopped testing): This is with python 2.5.1, numpy 1.5.0, no scipy, no gmpy on OSX 10.5.8 PPC (big endian). I can get the error from just importing sympy.physics.quantum.matrixcache. It makes sense because we

Re: [sympy] Re: cot(0)=0? and x * cot(x) evaluated near 0

2010-06-02 Thread Ted Horst
If you are interested in numeric evaluation, sympy also includes mpmath which does include sinc. >>> sympy.mpmath.sinc(0) mpf('1.0') This shouldn't be necessary once sympy gets sinc itself since it will use mpmath transparently for numeric calculations. Ted On 2010-06-02, at 15:37, Scott

Re: [sympy] why one should work in public

2010-04-08 Thread Ted Horst
It was actually Matt Mackall. On 2010-04-08, at 21:23, Ondrej Certik wrote: Ted Horst sent me this interesting link: http://article.gmane.org/gmane.comp.version-control.mercurial.general/19098/ from a Mercurial mailinglist, where Paul Malmsten writes about why one (as a GSoC student) should

Re: [sympy] new polynomials are in

2010-03-19 Thread Ted Horst
On 2010-03-17, at 21:28, Ondrej Certik wrote: Hi, we just fixed the last bugs in the Mateusz's polys branch and pushed it in our main git repo. All tests pass for all kinds of configurations that I tried, but if possible, please test it (I didn't test on Mac nor Windows). Just to get some ide

[sympy] Issue 1622

2009-12-04 Thread Ted Horst
Could someone have a look at the patch in issue 1622. Ondrej mentioned a release before christmas, and I was hoping that this fix could be included. Its an obvious fix to a small problem in the interface of pretty_print. Thanks, Ted -- You received this message because you are subscribed

[sympy] Re: ANN: mpmath 0.12 released

2009-06-17 Thread Ted Horst
Here is a trivial patch to make mpmath.runtests() work. Ted --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com To unsubscribe from this group,

[sympy] Re: Multiple Heads in Mercurial Repository

2009-05-04 Thread Ted Horst
:36 AM, Ondrej Certik > wrote: >> On Wed, Apr 22, 2009 at 5:21 AM, Ted Horst >> wrote: >>> >>> I've been using the mercurial mirror at http://hg.sympy.org/sympy- >>> git.hg and the last few days it has started growing multiple heads. >>>

[sympy] Multiple Heads in Mercurial Repository

2009-04-22 Thread Ted Horst
I've been using the mercurial mirror at http://hg.sympy.org/sympy- git.hg and the last few days it has started growing multiple heads. Did something go wrong with the git-mercurial bridge? Ted --~--~-~--~~~---~--~~ You received this message because you are su

[sympy] Re: Possible bug in Basic.__call__

2009-02-12 Thread Ted Horst
ympy?hl=en -~--~~~~--~~--~--~--- basiccall.patch Description: Binary data Ted On 2009-02-11, at 19:11, Ondrej Certik wrote: > > On Wed, Feb 11, 2009 at 4:55 PM, Ted Horst > wrote: >> >> I'm not sure if __call__ is supposed to do anything on an expression, >> but the following doesn&

[sympy] Possible bug in Basic.__call__

2009-02-11 Thread Ted Horst
I'm not sure if __call__ is supposed to do anything on an expression, but the following doesn't seem useful: >>> import sympy as sp >>> x = sp.Symbol('x') >>> e = x**2 -7 >>> e(4) Traceback (most recent call last): File "", line 1, in File "/Library/Python/2.5/site-packages/sympy/cor