Re: [matplotlib-devel] Heads-up: master badly broken, syntaxerror in setup.py

2011-11-16 Thread Jens Nielsen
It works in python3 The python statement in python2.7 (and 2.6) does not support the end argument. Adding a "from __future__ import print_function" to the beginning of setup.py seems to fix it. Greetings Jens On Thu, Nov 17, 2011 at 5:03 AM, Fernando Perez wrote: > (master)longs[matplotlib]> py

Re: [matplotlib-devel] Heads-up: master badly broken, syntaxerror in setup.py

2011-11-17 Thread Michael Droettboom
This should now be fixed. Mike On 11/17/2011 02:40 AM, Jens Nielsen wrote: > It works in python3 > > The python statement in python2.7 (and 2.6) does not support the end argument. > Adding a "from __future__ import print_function" to the beginning of > setup.py seems to fix it. > > Greetings Jens