From: John H. <jd...@gm...> - 2009-07-31 17:45:00
|
We have a test release candidate rc1 of the impending matplotlib-0.99.0 release, including lots of great new stuff like the axes grid and mplot3d toolkits, http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/index.html http://matplotlib.sourceforge.net/mpl_toolkits/mplot3d/tutorial.html We have uploaded tarballs, eggs and binary installers for win32 and OSX, and would love to have some testers. You can grab the release candidates from: http://drop.io/xortel1# If you have any bugfixes or patches, feel free to post them here, but please also post to the tracker https://sourceforge.net/tracker/?group_id=80706&atid=560720 Thanks to Michael Droettboom with help setting up the release branch, Christoph Gohlke for the python2.6 win32 binaries, and William Stein for providing a remote OSX box for building and testing OSX binaries. Those of you with svn access can grab the release branch from:: svn co https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_99_maint mpl99 and post patches against svn for any bugs you discover and fix:: http://matplotlib.sourceforge.net/faq/howto_faq.html#submit-a-patch Thanks to all the developers who contributed in this cycle -- more details to follow on the official release announcement next week. JDH |
From: Michiel de H. <mjl...@ya...> - 2009-08-05 10:56:06
|
I am seeing the following error with the GTKCairo and GTKAgg backends: >>> figure() <matplotlib.figure.Figure object at 0x7ebe0cec> >>> Traceback (most recent call last): File "/usr/local/lib/python2.6/site-packages/matplotlib/backends/backend_gtk.py", line 249, in enter_notify_event FigureCanvasBase.enter_notify_event(self, event, guiEvent=event) TypeError: enter_notify_event() got multiple values for keyword argument 'guiEvent' Traceback (most recent call last): File "/usr/local/lib/python2.6/site-packages/matplotlib/backends/backend_gtk.py", line 246, in leave_notify_event FigureCanvasBase.leave_notify_event(self, event, guiEvent=event) TypeError: leave_notify_event() got multiple values for keyword argument 'guiEvent' whenever I move the mouse into or out of the figure windows. --Michiel. --- On Fri, 7/31/09, John Hunter <jd...@gm...> wrote: > From: John Hunter <jd...@gm...> > Subject: [Matplotlib-users] matplotlib-0.99.0-rc1 : call for testing > To: "matplotlib-users" <mat...@li...> > Date: Friday, July 31, 2009, 1:44 PM > We have a test release candidate rc1 > of the impending > matplotlib-0.99.0 release, including lots of great new > stuff like the > axes grid and mplot3d toolkits, > > http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/index.html > http://matplotlib.sourceforge.net/mpl_toolkits/mplot3d/tutorial.html > > We have uploaded tarballs, eggs and binary installers for > win32 and > OSX, and would love to have some testers. You can > grab the release > candidates from: > > http://drop.io/xortel1# > > If you have any bugfixes or patches, feel free to post them > here, but > please also post to the tracker > > https://sourceforge.net/tracker/?group_id=80706&atid=560720 > > Thanks to Michael Droettboom with help setting up the > release branch, > Christoph Gohlke for the python2.6 win32 binaries, and > William Stein > for providing a remote OSX box for building and testing OSX > binaries. > > Those of you with svn access can grab the release branch > from:: > > svn co https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_99_maint > mpl99 > > and post patches against svn for any bugs you discover and > fix:: > > http://matplotlib.sourceforge.net/faq/howto_faq.html#submit-a-patch > > Thanks to all the developers who contributed in this cycle > -- more > details to follow on the official release announcement next > week. > > JDH > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal > Reports 2008 30-Day > trial. Simplify your report design, integration and > deployment - and focus on > what you do best, core application coding. Discover what's > new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
From: John H. <jd...@gm...> - 2009-08-05 11:08:48
|
On Wed, Aug 5, 2009 at 5:55 AM, Michiel de Hoon<mjl...@ya...> wrote: > > I am seeing the following error with the GTKCairo and GTKAgg backends: > >>>> figure() > <matplotlib.figure.Figure object at 0x7ebe0cec> >>>> Traceback (most recent call last): > File "/usr/local/lib/python2.6/site-packages/matplotlib/backends/backend_gtk.py", line 249, in enter_notify_event > FigureCanvasBase.enter_notify_event(self, event, guiEvent=event) > TypeError: enter_notify_event() got multiple values for keyword argument 'guiEvent' > Traceback (most recent call last): > File "/usr/local/lib/python2.6/site-packages/matplotlib/backends/backend_gtk.py", line 246, in leave_notify_event > FigureCanvasBase.leave_notify_event(self, event, guiEvent=event) > TypeError: leave_notify_event() got multiple values for keyword argument 'guiEvent' > > whenever I move the mouse into or out of the figure windows. Good catch -- in fixing a sf bug in which the GTK gui event was not getting attached to the scroll event https://sourceforge.net/tracker/?func=detail&aid=2816580&group_id=80706&atid=560720 I noticed most other events were not getting their gui event attached, and apparently went overboard and added them to the enter/leave events when they were already there. Fixed in the svn branch and will be merged into the trunk later -- thanks for catching it JDH |