Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-11 Thread Pawel Jasinski
it appears to work for me: $ bin/Debug/ipy -X:Frames -c 'import sympy; sympy.test()' = test process starts == executable: C:\cygwin64\home\rejap\github\IronLanguages\bin\Debug\ipy.exe (2.9.9-alpha-0) [IronPython] architecture: 32-bit ca

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-11 Thread Andrew Ayre
Hi, I didn't realize that SymPy has a test suite built in. Trying to run it gives: = >>>sympy.test() Traceback (most recent call last): File "", line 1, in File "C:\Program Files (x86)\WizoScript\PythonLib\site-packages\sympy\utilities

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-10 Thread Jeff Hardy
On Thu, Apr 10, 2014 at 9:09 AM, Pawel Jasinski wrote: > I have opened a cp: https://ironpython.codeplex.com/workitem/35116 > I have a fix, but before push request I need to check if it doesn't > break something else. > It needs a to be reviewed and hopefully it is not to late for 2.7.5. You'll

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-10 Thread Pawel Jasinski
I have opened a cp: https://ironpython.codeplex.com/workitem/35116 I have a fix, but before push request I need to check if it doesn't break something else. It needs a to be reviewed and hopefully it is not to late for 2.7.5. --pawel On Thu, Apr 10, 2014 at 9:44 AM, Andrew Ayre wrote: > Hi, > >

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-10 Thread Andrew Ayre
Hi, This workaround is working well, but will there be a fix to IronPython so it isn't needed? I need to give feedback to the SymPy people. Thanks! Andy On 4/9/2014 10:02 AM, Pawel Jasinski wrote: > Here is the workaround which let me install the package: > > *** sympy/__init__.py.orig 20

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-09 Thread Pawel Jasinski
comment the following line out in sympy/__init__.py from .core import * but, I can see already another import error. --pawel On Wed, Apr 9, 2014 at 10:07 AM, Andrew Ayre wrote: > OK. Is there a workaround I can use? > > Andy > > On 4/8/2014 8:04 PM, Pawel Jasinski wrote: >> It looks like the im

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-09 Thread Andrew Ayre
OK. Is there a workaround I can use? Andy On 4/8/2014 8:04 PM, Pawel Jasinski wrote: > It looks like the import bug, but is different. > This time imported is confusing already imported: sympy.core.sets > with sympy.sets. Is is looking for sympy.sets.fancysets in sympty.core.sets > > On Tue, A

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-08 Thread Andrew Ayre
On 4/8/2014 10:28 AM, Jeff Hardy wrote: > On Tue, Apr 8, 2014 at 9:08 AM, Andrew Ayre wrote: >> Thanks. Making progress... Now it can't find sympy.sets.fancysets. I've >> added the folder where the module is defined to sys.path: >> >> = > sys.path.ap

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-08 Thread Jeff Hardy
On Tue, Apr 8, 2014 at 9:08 AM, Andrew Ayre wrote: > Thanks. Making progress... Now it can't find sympy.sets.fancysets. I've > added the folder where the module is defined to sys.path: > > = sys.path.append('../../PythonLib/sympy/sets') > sys.pat

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-08 Thread Andrew Ayre
On 4/7/2014 11:32 PM, Jeff Hardy wrote: > On Mon, Apr 7, 2014 at 10:16 PM, Andrew Ayre wrote: >> Thanks. Unfortunately I still get the error: >> >> = > import sympy >> >> Traceback (most recent call last): >> File "", line 1, in >> File "C:\User

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Jeff Hardy
On Mon, Apr 7, 2014 at 10:16 PM, Andrew Ayre wrote: > Thanks. Unfortunately I still get the error: > > = import sympy > > Traceback (most recent call last): > File "", line 1, in > File "C:\Users\Andy\Documents\ADScript\PythonLib\sympy\__init__.

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Andrew Ayre
Thanks. Unfortunately I still get the error: = >>>import sympy Traceback (most recent call last): File "", line 1, in File "C:\Users\Andy\Documents\ADScript\PythonLib\sympy\__init__.py", line 32, in File "C:\Users\Andy\Documents\ADScript\PythonL

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Pawel Jasinski
this looks like https://ironpython.codeplex.com/workitem/34551 which is fixed post 2.7.4. Can you try 2.7.5b1 https://ironpython.codeplex.com/releases/view/115611 ? On Mon, Apr 7, 2014 at 12:03 PM, Andrew Ayre wrote: > Hello, > > I have embedded IronPython 2.7.4 into a .NET 4.0 C# application. I

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Andrew Ayre
port, but I tried to port the basic concept of using an > iterator to model a process. > > Sincerely, > Andreas > > -Ursprüngliche Nachricht- > Von: Ironpython-users > [mailto:[email protected]] > Im Auftrag von Andrew Ay

Re: [Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Andreas Beham
---Ursprüngliche Nachricht- Von: Ironpython-users [mailto:[email protected]] Im Auftrag von Andrew Ayre Gesendet: Montag, 07. April 2014 12:03 An: [email protected] Betreff: [Ironpython-users] SymPy and IronPython 2.7.4 Hello, I have embedd

[Ironpython-users] SymPy and IronPython 2.7.4

2014-04-07 Thread Andrew Ayre
Hello, I have embedded IronPython 2.7.4 into a .NET 4.0 C# application. I can enter and run scripts and I also have an interactive console. It's working great and I have no issues... until I tried to use SymPy. I've asked for help from the SymPy people but they don't have any experience with Iron