[sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Aaron Meurer
Has anyone tested this? I haven't heard anything, so I'll cut the final release tomorrow. Aaron Meurer On Thu, Nov 6, 2014 at 4:26 PM, Aaron Meurer asmeu...@gmail.com wrote: I have uploaded SymPy 0.7.6 release candidate 1. Please download it and test it. You can find it at

Re: [sympy] New to the Organization

2014-11-12 Thread Deepanshu Vijay
Hello, I have went through the tutorials for Basic Operation.Can you tell me in how to pick up the issues and start working on it. On Monday, November 10, 2014 5:50:07 PM UTC+5:30, Sushant Hiray wrote: Deepanshu, This wiki page gives info on getting started:

[sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Aaron Meurer
There are actually a few test failures relating to the benchmarks, so I'll probably do a second release candidate. Aaron Meurer On Wed, Nov 12, 2014 at 2:05 PM, Aaron Meurer asmeu...@gmail.com wrote: Has anyone tested this? I haven't heard anything, so I'll cut the final release tomorrow.

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Ondřej Čertík
Here are my test results: https://gist.github.com/certik/b50dd2a621c1785e8b7c There are quite a few test failures, i.e. stuff like this: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 606: ordinal not in range(128) Ondrej On Wed, Nov 12, 2014 at 2:26 PM, Aaron Meurer

Re: [sympy] New to the Organization

2014-11-12 Thread Jason Moore
Instructions for getting started on an issue: https://github.com/sympy/sympy/wiki/introduction-to-contributing#sympy-codebase Jason moorepants.info +01 530-601-9791 On Wed, Nov 12, 2014 at 4:17 PM, Deepanshu Vijay deepanshuvijay01...@gmail.com wrote: Hello, I have went through the tutorials

[sympy] Helping people contribute to SymPy at Cornell

2014-11-12 Thread David Li
Hello all, This is a bit late notice, but at Cornell we're having an open-source workshop on Saturday, and the organizers are interested in introducing people to contributing to SymPy. I was thinking the Easy to Fix and Documentation (and perhaps Needs Review) labels in the issue tracker would

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Aaron Meurer
The benchmark issues should be fixed. The autowrap tests are a big mess. Depending on what compilers you have installed and whether or not they work, the tests will pass or fail. Can you run the tests again in the latest 0.7.6 branch? Aaron Meurer On Wed, Nov 12, 2014 at 3:39 PM, Ondřej Čertík

Re: [sympy] Helping people contribute to SymPy at Cornell

2014-11-12 Thread Aaron Meurer
It might be worth it to open some more easy to fix issues (or label some existing issues). I think most of the actually easy ones are already fixed or have an open PR. Also, don't be afraid to look at all issues, not just the easy to fix ones, especially for the guys who have several years of

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Ondřej Čertík
On Wed, Nov 12, 2014 at 3:56 PM, Aaron Meurer asmeu...@gmail.com wrote: The benchmark issues should be fixed. The autowrap tests are a big mess. Depending on what compilers you have installed and whether or not they work, the tests will pass or fail. Can you run the tests again in the latest

Re: [sympy] sympy to theano conversion, shared variables, and running on GPU

2014-11-12 Thread Frédéric Bastien
I think you can use the cache parameter. I think a dict with the key being sympy variable and the value be the theano variable that correspond to what you want will do what you want. That you you can control which sympy variable are shared variable. I never tried this. If it work, it would be

[sympy] Run sympy tests in Docker

2014-11-12 Thread Amit Saha
Just something I experimented with and it seems to be working. If someone uses Docker: https://github.com/amitsaha/docker_files/tree/master/Fedora/sympy-test So you can do: docker run -t sympy-test 0.7.6 to run the entire test suite in the 0.7.6 branch -Amit. -- You received this message

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Jason Moore
I had one test failure in plotting: https://gist.github.com/moorepants/09f398059b7b4e6d615c Jason moorepants.info +01 530-601-9791 On Wed, Nov 12, 2014 at 7:27 PM, Ondřej Čertík ondrej.cer...@gmail.com wrote: On Wed, Nov 12, 2014 at 3:56 PM, Aaron Meurer asmeu...@gmail.com wrote: The

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Jason Moore
The doctests fail on these files due to the default_array: moorepants@moorepants-2170p:sympy(0.7.6)$ grep -r default_array doc/src/modules/numeric-computation.rst: f = lambdify(x, expr, default_array=True) doc/src/modules/numeric-computation.rst:the next release. For now, setting

Re: [sympy] Arbitrary constraints?

2014-11-12 Thread Andrew Spielberg
refine_abs isn't doing the trick here either. Am I using this module incorrectly? On Tue, Nov 11, 2014 at 6:09 PM, Andrew Spielberg aespielb...@gmail.com wrote: Thanks guys. This seems to be mostly working so far. Any idea why this wouldn't be, though? In [1]: assumptions Out[1]:

Re: [sympy] Re: SymPy 0.7.6 release candidate 1

2014-11-12 Thread Aaron Meurer
Apparently some doctests are not run unless numpy, matplotlib, and probably others are installed. Can you submit a pull request to the release branch fixing this? Aaron Meurer On Wed, Nov 12, 2014 at 8:36 PM, Jason Moore moorepa...@gmail.com wrote: The doctests fail on these files due to the