You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
(1) |
2
(1) |
3
(6) |
4
(8) |
5
(9) |
6
(1) |
7
|
8
(2) |
9
|
10
(9) |
11
(2) |
12
(6) |
13
(3) |
14
(7) |
15
(13) |
16
(4) |
17
(2) |
18
|
19
(3) |
20
(1) |
21
|
22
(6) |
23
(1) |
24
(1) |
25
|
26
|
27
|
28
(1) |
29
(12) |
30
(12) |
31
(9) |
|
|
|
On 10/05/2012 06:38 AM, todd rme wrote: > I am trying to do some experimental packages with python 3 and the > latest RC, and I am trying to figure out the situation with some of > the backends. Some are obvious, like wxwidgets and PyQt (Qt3 > version). > > The issue I am running into is with the gtk backend PyGTK is > deprecated. According to the website, all development halted a year > and a half ago and they say to use PyGObject instead. PyGTK, as far > as I can tell, does not support Python 3 or GTK 3. PyGObject, > however, supports both. So I was wondering what I should be doing > with this backend. Does matplotlib support PyGObject, or should the > GTK backends just be disabled on Python 3 builds? > The new Gtk3Cairo backend uses PyGObject and works under Python 3. (This refers to Gtk version 3, which is also only supported by PyGObject -- the backend could perhaps have been called PyGObject, but in fact the toolkit used is still Gtk, so the naming is perhaps a bit confusing). The older pygtk backend still ships with Python 3, but a warning is displayed when the user attempts to use it. Once PyGObject/PyCairo addresses a shortcoming [1] that prevents a bitmap buffer from being transferred to an on screen window, the Gtk3Agg backend will also work. http://lists.cairographics.org/archives/cairo/2011-November/022519.html BTW -- this report has languished for almost a year. Does anyone know a better way to get the ear of the pycairo developers? Mike
I am trying to do some experimental packages with python 3 and the latest RC, and I am trying to figure out the situation with some of the backends. Some are obvious, like wxwidgets and PyQt (Qt3 version). The issue I am running into is with the gtk backend PyGTK is deprecated. According to the website, all development halted a year and a half ago and they say to use PyGObject instead. PyGTK, as far as I can tell, does not support Python 3 or GTK 3. PyGObject, however, supports both. So I was wondering what I should be doing with this backend. Does matplotlib support PyGObject, or should the GTK backends just be disabled on Python 3 builds? Thanks for your help. -Todd
On 10/04/2012 11:56 AM, Chris Barker wrote: > On Wed, Oct 3, 2012 at 10:36 PM, Erik Bray <eri...@gm...> wrote: >> So as you wrote in the MEP, Numpy will simply have to be installed >> separately, I think, if the C++ modules require the Numpy headers. > Which is totally fine -- MPL requires a bunch of non-python > dependencies (OK, a few) anyway, so no matter how you slice it, you > need to get some stuf set up before you can build MPL. > > Ideally, no on e needs to build MPL that would have trouble with this > requirement -- that's what binaries (and nifty linux .deb / .rpm ) are > for. > > I personally prefer that dependencies are well documented, but not > necessarily auto-installed -- the auto stuff is just not reliable > enough. I agree that .deb/.rpm/MacPorts solve this problem better than anything. This is mainly for folks on Windows who want a binary, those on a Mac who want a graphical installer, or those on other Unices who don't have access to the package manager or want to build from source for any myriad of reasons. I agree that the dependencies should be well-documented and it does need improvement in certain areas. When you say the "auto stuff" is just not reliable enough, can you be more specific? Not trying to start an argument -- but I've found it much more reliable in the distribute/pip era than in the setuptools/easy_install era, but that's only with myself as a data point. If there's still lingering issues and obstacles, it would be good to know about. Mike > > >
On 10/04/2012 06:16 AM, Thomas Kluyver wrote: > On 3 October 2012 22:08, Christoph Gohlke <cg...@uc...> wrote: >> Concerning end user experience, the scipy-stack project seems like a >> better place to address this. > To expand on this, there's a discussion underway on the scipy-user and > numfocus mailing lists about standardising a set of packages making up > the 'scipy stack', and pointing people to distributions which ship all > of those. > > Matplotlib is of course among that set of packages, so hopefully that > will reduce the need for users to install it separately. Just to reiterate a point I made in an earlier e-mail: I agree that effort is a good one and deserving of support, but not all users of matplotlib want a full scientific stack. There are always going to be those who "just want to plot something", and we need to support that use case at least as well as we do now. Mike
On 10/03/2012 05:08 PM, Christoph Gohlke wrote: > On 10/3/2012 9:20 AM, Michael Droettboom wrote: >> I invite comments for a new MEP about improving the situation with >> respect to our bundling of third-party Python dependencies. >> >> In particular, I'd love feedback from the various stakeholders -- those >> producing binary installers and packages for the various platforms. >> >> https://github.com/matplotlib/matplotlib/wiki/MEP11 >> >> Mike > Hi, > > could dateutil, pytz, and pyparsing be made optional dependencies? I > just tried, all of my own scripts do work without them being installed > (one line needed to be removed in axes.py > https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/axes.py#L19). > Only about 10 of matplotlib's examples fail (after some additional > changes). I think that sort of unbundling is a good idea to do in any case. Would you mind filing a PR with the changes you made? I think we still have to provide some sort of a hand-holding way to help people get dateutil/pytz/pyparsing etc. installed because if we take those features away people will complain. > > Frankly, I would remove/unbundle all 3rd party Python packages from > matplotlib and declare them as dependencies for pip and easy_install, > and of course in the documentation. If we can determine through experimentation that that's a reliable and convenient approach, that's what I would prefer. Binary installers make things more complicated. I'd prefer to have the installer automatically download the dependencies there, too, if we can work through the technical obstacles. > > I think that matplotlib, the library, should not attempt to work around > Python's distribution/packaging limitations. Please do not use > post-install or run-time scripts to detect and install missing > dependencies. Certainly -- but I don't want to provide people who are used to getting those dependencies from the installer to suddenly have a lesser experience. If some standard tool gives us what we need, great, otherwise we are going to have to make something that works. (All this is conjecture, because I haven't yet experimented with pip inside a Windows installer etc.) > > Concerning end user experience, the scipy-stack project seems like a > better place to address this. I agree -- but I think that's still a ways off. Also, remember there are a number of non-scientific users of matplotlib (data center monitoring is one such application I'm aware of) and those folks may be wary of installing a large scientific stack. Of course, perhaps that crowd is already using a proper package manager. > > Optionally, for Windows users that won't touch pip or easy_install (like > me), matplotlib could provide separate downloads of installers for > dateutil, pytz, pyparsing, and six. They are trivial to create. That's not a bad idea. But telling people they need to run 5 installers where there used to be 1 may be a hard sell. Any way to build a "meta" installer? > > It is also easy to create EGGs or MSIs for matplotlib, which are > occasionally requested. I'm perhaps showing my ignorance here, but is there any "one best way" among those options? I'd rather have one obvious best approach. > > Also consider a separate package for the matplotlib tests, which would > include 35 MB of baseline images that are of little use to end users. I've been wondering about this myself. I think what we probably want there is a separate Python package (i.e. a separate setup.py script), that lives in the same repository. It's important to keep the test data and the code in sync and a separate repository would just add needless complication. But that would easily allow binary installers and tarballs to be built without the test data. I think I'll add this to the MEP as a related task. Mike > > Christoph > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
On Wed, Oct 3, 2012 at 6:20 PM, Michael Droettboom <md...@st...> wrote: > I invite comments for a new MEP about improving the situation with respect > to our bundling of third-party Python dependencies. > > In particular, I'd love feedback from the various stakeholders -- those > producing binary installers and packages for the various platforms. > > https://github.com/matplotlib/matplotlib/wiki/MEP11 > > Mike I help with the openSUSE packaging of mpl. At least as openSUSE policies go, bundling dependencies is considered a big no-no. RPM has its own dependency handling, so as long as the dependencies are documented (ideally with version numbers) then there is no issue, either at build-time or at run-time. I think that would likely be the case for any official linux packages. Anyone on Linux who is trying to install matplotlib from source should be prepared to handle dependency resolution manually. If they aren't, then they shouldn't be messing with package installation in the first place. I think the documentation should clearly state this, although more diplomatically of course :) So from a Linux standpoint I think bundling is a bad idea. Further, any solution should be prepared to handle the situation where the dependencies are already available, and not try to download them under this situation. It should also be able to handle installation with no internet connection as long as the dependencies are available, so it can be compatible with automated build systems and hpc environments which may not support internet access for security reasons. For windows, rather than creating independent matplotlib installers, can't the documentation just point people in the direction of a pre-existing bundle like python(x,y)? Since there are groups dedicated to making it easy to install python packages on windows, I don't see the point of going through all the trouble of making your own version. If you really wanted to you might even be able to use their sources to create your own variant that just installs what you need. -Todd
On Wed, Oct 3, 2012 at 10:36 PM, Erik Bray <eri...@gm...> wrote: > So as you wrote in the MEP, Numpy will simply have to be installed > separately, I think, if the C++ modules require the Numpy headers. Which is totally fine -- MPL requires a bunch of non-python dependencies (OK, a few) anyway, so no matter how you slice it, you need to get some stuf set up before you can build MPL. Ideally, no on e needs to build MPL that would have trouble with this requirement -- that's what binaries (and nifty linux .deb / .rpm ) are for. I personally prefer that dependencies are well documented, but not necessarily auto-installed -- the auto stuff is just not reliable enough. -Chris -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chr...@no...
On 3 October 2012 22:08, Christoph Gohlke <cg...@uc...> wrote: > Concerning end user experience, the scipy-stack project seems like a > better place to address this. To expand on this, there's a discussion underway on the scipy-user and numfocus mailing lists about standardising a set of packages making up the 'scipy stack', and pointing people to distributions which ship all of those. Matplotlib is of course among that set of packages, so hopefully that will reduce the need for users to install it separately. Thanks, Thomas
On Wed, Oct 3, 2012 at 9:10 PM, Michael Droettboom <md...@st...> wrote: > On 10/03/2012 05:26 PM, Erik Bray wrote: >> On 10/03/2012 12:20 PM, Michael Droettboom wrote: >>> I invite comments for a new MEP about improving the situation with >>> respect to our bundling of third-party Python dependencies. >>> >>> In particular, I'd love feedback from the various stakeholders -- those >>> producing binary installers and packages for the various platforms. >>> >>> https://github.com/matplotlib/matplotlib/wiki/MEP11 >>> >>> Mike >> >> +1 Let me know if you need/want any help with any distribute or pip >> intricacies. >> >> As for Windows, I need to double check, but I believe bdist_wininst >> installers generated by setuptools/distribute do support installing >> dependencies from PyPI. >> >> Regarding Numpy: I'm not sure, does Matplotlib require Numpy at build >> time? I'm guessing probably yes, but if not it can also be installed >> by easy_install or pip. IIRC easy_install will install one of the >> pre-built binary eggs. pip only installs/builds from source which can >> be problematic sometimes. Though I fixed Numpy a while back to be >> installable by pip so it *does* work so long as Numpy can be built on >> your system. > > Numpy is required at build time (matplotlib C++ extensions need to > include Numpy's headers), but I had assumed if it was a requirement, it > would get installed first and then we'd be ok to proceed. Is that not > how pip works? > > Mike Yes/no. Pip does install dependencies first, but they aren't available at run-time of the setup.py of the dependent package--unfortunate but mostly true. I've been meaning to see if I can fix that. And easy_install of course is flawed in that it installs dependencies afterwards. easy_install does support setup_requires for downloading and adding packages to the path when running setup.py, but this does *not* work with Numpy. So as you wrote in the MEP, Numpy will simply have to be installed separately, I think, if the C++ modules require the Numpy headers. Erik
On 10/03/2012 05:26 PM, Erik Bray wrote: > On 10/03/2012 12:20 PM, Michael Droettboom wrote: >> I invite comments for a new MEP about improving the situation with >> respect to our bundling of third-party Python dependencies. >> >> In particular, I'd love feedback from the various stakeholders -- those >> producing binary installers and packages for the various platforms. >> >> https://github.com/matplotlib/matplotlib/wiki/MEP11 >> >> Mike > > +1 Let me know if you need/want any help with any distribute or pip > intricacies. > > As for Windows, I need to double check, but I believe bdist_wininst > installers generated by setuptools/distribute do support installing > dependencies from PyPI. > > Regarding Numpy: I'm not sure, does Matplotlib require Numpy at build > time? I'm guessing probably yes, but if not it can also be installed > by easy_install or pip. IIRC easy_install will install one of the > pre-built binary eggs. pip only installs/builds from source which can > be problematic sometimes. Though I fixed Numpy a while back to be > installable by pip so it *does* work so long as Numpy can be built on > your system. Numpy is required at build time (matplotlib C++ extensions need to include Numpy's headers), but I had assumed if it was a requirement, it would get installed first and then we'd be ok to proceed. Is that not how pip works? Mike
On Wed, Oct 3, 2012 at 10:08 PM, Christoph Gohlke <cg...@uc...> wrote: > On 10/3/2012 9:20 AM, Michael Droettboom wrote: >> I invite comments for a new MEP about improving the situation with >> respect to our bundling of third-party Python dependencies. >> >> In particular, I'd love feedback from the various stakeholders -- those >> producing binary installers and packages for the various platforms. >> >> https://github.com/matplotlib/matplotlib/wiki/MEP11 >> >> Mike > I think that matplotlib, the library, should not attempt to work around > Python's distribution/packaging limitations. Please do not use > post-install or run-time scripts to detect and install missing > dependencies. I whole-heartedly agree here. There are package managers for this job. I understand there are people less package-literate and, as you point out below, the development team for each separate dependency can ship a binary. Though I understand not all do this. > Optionally, for Windows users that won't touch pip or easy_install (like > me), matplotlib could provide separate downloads of installers for > dateutil, pytz, pyparsing, and six. They are trivial to create. > Also consider a separate package for the matplotlib tests, which would > include 35 MB of baseline images that are of little use to end users. I agree here, too. I think most people who want to use the library won't ever run or touch the tests. Heck, I only ever ran the tests after I started contributing back to the community. Perhaps they should be spawn off to a matplotlib-tests git submodule that Travis can use for commit-checking. -- Damon McDougall http://www.damon-is-a-geek.com B2.39 Mathematics Institute University of Warwick Coventry West Midlands CV4 7AL United Kingdom
On Wed, Oct 3, 2012 at 2:08 PM, Christoph Gohlke <cg...@uc...> wrote: A bunch of great stuff: +1 all around Another use-case is py2exe, py2app, and friends -- at the moment, you pretty much have to include the whole dang MPL package to get things to work. Cleaning up some of these dependencies could improve that. -Chris > On 10/3/2012 9:20 AM, Michael Droettboom wrote: >> I invite comments for a new MEP about improving the situation with >> respect to our bundling of third-party Python dependencies. >> >> In particular, I'd love feedback from the various stakeholders -- those >> producing binary installers and packages for the various platforms. >> >> https://github.com/matplotlib/matplotlib/wiki/MEP11 >> >> Mike > > Hi, > > could dateutil, pytz, and pyparsing be made optional dependencies? I > just tried, all of my own scripts do work without them being installed > (one line needed to be removed in axes.py > https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/axes.py#L19). > Only about 10 of matplotlib's examples fail (after some additional > changes). > > Frankly, I would remove/unbundle all 3rd party Python packages from > matplotlib and declare them as dependencies for pip and easy_install, > and of course in the documentation. > > I think that matplotlib, the library, should not attempt to work around > Python's distribution/packaging limitations. Please do not use > post-install or run-time scripts to detect and install missing > dependencies. > > Concerning end user experience, the scipy-stack project seems like a > better place to address this. > > Optionally, for Windows users that won't touch pip or easy_install (like > me), matplotlib could provide separate downloads of installers for > dateutil, pytz, pyparsing, and six. They are trivial to create. > > It is also easy to create EGGs or MSIs for matplotlib, which are > occasionally requested. > > Also consider a separate package for the matplotlib tests, which would > include 35 MB of baseline images that are of little use to end users. > > Christoph > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chr...@no...
On 10/3/2012 9:20 AM, Michael Droettboom wrote: > I invite comments for a new MEP about improving the situation with > respect to our bundling of third-party Python dependencies. > > In particular, I'd love feedback from the various stakeholders -- those > producing binary installers and packages for the various platforms. > > https://github.com/matplotlib/matplotlib/wiki/MEP11 > > Mike Hi, could dateutil, pytz, and pyparsing be made optional dependencies? I just tried, all of my own scripts do work without them being installed (one line needed to be removed in axes.py https://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/axes.py#L19). Only about 10 of matplotlib's examples fail (after some additional changes). Frankly, I would remove/unbundle all 3rd party Python packages from matplotlib and declare them as dependencies for pip and easy_install, and of course in the documentation. I think that matplotlib, the library, should not attempt to work around Python's distribution/packaging limitations. Please do not use post-install or run-time scripts to detect and install missing dependencies. Concerning end user experience, the scipy-stack project seems like a better place to address this. Optionally, for Windows users that won't touch pip or easy_install (like me), matplotlib could provide separate downloads of installers for dateutil, pytz, pyparsing, and six. They are trivial to create. It is also easy to create EGGs or MSIs for matplotlib, which are occasionally requested. Also consider a separate package for the matplotlib tests, which would include 35 MB of baseline images that are of little use to end users. Christoph
I invite comments for a new MEP about improving the situation with respect to our bundling of third-party Python dependencies. In particular, I'd love feedback from the various stakeholders -- those producing binary installers and packages for the various platforms. https://github.com/matplotlib/matplotlib/wiki/MEP11 Mike
+1 On 10/03/2012 04:36 AM, Phil Elson wrote: > Good question! > > It would certainly be a welcome deprecation from my point of view. > There is a fair amount of overhead maintaining it if you make any > changes to the way backends work (as I have done a couple of times > recently). > > Depending on feedback here, it is something we could potentially > deprecate in 1.2 and then completely remove by 1.3. > > Cheers, > > > > > On 2 October 2012 20:13, Eric Firing <ef...@ha... > <mailto:ef...@ha...>> wrote: > > Is there any good reason to retain the original NavigationToolbar code > in the backends, and the corresponding "classic" option in > rcParams['toolbar']? > > Eric > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New > Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > <mailto:Mat...@li...> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
Good question! It would certainly be a welcome deprecation from my point of view. There is a fair amount of overhead maintaining it if you make any changes to the way backends work (as I have done a couple of times recently). Depending on feedback here, it is something we could potentially deprecate in 1.2 and then completely remove by 1.3. Cheers, On 2 October 2012 20:13, Eric Firing <ef...@ha...> wrote: > Is there any good reason to retain the original NavigationToolbar code > in the backends, and the corresponding "classic" option in > rcParams['toolbar']? > > Eric > > > ------------------------------------------------------------------------------ > Don't let slow site performance ruin your business. Deploy New Relic APM > Deploy New Relic app performance management and know exactly > what is happening inside your Ruby, Python, PHP, Java, and .NET app > Try New Relic at no cost today and get our sweet Data Nerd shirt too! > http://p.sf.net/sfu/newrelic-dev2dev > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >
Is there any good reason to retain the original NavigationToolbar code in the backends, and the corresponding "classic" option in rcParams['toolbar']? Eric
On Sun, Sep 30, 2012 at 9:24 PM, Eric Firing <ef...@ha...> wrote: > On 2012年09月30日 7:14 AM, Michael Droettboom wrote: >> On 09/29/2012 08:07 PM, Eric Firing wrote: >>> Mike, >>> >>> I'm getting confused about branch merge strategy. Usually, it seems >>> that it has been to periodically merge the maintenance branch into >>> master. Something like this: >>> >>> git fetch upstream >>> git checkout master >>> git merge --ff-only upstream/master >>> git merge upstream/v1.2.x >>> # test, commit changes if necessary >>> git push upstream master >>> >>> Is that correct? >>> >>> At present, however, we seem to be developing fairly long separate >>> threads on the two branches, with duplicate changesets, presumably >>> from cherry-picking. Is this intentional? Do you plan to go back to >>> the merge strategy? >> >> A few things were cherry-picked over to 1.2.x, since the PR was >> initially set up against master and github doesn't provide a way to >> change the destination of a PR after creating it. But that was meant to >> be the exception... the "preferred" way hasn't changed. >> >>> >>> I can see that a problem with branch merging is that there are >>> occasionally changesets in v1.2.x, such as the rc version tagging, >>> that are not appropriate for master. >> Tags don't merge across branches because tags are just pointers to >> particular commit hashes. When doing a merge, you always get a new >> commit hash (since the parents are different). As for updating the >> version number, however, yes, those changes need to be manually >> addressed -- though it usually shows up as a merge conflict, so it's >> obvious that it needs to be done. > > Mike, > > Thanks. I have performed the merge of v1.2.x into master, and I think > everything is OK; the changes reflect only the commits that were not > cherry-picked. I also reverted what I think was an inadvertent version > change in master, so now it is back to 1.3.x. > > Eric > > >> >> Mike I had an idea this morning about how best to resolve this. I think the developers' lives would be made slightly easier if contributors knew where to branch from at the outset. I think when most people submit a pull request (myself included) they automatically branch from master. This is where the problem lies. If someone is submitting a bug fix during a release cycle they should almost certainly branch from v1.2.x, or whatever the current version branch is. This way, if the pull request gets accept it's trivial to merge it into the correct place (v1.2.x) and if it's accepted but is not deemed suitable for v1.2.x it can be rebased onto master. This avoids the, in my opinion, ugly cherry-picking solution. Since all of our patches and contributions are taking place on github, to get this information to contributors I propose updating the readme.txt file to include this information. It's the first thing people see when they're on the matplotlib github page so I think it would make a big difference. How does that sound? -- Damon McDougall http://www.damon-is-a-geek.com B2.39 Mathematics Institute University of Warwick Coventry West Midlands CV4 7AL United Kingdom