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
(4) |
2
(3) |
3
(12) |
4
(8) |
5
(10) |
6
(21) |
7
(25) |
8
(3) |
9
(3) |
10
(4) |
11
(6) |
12
(20) |
13
(32) |
14
(15) |
15
(4) |
16
(2) |
17
(4) |
18
(2) |
19
(3) |
20
(3) |
21
(7) |
22
(16) |
23
(2) |
24
(14) |
25
(11) |
26
(4) |
27
(2) |
28
(3) |
29
(5) |
30
(26) |
31
(18) |
|
|
|
|
|
On Fri, Aug 21, 2009 at 6:24 PM, Ryanitus<rya...@ho...> wrote: > > Hello. > > I was doing a simple test using a FIFOBuffer. I set the dataLim parameter > to the dataLim of a Line2D plot. After adding a value to the FIFO, it > raises an exception. It looks like the FIFO is trying to call > Bbox.update(), but that method does not exist. Other update_*() methods do. > Any ideas? In mpl 0.98 we did a big refactoring of the transformations infrastructure but this class was not properly poprted. I've fixed it in the svn release branch so it should be fixed in the next release (0.99.1) Thanks for the report, JDH
Hello. I was doing a simple test using a FIFOBuffer. I set the dataLim parameter to the dataLim of a Line2D plot. After adding a value to the FIFO, it raises an exception. It looks like the FIFO is trying to call Bbox.update(), but that method does not exist. Other update_*() methods do. Any ideas? Here's a snippet: import matplotlib.pyplot as plt from matplotlib.mlab import FIFOBuffer as FIFO f = FIFO(100) p = plt.plot([0,1,2],[0,1,2]) f.dataLim = p[0].get_axes().dataLim plt.draw() f.add(3,3) Here's the exception: Traceback (most recent call last): File "C:\fifo.py", line 9, in <module> f.add(3,3) File "C:\Python26\lib\site-packages\matplotlib\mlab.py", line 1103, in add self.dataLim.update(xys, -1) #-1 means use the default ignore setting AttributeError: 'Bbox' object has no attribute 'update' -- View this message in context: http://www.nabble.com/FIFOBuffer.add%28%29-calls-Bbox.update%28%29%2C-not-a-method-tp25088841p25088841.html Sent from the matplotlib - devel mailing list archive at Nabble.com.
Hi, I've been having the same problem. I've done some digging and now know why this is happening, but have no idea how to fix it! Someone has updated _macosx.m to use the new CTFont functionality in the 10.5 SDK. Unfortunately, the #ifdef checks they have put in to ensure that the 10.5 SDK is being used don't seem to work properly, and the matplotlib build process specifies the 10.4 SDK. Currently the checks are done using: #ifdef MAC_OS_X_VERSION_10_5 but if you are building on 10.5 this seems to always be defined, even with the SDK specified to 10.4. I've spent a while reading through the Apple docs but have to admit I'm a little mystified as to how to properly check for the SDK version. Out of curiosity, why is the 10.4 SDK specified and how? Is this part of distutils? And why, even with the 10.4 SDK, is the resulting output bundle called 10.3 fat? Toby On 20 Aug 2009, at 16:33, Michael Hearne wrote: > I'm attempting to build matplotlib from source (0.99.0 from > sourceforge) on Mac OS 10.5, and I'm getting the build output below > (with errors). Is there some setting I need to make for the mac OS > backend? > > --Mike > > = > = > = > = > = > = > ====================================================================== > BUILDING MATPLOTLIB > matplotlib: 0.99.0 > python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 > 2009, > 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. > build > 5370)] > platform: darwin > > REQUIRED DEPENDENCIES > numpy: 1.3.0 > freetype2: 9.20.3 > > OPTIONAL BACKEND DEPENDENCIES > libpng: 1.2.37 > Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 > wxPython: 2.8.7.1 > * WxAgg extension not required for wxPython >> = 2.8 > Gtk+: no > * Building for Gtk+ requires pygtk; you must > be able > * to "import gtk" in your build/install > environment > Mac OS X native: yes > Qt: no > Qt4: no > Cairo: no > > OPTIONAL DATE/TIMEZONE DEPENDENCIES > datetime: present, version unknown > dateutil: 1.4 > pytz: 2008c > > OPTIONAL USETEX DEPENDENCIES > dvipng: no > ghostscript: 8.54 > latex: no > > [Edit setup.cfg to suppress the above messages] > = > = > = > = > = > = > ====================================================================== > pymods ['pylab'] > packages ['matplotlib', 'matplotlib.backends', > 'matplotlib.projections', 'mpl_toolkits', 'mpl_toolkits.mplot3d', > 'mpl_toolkits.axes_grid', 'matplotlib.sphinxext', > 'matplotlib.numerix', 'matplotlib.numerix.mlab', > 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', > 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', > 'matplotlib.delaunay'] > running build > running build_py > copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3- > fat-2.5/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/matplotlib.conf -> build/ > lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > running build_ext > building 'matplotlib.backends._macosx' extension > creating build/temp.macosx-10.3-fat-2.5 > creating build/temp.macosx-10.3-fat-2.5/src > creating build/temp.macosx-10.3-fat-2.5/CXX > gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict- > aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno- > common - > dynamic -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include - > DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/ > local/include -I/usr/include -I/sw/include -I. -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc - > Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/ > 4.3.0/include/python2.5 -c src/_macosx.m -o build/temp.macosx-10.3- > fat-2.5/src/_macosx.o > src/_macosx.m:1885: error: syntax error before ‘setfont’ > src/_macosx.m: In function ‘setfont’: > src/_macosx.m:1895: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:1895: error: (Each undeclared identifier is reported > only once > src/_macosx.m:1895: error: for each function it appears in.) > src/_macosx.m:1895: error: syntax error before ‘font’ > src/_macosx.m:2095: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m: In function ‘GraphicsContext_draw_text’: > src/_macosx.m:2138: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2138: error: syntax error before ‘font’ > src/_macosx.m:2163: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2168: warning: assignment makes pointer from integer > without a cast > src/_macosx.m:2170: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2171: error: ‘kCTForegroundColorAttributeName’ > undeclared (first use in this function) > src/_macosx.m:2191: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2191: error: syntax error before ‘line’ > src/_macosx.m:2194: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m: In function > ‘GraphicsContext_get_text_width_height_descent’: > src/_macosx.m:2238: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2238: error: syntax error before ‘font’ > src/_macosx.m:2251: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2256: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2274: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2274: error: syntax error before ‘line’ > src/_macosx.m:2277: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m:2285: error: incompatible types in assignment > error: command 'gcc' failed with exit status 1 > > > > ------------------------------------------------------------------------------ > 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-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
On Fri, Aug 21, 2009 at 10:41 AM, Jouni K. Seppänen<jk...@ik...> wrote: > Eric Bruning <eri...@gm...> writes: > >> ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib, >> missing required architecture ppc in file >> ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib, >> missing required architecture ppc in file for architecture ppc > > Somehow your gcc is picking up libraries from /usr/local/lib, where you > have presumably installed an x86-only version of gcc (could be a side > effect of installing GNU Fortran). I don't know how to prevent that, > except perhaps by moving /usr/local away for the duration of the > compilation command, e.g. I think you should edit setupext.py and edit basedir directory, and remove all the /sw, /usr/local, etc from basedir in the 'darwin' entry, which reads: darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local', '/usr', '/sw'], Then do a clean rebuild and see if that helps. JDH
Hi, Just my 0ドル.10 on this topic: Stick with the default system Python 2.5.1 on Leopard and save yourself a lot of potential hassle. In the days of Tiger and its antiquated and hamstrung Python 2.3, many people were forced to install Python themselves just to get going. They had to choose between several alternatives: MacPython, Enthought's EPD, ActiveState Python, etc. This notion of installing Python on Mac OS X persists to this day, and many people still assume it is necessary. If you really want the latest Python or the convenience of a pre-packaged distribution, go ahead and install one of the fine Mac Pythons out there. On the other hand, if you just want to get matplotlib going, the system Python will do just fine. In my experience it saves you many hassles with CPU architectures during builds (which has gotten worse under Leopard). I successfully built and ran the latest MPL r7514 by simply typing "python setup.py build". No environment variables to be set... On an aside, Snow Leopard (Mac OS 10.6) looks to have a whole range of Pythons, from 2.5 all the way up to 3.1. This could make the default system Python even more of a no-brainer. Regards, Ludwig
Eric Bruning <eri...@gm...> writes: > ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib, > missing required architecture ppc in file > ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib, > missing required architecture ppc in file for architecture ppc Somehow your gcc is picking up libraries from /usr/local/lib, where you have presumably installed an x86-only version of gcc (could be a side effect of installing GNU Fortran). I don't know how to prevent that, except perhaps by moving /usr/local away for the duration of the compilation command, e.g. sudo mv /usr/local /usr/local.renamed make installers sudo mv /usr/local.renamed /usr/local -- Jouni K. Seppänen http://www.iki.fi/jks
On Tue, Aug 18, 2009 at 5:08 PM, Uri Laserson<las...@mi...> wrote: > Hi Eric, > > I have been trying to do the same on my own machine and have run into the > same problems. I originally tried to rebuild libpng etc for both i386 and > ppc, which worked. The MPL build then went smoothly, but when I tried to > import matplotlib.pyplot, I got the following error (see my post from > 07/30/09): > > ImportError: dlopen(/Library/Frameworks/ > Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so, > 2): Symbol not found: _png_create_info_struct > Referenced from: > /Library/Frameworks/Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so > Expected in: /usr/local/lib/libpng12.0.dylib > > Anyway, I just tried your method, and the build breaks. I am using the > enthought python distribution on Mac OS X 10.5. I checked out a fresh copy > of MPL and edited setupext.py so that the 'darwin' key only has '/usr/X11R6' > and nothing else. The output of the build below: My 'darwin' key looks like: 'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local', '/usr', '/sw', '/usr/X11R6'], I then export PKG_CONFIG_PATH=/usr/X11/lib/pkgconfig, and the command you give below builds fine. I'm wondering if you see an architecture mismatch that I don't since you're building against Enthought Python; I'm using MacPython from python.org. -Eric > > The command I ran was: > env ARCHFLAGS='-arch i386' CFLAGS="-Os -arch i386" LDFLAGS="-Os -arch i386" > python setup.py build > > The output was: > ============================================================================ > BUILDING MATPLOTLIB > matplotlib: 1.0.svn > python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 2009, > 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. build > 5370)] > platform: darwin > > REQUIRED DEPENDENCIES > numpy: 1.3.0 > freetype2: 9.20.3 > > OPTIONAL BACKEND DEPENDENCIES > libpng: 1.2.38 > Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 > wxPython: 2.8.7.1 > * WxAgg extension not required for wxPython >= 2.8 > Gtk+: no > * Building for Gtk+ requires pygtk; you must be able > * to "import gtk" in your build/install environment > Mac OS X native: yes > Qt: no > Qt4: no > Cairo: no > > OPTIONAL DATE/TIMEZONE DEPENDENCIES > datetime: present, version unknown > dateutil: 1.4 > pytz: 2008c > > OPTIONAL USETEX DEPENDENCIES > dvipng: 1.11 > ghostscript: 8.62 > latex: 3.1415926 > > [Edit setup.cfg to suppress the above messages] > ============================================================================ > pymods ['pylab'] > packages ['matplotlib', 'matplotlib.backends', 'matplotlib.projections', > 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid', > 'matplotlib.sphinxext', 'matplotlib.numerix', 'matplotlib.numerix.mlab', > 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', > 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', > 'matplotlib.delaunay'] > running build > running build_py > creating build > creating build/lib.macosx-10.3-fat-2.5 > copying lib/pylab.py -> build/lib.macosx-10.3-fat-2.5 > creating build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/_cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/_mathtext_data.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/_pylab_helpers.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/afm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/artist.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/axes.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/axis.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/backend_bases.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/bezier.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/blocking_input.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/cbook.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/collections.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/colorbar.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/colors.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/contour.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/dates.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/docstring.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/dviread.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/figure.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/finance.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/font_manager.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/fontconfig_pattern.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/hatch.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/image.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/legend.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/lines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/mathtext.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/mlab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/mpl.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/offsetbox.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/patches.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/path.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/pylab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/pyparsing.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/pyplot.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/quiver.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/rcsetup.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/scale.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/spines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/table.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/texmanager.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/text.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/ticker.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/tight_bbox.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/transforms.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/type1font.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/units.py -> build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/widgets.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > copying lib/matplotlib/windowing.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib > creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_agg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_cairo.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_cocoaagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_emf.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_fltkagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_gdk.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_gtk.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_gtkagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_gtkcairo.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_macosx.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_mixed.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_pdf.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_ps.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_qt.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_qt4.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_qt4agg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_qtagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_svg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_template.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_tkagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_wx.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/backend_wxagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > copying lib/matplotlib/backends/tkagg.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends > creating build/lib.macosx-10.3-fat-2.5/matplotlib/projections > copying lib/matplotlib/projections/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/projections > copying lib/matplotlib/projections/geo.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/projections > copying lib/matplotlib/projections/polar.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/projections > creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits > copying lib/mpl_toolkits/__init__.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits > copying lib/mpl_toolkits/exceltools.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits > copying lib/mpl_toolkits/gtktools.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits > creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/__init__.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/art3d.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/axes3d.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/axis3d.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/proj3d.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d > creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/__init__.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/angle_helper.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_divider.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_grid.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_size.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axislines.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/clip_path.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/grid_finder.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/inset_locator.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> > build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid > creating build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/mathmpl.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/only_directives.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/plot_directive.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix > copying lib/matplotlib/numerix/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix > copying lib/matplotlib/numerix/_sp_imports.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab > copying lib/matplotlib/numerix/mlab/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma > copying lib/matplotlib/numerix/ma/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra > copying lib/matplotlib/numerix/linear_algebra/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array > copying lib/matplotlib/numerix/random_array/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array > creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft > copying lib/matplotlib/numerix/fft/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft > creating build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay > copying lib/matplotlib/delaunay/__init__.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay > copying lib/matplotlib/delaunay/interpolate.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay > copying lib/matplotlib/delaunay/testfuncs.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay > copying lib/matplotlib/delaunay/triangulate.py -> > build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay > creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts > creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm > creating > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm > -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm > -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts > creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1Sym.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1SymBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2Sym.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2SymBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3Sym.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3SymBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4Sym.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4SymBol.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz5Sym.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/Vera.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf > creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_close.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_down.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_left.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_refresh.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_right.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_save_as.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_up.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-in.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-out.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.xpm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/matplotlib.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/matplotlib.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_close.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_down.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_left.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_refresh.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_right.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_save_as.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_up.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-in.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-out.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.ppm -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/matplotlibrc -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/matplotlib.conf -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/lineprops.glade -> > build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/classes.nib -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/info.nib -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/keyedobjects.nib -> > build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib > running build_ext > building 'matplotlib.ft2font' extension > creating build/temp.macosx-10.3-fat-2.5 > creating build/temp.macosx-10.3-fat-2.5/src > creating build/temp.macosx-10.3-fat-2.5/CXX > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/ft2font.cpp -o build/temp.macosx-10.3-fat-2.5/src/ft2font.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/mplutils.cpp -o build/temp.macosx-10.3-fat-2.5/src/mplutils.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > CXX/cxx_extensions.cxx -o > build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > CXX/cxxsupport.cxx -o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > CXX/IndirectPythonInterface.cxx -o > build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > CXX/cxxextensions.c -o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/src/ft2font.o > build/temp.macosx-10.3-fat-2.5/src/mplutils.o > build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o > build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/local/lib > -L/usr/X11R6/lib -lfreetype -lz -lstdc++ -lm -o > build/lib.macosx-10.3-fat-2.5/matplotlib/ft2font.so > ld: warning in build/temp.macosx-10.3-fat-2.5/src/ft2font.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not > of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is > not of required architecture > ld: warning in > /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not > of required architecture > ld: warning in > /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib, > file is not of required architecture > building 'matplotlib.ttconv' extension > creating build/temp.macosx-10.3-fat-2.5/ttconv > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/_ttconv.cpp -o build/temp.macosx-10.3-fat-2.5/src/_ttconv.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > ttconv/ttutil.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/src/_ttconv.o > build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o > build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o > build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o -L/usr/X11R6/lib -o > build/lib.macosx-10.3-fat-2.5/matplotlib/ttconv.so > ld: warning in build/temp.macosx-10.3-fat-2.5/src/_ttconv.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o, file is not > of required architecture > building 'matplotlib._cntr' extension > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/cntr.c -o build/temp.macosx-10.3-fat-2.5/src/cntr.o > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/src/cntr.o -L/usr/X11R6/lib -o > build/lib.macosx-10.3-fat-2.5/matplotlib/_cntr.so > ld: warning in build/temp.macosx-10.3-fat-2.5/src/cntr.o, file is not of > required architecture > building 'matplotlib._delaunay' extension > creating build/temp.macosx-10.3-fat-2.5/lib > creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib > creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > lib/matplotlib/delaunay/_delaunay.cpp -o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > lib/matplotlib/delaunay/VoronoiDiagramGenerator.cpp -o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > lib/matplotlib/delaunay/delaunay_utils.cpp -o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > lib/matplotlib/delaunay/natneighbors.cpp -o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o > -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/_delaunay.so > ld: warning in > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o, file is > not of required architecture > ld: warning in > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o, > file is not of required architecture > ld: warning in > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o, > file is not of required architecture > ld: warning in > build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o, file > is not of required architecture > building 'matplotlib.nxutils' extension > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/nxutils.c -o build/temp.macosx-10.3-fat-2.5/src/nxutils.o > gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/src/nxutils.o -L/usr/X11R6/lib -o > build/lib.macosx-10.3-fat-2.5/matplotlib/nxutils.so > ld: warning in build/temp.macosx-10.3-fat-2.5/src/nxutils.o, file is not of > required architecture > building 'matplotlib._path' extension > creating build/temp.macosx-10.3-fat-2.5/agg24 > creating build/temp.macosx-10.3-fat-2.5/agg24/src > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_curves.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_bezier_arc.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_trans_affine.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_vcgen_stroke.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/agg_py_transforms.cpp -o > build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/path_cleanup.cpp -o build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/path.cpp -o build/temp.macosx-10.3-fat-2.5/src/path.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o > build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o > build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o > build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o > build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o > build/temp.macosx-10.3-fat-2.5/src/path.o -L/usr/X11R6/lib -lstdc++ -lm -o > build/lib.macosx-10.3-fat-2.5/matplotlib/_path.so > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file > is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not > of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file > is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/path.o, file is not of > required architecture > building 'matplotlib.backends._backend_agg' extension > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_vcgen_dash.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > agg24/src/agg_image_filters.cpp -o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/backend_agg.cpp -o build/temp.macosx-10.3-fat-2.5/src/backend_agg.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o > build/temp.macosx-10.3-fat-2.5/src/mplutils.o > build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o > build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o > build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o > build/temp.macosx-10.3-fat-2.5/src/backend_agg.o -L/usr/X11R6/lib > -L/usr/local/lib -L/usr/X11R6/lib -lstdc++ -lm -lfreetype -lz -lstdc++ -lm > -o build/lib.macosx-10.3-fat-2.5/matplotlib/backends/_backend_agg.so > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file > is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file > is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not > of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/backend_agg.o, file is not > of required architecture > ld: warning in > /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not > of required architecture > ld: warning in > /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib, > file is not of required architecture > building 'matplotlib._image' extension > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -I/usr/X11R6/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include > -Isrc -Iagg24/include -I. > -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c > src/image.cpp -o build/temp.macosx-10.3-fat-2.5/src/image.o > g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g > -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib > -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 > build/temp.macosx-10.3-fat-2.5/src/image.o > build/temp.macosx-10.3-fat-2.5/src/mplutils.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o > build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o > build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o > build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o > build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/X11R6/lib -lstdc++ > -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/_image.so > ld: warning in build/temp.macosx-10.3-fat-2.5/src/image.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of > required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is > not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not > of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, > file is not of required architecture > ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is > not of required architecture > building 'matplotlib._png' extension > gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 > -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/usr/lo... [truncated message content]
Hi Jouni, Your changes helped, but I'm still seeing build errors against recent svn. On Thu, Aug 20, 2009 at 12:33 PM, Jouni K. Seppänen<jk...@ik...> wrote: > Eric Bruning <eri...@gm...> writes: > >> 2. The official recommendation at >> http://matplotlib.sourceforge.net/users/installing.html#build-osx >> doesn't work because OS X doesn't ship with wget and because the >> download URLs for zlib, libpng, and freetype are broken in >> matplotlib/release/osx > > I changed it to use curl, which OS X does have. Does this help? I cleaned out my build and tried again, following the instructions in release/osx/README.txt >From a current svn checkout, I successfully ran python setup.py sdist mv dist/matplotlib-1.0.svn.tar.gz release/osx/ Updated version numbers to: PYVERSION=2.6 PYTHON=python${PYVERSION} SRCDIR=${PWD} ZLIBVERSION=1.2.3 PNGVERSION=1.2.39 FREETYPEVERSION=2.3.9 MPLVERSION=1.0.svn BDISTMPKGVERSION=0.4.4 MPLSRC=matplotlib-${MPLVERSION} MACOSX_DEPLOYMENT_TARGET=10.4 The revised curl commands worked. (I had to grab zlib manually since zlib.net is down this morning!), and all the dependencies built with no problems. make installers fails with: ... g++ -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup -arch ppc -arch i386 -L/Users/ebruning/sources/matplotlib/release/osx/zlib-1.2.3 -L/Users/ebruning/sources/matplotlib/release/osx/libpng-1.2.39 -L/Users/ebruning/sources/matplotlib/release/osx/freetype-2.3.9 -Os -arch ppc -arch i386 -I/Users/ebruning/sources/matplotlib/release/osx/zlib-1.2.3 -I/Users/ebruning/sources/matplotlib/release/osx/libpng-1.2.39 -I/Users/ebruning/sources/matplotlib/release/osx/freetype-2.3.9/include build/temp.macosx-10.3-fat-2.6/src/ft2font.o build/temp.macosx-10.3-fat-2.6/src/mplutils.o build/temp.macosx-10.3-fat-2.6/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.6/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.6/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.6/CXX/cxxextensions.o -L/usr/local/lib -L/usr/local/lib -L/usr/lib -lfreetype -lz -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.6/matplotlib/ft2font.so ld warning: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.10.4.dylib, missing required architecture ppc in file ld: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libgcc_s.1.dylib, missing required architecture ppc in file for architecture ppc collect2: ld returned 1 exit status lipo: can't open input file: /var/folders/RP/RPE-UjrSHZ4SQq6AJQBxqk+++TI/-Tmp-//ccAHjtZk.out (No such file or directory) error: command 'g++' failed with exit status 1 make: *** [installers] Error 1 Thanks, Eric > > -- > Jouni K. Seppänen > http://www.iki.fi/jks > > > ------------------------------------------------------------------------------ > 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-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >
Eric Bruning <eri...@gm...> writes: > 2. The official recommendation at > http://matplotlib.sourceforge.net/users/installing.html#build-osx > doesn't work because OS X doesn't ship with wget and because the > download URLs for zlib, libpng, and freetype are broken in > matplotlib/release/osx I changed it to use curl, which OS X does have. Does this help? -- Jouni K. Seppänen http://www.iki.fi/jks
I've just started getting exactly the same errors, but with Python 2.6.2 and the most recent svn checkout. I haven't updated for a month or so but never had this issue before. Toby On 20 Aug 2009, at 16:33, Michael Hearne wrote: > I'm attempting to build matplotlib from source (0.99.0 from > sourceforge) on Mac OS 10.5, and I'm getting the build output below > (with errors). Is there some setting I need to make for the mac OS > backend? > > --Mike > > = > = > = > = > = > = > ====================================================================== > BUILDING MATPLOTLIB > matplotlib: 0.99.0 > python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 > 2009, > 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. > build > 5370)] > platform: darwin > > REQUIRED DEPENDENCIES > numpy: 1.3.0 > freetype2: 9.20.3 > > OPTIONAL BACKEND DEPENDENCIES > libpng: 1.2.37 > Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 > wxPython: 2.8.7.1 > * WxAgg extension not required for wxPython >> = 2.8 > Gtk+: no > * Building for Gtk+ requires pygtk; you must > be able > * to "import gtk" in your build/install > environment > Mac OS X native: yes > Qt: no > Qt4: no > Cairo: no > > OPTIONAL DATE/TIMEZONE DEPENDENCIES > datetime: present, version unknown > dateutil: 1.4 > pytz: 2008c > > OPTIONAL USETEX DEPENDENCIES > dvipng: no > ghostscript: 8.54 > latex: no > > [Edit setup.cfg to suppress the above messages] > = > = > = > = > = > = > ====================================================================== > pymods ['pylab'] > packages ['matplotlib', 'matplotlib.backends', > 'matplotlib.projections', 'mpl_toolkits', 'mpl_toolkits.mplot3d', > 'mpl_toolkits.axes_grid', 'matplotlib.sphinxext', > 'matplotlib.numerix', 'matplotlib.numerix.mlab', > 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', > 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', > 'matplotlib.delaunay'] > running build > running build_py > copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3- > fat-2.5/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/matplotlib.conf -> build/ > lib.macosx-10.3-fat-2.5/matplotlib/mpl-data > running build_ext > building 'matplotlib.backends._macosx' extension > creating build/temp.macosx-10.3-fat-2.5 > creating build/temp.macosx-10.3-fat-2.5/src > creating build/temp.macosx-10.3-fat-2.5/CXX > gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict- > aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno- > common - > dynamic -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include - > DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/ > local/include -I/usr/include -I/sw/include -I. -I/Library/Frameworks/ > Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ > numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc - > Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/ > 4.3.0/include/python2.5 -c src/_macosx.m -o build/temp.macosx-10.3- > fat-2.5/src/_macosx.o > src/_macosx.m:1885: error: syntax error before ‘setfont’ > src/_macosx.m: In function ‘setfont’: > src/_macosx.m:1895: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:1895: error: (Each undeclared identifier is reported > only once > src/_macosx.m:1895: error: for each function it appears in.) > src/_macosx.m:1895: error: syntax error before ‘font’ > src/_macosx.m:2095: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m: In function ‘GraphicsContext_draw_text’: > src/_macosx.m:2138: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2138: error: syntax error before ‘font’ > src/_macosx.m:2163: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2168: warning: assignment makes pointer from integer > without a cast > src/_macosx.m:2170: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2171: error: ‘kCTForegroundColorAttributeName’ > undeclared (first use in this function) > src/_macosx.m:2191: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2191: error: syntax error before ‘line’ > src/_macosx.m:2194: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m: In function > ‘GraphicsContext_get_text_width_height_descent’: > src/_macosx.m:2238: error: ‘CTFontRef’ undeclared (first use in this > function) > src/_macosx.m:2238: error: syntax error before ‘font’ > src/_macosx.m:2251: error: ‘font’ undeclared (first use in this > function) > src/_macosx.m:2256: error: ‘kCTFontAttributeName’ undeclared (first > use in this function) > src/_macosx.m:2274: error: ‘CTLineRef’ undeclared (first use in this > function) > src/_macosx.m:2274: error: syntax error before ‘line’ > src/_macosx.m:2277: error: ‘line’ undeclared (first use in this > function) > src/_macosx.m:2285: error: incompatible types in assignment > error: command 'gcc' failed with exit status 1 > > > > ------------------------------------------------------------------------------ > 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-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
I'm attempting to build matplotlib from source (0.99.0 from sourceforge) on Mac OS 10.5, and I'm getting the build output below (with errors). Is there some setting I need to make for the mac OS backend? --Mike = = = = ======================================================================== BUILDING MATPLOTLIB matplotlib: 0.99.0 python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 2009, 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. build 5370)] platform: darwin REQUIRED DEPENDENCIES numpy: 1.3.0 freetype2: 9.20.3 OPTIONAL BACKEND DEPENDENCIES libpng: 1.2.37 Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 wxPython: 2.8.7.1 * WxAgg extension not required for wxPython >= 2.8 Gtk+: no * Building for Gtk+ requires pygtk; you must be able * to "import gtk" in your build/install environment Mac OS X native: yes Qt: no Qt4: no Cairo: no OPTIONAL DATE/TIMEZONE DEPENDENCIES datetime: present, version unknown dateutil: 1.4 pytz: 2008c OPTIONAL USETEX DEPENDENCIES dvipng: no ghostscript: 8.54 latex: no [Edit setup.cfg to suppress the above messages] = = = = ======================================================================== pymods ['pylab'] packages ['matplotlib', 'matplotlib.backends', 'matplotlib.projections', 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid', 'matplotlib.sphinxext', 'matplotlib.numerix', 'matplotlib.numerix.mlab', 'matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', 'matplotlib.delaunay'] running build running build_py copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3- fat-2.5/matplotlib/mpl-data copying lib/matplotlib/mpl-data/matplotlib.conf -> build/ lib.macosx-10.3-fat-2.5/matplotlib/mpl-data running build_ext building 'matplotlib.backends._macosx' extension creating build/temp.macosx-10.3-fat-2.5 creating build/temp.macosx-10.3-fat-2.5/src creating build/temp.macosx-10.3-fat-2.5/CXX gcc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict- aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common - dynamic -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include - DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/ Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/ local/include -I/usr/include -I/sw/include -I. -I/Library/Frameworks/ Python.framework/Versions/4.3.0/lib/python2.5/site-packages/ numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc - Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/ 4.3.0/include/python2.5 -c src/_macosx.m -o build/temp.macosx-10.3- fat-2.5/src/_macosx.o src/_macosx.m:1885: error: syntax error before ‘setfont’ src/_macosx.m: In function ‘setfont’: src/_macosx.m:1895: error: ‘CTFontRef’ undeclared (first use in this function) src/_macosx.m:1895: error: (Each undeclared identifier is reported only once src/_macosx.m:1895: error: for each function it appears in.) src/_macosx.m:1895: error: syntax error before ‘font’ src/_macosx.m:2095: error: ‘font’ undeclared (first use in this function) src/_macosx.m: In function ‘GraphicsContext_draw_text’: src/_macosx.m:2138: error: ‘CTFontRef’ undeclared (first use in this function) src/_macosx.m:2138: error: syntax error before ‘font’ src/_macosx.m:2163: error: ‘font’ undeclared (first use in this function) src/_macosx.m:2168: warning: assignment makes pointer from integer without a cast src/_macosx.m:2170: error: ‘kCTFontAttributeName’ undeclared (first use in this function) src/_macosx.m:2171: error: ‘kCTForegroundColorAttributeName’ undeclared (first use in this function) src/_macosx.m:2191: error: ‘CTLineRef’ undeclared (first use in this function) src/_macosx.m:2191: error: syntax error before ‘line’ src/_macosx.m:2194: error: ‘line’ undeclared (first use in this function) src/_macosx.m: In function ‘GraphicsContext_get_text_width_height_descent’: src/_macosx.m:2238: error: ‘CTFontRef’ undeclared (first use in this function) src/_macosx.m:2238: error: syntax error before ‘font’ src/_macosx.m:2251: error: ‘font’ undeclared (first use in this function) src/_macosx.m:2256: error: ‘kCTFontAttributeName’ undeclared (first use in this function) src/_macosx.m:2274: error: ‘CTLineRef’ undeclared (first use in this function) src/_macosx.m:2274: error: syntax error before ‘line’ src/_macosx.m:2277: error: ‘line’ undeclared (first use in this function) src/_macosx.m:2285: error: incompatible types in assignment error: command 'gcc' failed with exit status 1
On Wed, Aug 19, 2009 at 6:52 PM, Ryan May<rm...@gm...> wrote: > On Wed, Aug 19, 2009 at 5:35 PM, Darren Dale <dsd...@gm...> wrote: >> >> Ryan, >> >> I don't think these calls should be removed. Would you convert them to >> asanyarray() instead? That will preserve the masked arrays. > > Darren, > > I couldn't find a case where those calls weren't already duplicated when > set_data() was called. According to the code, np.asarray() will be called > if ma.isMaskedArray() returns false. Am I missing something? No, I didn't realize it was called in set_data.
On Wed, Aug 19, 2009 at 5:35 PM, Darren Dale <dsd...@gm...> wrote: > Ryan, > > I don't think these calls should be removed. Would you convert them to > asanyarray() instead? That will preserve the masked arrays. > Darren, I couldn't find a case where those calls weren't already duplicated when set_data() was called. According to the code, np.asarray() will be called if ma.isMaskedArray() returns false. Am I missing something? Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma
Ryan, I don't think these calls should be removed. Would you convert them to asanyarray() instead? That will preserve the masked arrays. Darren > Log Message: > ----------- > Remove calls to np.asarray(). This was breaking the use of masked arrays in calls to set_[x|y]data() and is handled appropriately already by set_data(). > > Modified Paths: > -------------- > branches/v0_99_maint/lib/matplotlib/lines.py > > Modified: branches/v0_99_maint/lib/matplotlib/lines.py > =================================================================== > --- branches/v0_99_maint/lib/matplotlib/lines.py 2009年08月18日 22:18:59 UTC (rev 7505) > +++ branches/v0_99_maint/lib/matplotlib/lines.py 2009年08月19日 07:56:33 UTC (rev 7506) > @@ -843,7 +843,6 @@ > > ACCEPTS: 1D array > """ > - x = np.asarray(x) > self.set_data(x, self._yorig) > > def set_ydata(self, y): > @@ -852,7 +851,6 @@ > > ACCEPTS: 1D array > """ > - y = np.asarray(y) > self.set_data(self._xorig, y) > > def set_dashes(self, seq): > > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > ------------------------------------------------------------------------------ > 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-checkins mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins > -- "In our description of nature, the purpose is not to disclose the real essence of the phenomena but only to track down, so far as it is possible, relations between the manifold aspects of our experience" - Niels Bohr "It is a bad habit of physicists to take their most successful abstractions to be real properties of our world." - N. David Mermin "Once we have granted that any physical theory is essentially only a model for the world of experience, we must renounce all hope of finding anything like the correct theory ... simply because the totality of experience is never accessible to us." - Hugh Everett III
Hi Eric, I have been trying to do the same on my own machine and have run into the same problems. I originally tried to rebuild libpng etc for both i386 and ppc, which worked. The MPL build then went smoothly, but when I tried to import matplotlib.pyplot, I got the following error (see my post from 07/30/09): ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so, 2): Symbol not found: _png_create_info_struct Referenced from: /Library/Frameworks/Python.framework/Versions/4.0.30002/lib/python2.5/site-packages/matplotlib/_png.so Expected in: /usr/local/lib/libpng12.0.dylib Anyway, I just tried your method, and the build breaks. I am using the enthought python distribution on Mac OS X 10.5. I checked out a fresh copy of MPL and edited setupext.py so that the 'darwin' key only has '/usr/X11R6' and nothing else. The output of the build below: The command I ran was: env ARCHFLAGS='-arch i386' CFLAGS="-Os -arch i386" LDFLAGS="-Os -arch i386" python setup.py build The output was: ============================================================================ BUILDING MATPLOTLIB matplotlib: 1.0.svn python: 2.5.4 |EPD_Py25 4.3.0| (r254:67916, May 17 2009, 20:07:12) [GCC 4.0.1 (Apple Computer, Inc. build 5370)] platform: darwin REQUIRED DEPENDENCIES numpy: 1.3.0 freetype2: 9.20.3 OPTIONAL BACKEND DEPENDENCIES libpng: 1.2.38 Tkinter: Tkinter: 67737, Tk: 8.4, Tcl: 8.4 wxPython: 2.8.7.1 * WxAgg extension not required for wxPython >= 2.8 Gtk+: no * Building for Gtk+ requires pygtk; you must be able * to "import gtk" in your build/install environment Mac OS X native: yes Qt: no Qt4: no Cairo: no OPTIONAL DATE/TIMEZONE DEPENDENCIES datetime: present, version unknown dateutil: 1.4 pytz: 2008c OPTIONAL USETEX DEPENDENCIES dvipng: 1.11 ghostscript: 8.62 latex: 3.1415926 [Edit setup.cfg to suppress the above messages] ============================================================================ pymods ['pylab'] packages ['matplotlib', 'matplotlib.backends', 'matplotlib.projections', 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid', 'matplotlib.sphinxext', 'matplotlib.numerix', 'matplotlib.numerix.mlab', ' matplotlib.numerix.ma', 'matplotlib.numerix.linear_algebra', 'matplotlib.numerix.random_array', 'matplotlib.numerix.fft', 'matplotlib.delaunay'] running build running build_py creating build creating build/lib.macosx-10.3-fat-2.5 copying lib/pylab.py -> build/lib.macosx-10.3-fat-2.5 creating build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/_cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/_mathtext_data.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/_pylab_helpers.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/afm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/artist.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/axes.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/axis.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/backend_bases.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/bezier.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/blocking_input.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/cbook.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/cm.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/collections.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/colorbar.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/colors.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/contour.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/dates.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/docstring.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/dviread.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/figure.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/finance.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/font_manager.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/fontconfig_pattern.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/hatch.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/image.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/legend.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/lines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/mathtext.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/mlab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/mpl.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/offsetbox.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/patches.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/path.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/pylab.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/pyparsing.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/pyplot.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/quiver.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/rcsetup.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/scale.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/spines.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/table.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/texmanager.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/text.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/ticker.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/tight_bbox.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/transforms.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/type1font.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/units.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/widgets.py -> build/lib.macosx-10.3-fat-2.5/matplotlib copying lib/matplotlib/windowing.py -> build/lib.macosx-10.3-fat-2.5/matplotlib creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_agg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_cairo.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_cocoaagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_emf.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_fltkagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_gdk.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_gtk.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_gtkagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_gtkcairo.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_macosx.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_mixed.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_pdf.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_ps.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_qt.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_qt4.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_qt4agg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_qtagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_svg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_template.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_tkagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_wx.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/backend_wxagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends copying lib/matplotlib/backends/tkagg.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends creating build/lib.macosx-10.3-fat-2.5/matplotlib/projections copying lib/matplotlib/projections/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/projections copying lib/matplotlib/projections/geo.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/projections copying lib/matplotlib/projections/polar.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/projections creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits copying lib/mpl_toolkits/exceltools.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits copying lib/mpl_toolkits/gtktools.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/__init__.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/art3d.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/axes3d.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/axis3d.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d copying lib/mpl_toolkits/mplot3d/proj3d.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/mplot3d creating build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/__init__.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/angle_helper.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_divider.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_grid.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axes_size.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/axislines.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/clip_path.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/grid_finder.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/inset_locator.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> build/lib.macosx-10.3-fat-2.5/mpl_toolkits/axes_grid creating build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext copying lib/matplotlib/sphinxext/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext copying lib/matplotlib/sphinxext/mathmpl.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext copying lib/matplotlib/sphinxext/only_directives.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext copying lib/matplotlib/sphinxext/plot_directive.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/sphinxext creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix copying lib/matplotlib/numerix/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix copying lib/matplotlib/numerix/_sp_imports.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab copying lib/matplotlib/numerix/mlab/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/mlab creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma copying lib/matplotlib/numerix/ma/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/ma creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra copying lib/matplotlib/numerix/linear_algebra/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/linear_algebra creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array copying lib/matplotlib/numerix/random_array/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/random_array creating build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft copying lib/matplotlib/numerix/fft/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/numerix/fft creating build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay copying lib/matplotlib/delaunay/__init__.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay copying lib/matplotlib/delaunay/interpolate.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay copying lib/matplotlib/delaunay/testfuncs.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay copying lib/matplotlib/delaunay/triangulate.py -> build/lib.macosx-10.3-fat-2.5/matplotlib/delaunay creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/afm creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/pdfcorefonts creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1Sym.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz1SymBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2Sym.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz2SymBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3Sym.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz3SymBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4Sym.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz4SymBol.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/STIXSiz5Sym.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/Vera.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf copying lib/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/fonts/ttf creating build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_close.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_down.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_left.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_refresh.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_right.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_save_as.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_up.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_zoom-in.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_zoom-out.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.xpm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/matplotlib.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/back.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/filesave.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/forward.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/hand.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/home.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/move.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_close.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_down.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_left.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_refresh.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_right.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_save_as.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_up.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_zoom-in.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/stock_zoom-out.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/subplots.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/images/zoom_to_rect.ppm -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data/images copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data copying lib/matplotlib/mpl-data/matplotlib.conf -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data copying lib/matplotlib/mpl-data/lineprops.glade -> build/lib.macosx-10.3-fat-2.5/matplotlib/mpl-data creating build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib copying lib/matplotlib/backends/Matplotlib.nib/classes.nib -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib copying lib/matplotlib/backends/Matplotlib.nib/info.nib -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib copying lib/matplotlib/backends/Matplotlib.nib/keyedobjects.nib -> build/lib.macosx-10.3-fat-2.5/matplotlib/backends/Matplotlib.nib running build_ext building 'matplotlib.ft2font' extension creating build/temp.macosx-10.3-fat-2.5 creating build/temp.macosx-10.3-fat-2.5/src creating build/temp.macosx-10.3-fat-2.5/CXX gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/ft2font.cpp -o build/temp.macosx-10.3-fat-2.5/src/ft2font.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/mplutils.cpp -o build/temp.macosx-10.3-fat-2.5/src/mplutils.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c CXX/cxx_extensions.cxx -o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c CXX/cxxsupport.cxx -o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c CXX/IndirectPythonInterface.cxx -o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c CXX/cxxextensions.c -o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/ft2font.o build/temp.macosx-10.3-fat-2.5/src/mplutils.o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/local/lib -L/usr/X11R6/lib -lfreetype -lz -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/ft2font.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/ft2font.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is not of required architecture ld: warning in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not of required architecture ld: warning in /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib, file is not of required architecture building 'matplotlib.ttconv' extension creating build/temp.macosx-10.3-fat-2.5/ttconv gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/_ttconv.cpp -o build/temp.macosx-10.3-fat-2.5/src/_ttconv.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c ttconv/pprdrv_tt.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c ttconv/pprdrv_tt2.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c ttconv/ttutil.cpp -o build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/_ttconv.o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/ttconv.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/_ttconv.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/pprdrv_tt2.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/ttconv/ttutil.o, file is not of required architecture building 'matplotlib._cntr' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/cntr.c -o build/temp.macosx-10.3-fat-2.5/src/cntr.o gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/cntr.o -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/_cntr.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/cntr.o, file is not of required architecture building 'matplotlib._delaunay' extension creating build/temp.macosx-10.3-fat-2.5/lib creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib creating build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c lib/matplotlib/delaunay/_delaunay.cpp -o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c lib/matplotlib/delaunay/VoronoiDiagramGenerator.cpp -o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c lib/matplotlib/delaunay/delaunay_utils.cpp -o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c lib/matplotlib/delaunay/natneighbors.cpp -o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/_delaunay.so ld: warning in build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/_delaunay.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/VoronoiDiagramGenerator.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/delaunay_utils.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/lib/matplotlib/delaunay/natneighbors.o, file is not of required architecture building 'matplotlib.nxutils' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/nxutils.c -o build/temp.macosx-10.3-fat-2.5/src/nxutils.o gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/nxutils.o -L/usr/X11R6/lib -o build/lib.macosx-10.3-fat-2.5/matplotlib/nxutils.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/nxutils.o, file is not of required architecture building 'matplotlib._path' extension creating build/temp.macosx-10.3-fat-2.5/agg24 creating build/temp.macosx-10.3-fat-2.5/agg24/src gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_curves.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_bezier_arc.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_trans_affine.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_vcgen_stroke.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/agg_py_transforms.cpp -o build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/path_cleanup.cpp -o build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/path.cpp -o build/temp.macosx-10.3-fat-2.5/src/path.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o build/temp.macosx-10.3-fat-2.5/src/path.o -L/usr/X11R6/lib -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/_path.so ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/path_cleanup.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/path.o, file is not of required architecture building 'matplotlib.backends._backend_agg' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_vcgen_dash.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c agg24/src/agg_image_filters.cpp -o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/backend_agg.cpp -o build/temp.macosx-10.3-fat-2.5/src/backend_agg.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o build/temp.macosx-10.3-fat-2.5/src/mplutils.o build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o build/temp.macosx-10.3-fat-2.5/src/backend_agg.o -L/usr/X11R6/lib -L/usr/local/lib -L/usr/X11R6/lib -lstdc++ -lm -lfreetype -lz -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/backends/_backend_agg.so ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_curves.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_dash.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_vcgen_stroke.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/agg_py_transforms.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/backend_agg.o, file is not of required architecture ld: warning in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libfreetype.dylib, file is not of required architecture ld: warning in /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib, file is not of required architecture building 'matplotlib._image' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/image.cpp -o build/temp.macosx-10.3-fat-2.5/src/image.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/image.o build/temp.macosx-10.3-fat-2.5/src/mplutils.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/X11R6/lib -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/_image.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/image.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_trans_affine.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_image_filters.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/agg24/src/agg_bezier_arc.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is not of required architecture building 'matplotlib._png' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/usr/local/include/libpng12 -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/include/python2.5 -c src/_png.cpp -o build/temp.macosx-10.3-fat-2.5/src/_png.o g++ -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -L/usr/local/lib -L/Library/Frameworks/Python.framework/Versions/4.3.0/lib -bundle -undefined dynamic_lookup -Os -arch i386 -Os -arch i386 build/temp.macosx-10.3-fat-2.5/src/_png.o build/temp.macosx-10.3-fat-2.5/src/mplutils.o build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o -L/usr/local/lib -L/usr/X11R6/lib -lpng12 -lz -lstdc++ -lm -o build/lib.macosx-10.3-fat-2.5/matplotlib/_png.so ld: warning in build/temp.macosx-10.3-fat-2.5/src/_png.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/src/mplutils.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxx_extensions.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxsupport.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/IndirectPythonInterface.o, file is not of required architecture ld: warning in build/temp.macosx-10.3-fat-2.5/CXX/cxxextensions.o, file is not of required architecture ld: warning in /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks/Python.framework/Versions/4.3.0/lib/libz.dylib, file is not of required architecture building 'matplotlib.backends._tkagg' extension gcc -DNDEBUG -g -O3 -I/tmp/_py/libraries/usr/local/include -Os -arch i386 -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -I/System/Library/Frameworks/Tcl.framework/Headers -I/System/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/System/Library/Frameworks/Tk.framework/Headers -I/System/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/X11R6/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -Isrc -Iagg24/include -I. -I/Library/Frameworks/Python.framework/Versions/4.3.0/lib/python2.5/site-packages/numpy-1.3.0n1-py2.5-macosx-10.3-fat.egg/numpy/core/include -I/usr/local/include/freetype2 -I/u... [truncated message content]
I'm plotting upper and lower limits via the uplims/lolims keywords to the errorbar function and have noticed two issues. First, the direction of the arrows produced by these keywords is opposite to what one would expect. For example, lolims=True produces an downward-pointing arrow. A "lower limit" means the exact value is unknown, but it is known not be lower than a particular value. This should be denoted by an *upward* arrow whose starting point (arrow base) is at the value of the lower limit. I noticed that the arrows are reversed for all of the uplims, lolims, xuplims, and xlolims keywords to errorbar. Secondly, the arrows (arrow base) should begin at the value of the limit. Currently the arrows are centered at the input limit value. Thanks, Larry
Just got a new Mac, and went with Python 2.6 from python.org on OS X 10.5. My experience building Matplotlib was less than smooth, and I thought I'd pass along what eventually wound up working. To summarize: 1. Rolling your own libpng and freetype in /usr/local appears to lead to a lot of architecture mismatch heartache, even though the libs compile fine out of the box 2. The official recommendation at http://matplotlib.sourceforge.net/users/installing.html#build-osx doesn't work because OS X doesn't ship with wget and because the download URLs for zlib, libpng, and freetype are broken in matplotlib/release/osx 3. I had success by following the instructions at http://ipython.scipy.org/moin/Py4Science/InstallationOSX, but I had to change the build command to: env ARCHFLAGS='-arch i386' CFLAGS="-Os -arch i386" LDFLAGS="-Os -arch i386" python setup.py build The ARCHFLAGS suggestion was taken from http://www.nabble.com/Building-matplotlib-on-os-x-to24942879.html, which had a few other scary ideas that I didn't have the heart to try. This built (I think) an intel-only i386 (32 bit) Matplotlib, which is fine for my local use. If I can help debug a better build process, let me know; I can probably help test for the next week on this new machine. -Eric
Hi all, Has anybody been able to confirm this as a bug? The test script is attached to the tracker item: https://sourceforge.net/tracker/?func=detail&aid=2832896&group_id=80706&atid=560720 I did some digging to see if I could figure out how the image scale was being mangled. I had a hunch that it was due to some interaction between fixed-72-dpi code, rounding the number of pixels, and subsequent rescaling. However, the image scale still seems to be off even when the dpi setting is a multiple of 72. Mike On Aug 6, 2009, at 10:42 AM, Michael Fitzgerald wrote: > > I've added this to the sourceforge bug tracker, ID 2832896. > > Mike > > > On Aug 5, 2009, at 3:32 PM, Michael Fitzgerald wrote: > >> >> Hi all, >> >> I've come across an apparent bug in imshow when outputting to PDF and EPS files. (I haven't tested other vector formats.) It manifests as a small scaling error between the raster image and the axes coordinates. >> >> I have attached a test script to illustrate the problem. The (correct) PNG output file shows a green 'X' at the common point between four pixels near the center of the raster image. The extent is chosen such that the coordinates refer to pixel centers. The PDF and EPS output files show a misalignment between the X and the pixel boundaries -- zoom in to see it clearly. Also, the topmost row and rightmost column appear truncated. >> >> I am using svn r7395. >> >> Thanks for the attention, >> Mike >> >> <test_image_offset.py> > >
Hi, I just noticed that some links in the axes_grid docs are broken, but I have no idea what is wrong. The broken links are those associated with the "plot" directive, i.e., links to its source code, hires.png and pdf. (The links in the Gallery are fine, only those in axes_grid docs). For example, the first plot in the overview page (http://matplotlib.sourceforge.net/mpl_toolkits/axes_grid/users/overview.html#axesgrid) has a link to it source file (which is incorrect) as http://matplotlib.sourceforge.net/mpl_toolkits/plot_directive/mpl_toolkits/axes_grid/figures/simple_axesgrid.py The correct link is http://matplotlib.sourceforge.net/plot_directive/mpl_toolkits/axes_grid/figures/simple_axesgrid.py Note that the wrong link has extra "mpl_toolkits" before "plot_directive". The relevant rest source for this plot is .. plot:: mpl_toolkits/axes_grid/figures/simple_axesgrid.py :include-source: I tried to change the path to "mpl_examples/axes_grid/simpl_axesgrid.py", but the links are still broken. Any idea how to fix this? Thanks in advance, -JJ
Hello Gael, Okay, I've updated the two files I modified here: http://sites.google.com/site/jacksankey/files/matplotlib.zip?attredirects=0 Sorry I can't figure out how to compile. I wish it was possible to have an SVN containing also the windows binaries. Too bad we all can't just run Linux. Anyway, I tested the pants off this using an imshow() color plot this morning, and it works well on windows XP/wxAgg. There are two things worth mentioning: - For some reason, the enter key does not generate an event for me. I've added "escape" as another possible keyboard stop event generator. - The backspace key causes the plot to undo a zoom. This confused me for an hour. Use delete! - I'm fairly certain the mouse numbers are different for windows. I can't make the middle mouse button do anything. If you don't wind up adding all these changes, in the very least for the upcoming release, can you please add "escape" to the list of keys that will exit the collection of data points? That would amount to changing one line in key_event() from elif key == 'enter' to elif key in ['escape', 'enter']: The third point above is the reason I looked into this in the first place; I couldn't stop collecting! :) Adding 'escape' would make ginput() functional enough. (I also use key = event.key.lower() to be safe.) Thanks! -Jack On Thu, Aug 13, 2009 at 1:45 PM, Gael Varoquaux < gae...@no...> wrote: > On Tue, Aug 11, 2009 at 07:53:29PM -0400, Jack Sankey wrote: > > Sorry for spamming, but I have another addition to > > BlockingMouseInput.add_click, that fixes the problem of the graphics > > jumping around while ginputting. This makes it much easier to zoom in > on > > an imshow() plot and click a bunch of points, for example (it used to > zoom > > all the way out!): > > Hey Jack, > > If you cannot send an 'svn diff' of your changes, would you mind sending > the modified files all together? It is hard to review changes when > gathering them from various mails: so easy to forget a change. > > Cheers, > > Gaël >
Reinier Heeres wrote: > Hi Eric, all, > > I've attached a new patch where I also allow two extra ways to define > color maps: > - by specifying (value, color) pairs, giving a linearly interpolated map. > - by specifying functions (gnuplot default functions are included) > > I've added a few colormaps: afmhot, bwr, brg, gnuplot, gnuplot2, > ocean, rainbow, seismic, terrain > > I refactored a few others: flag, prism, gist_gray, gist_heat, > gist_rainbow, gist_stern, gist_yarg. This saves about ~3000 lines... > (And the differences are very minor) > > You can compare them with the old scales by running > examples/pylab_examples/show_colormaps.py both with and without the > attached patch. > > What do you think? If it's ok, shall I push to trunk or v99? Reinier, First, this is a feature, not a bugfix, so it should go to the trunk. Second, before it goes, I have some suggestions: 1) Avoid using the types module; it is too specific, too restrictive. e.g. instead of + if type(val) is types.FunctionType: use if callable(val): instead of + if type(datad[cmapname]) is types.DictType: you might use cmapspec = datad[cmapname] if 'red' in cmapspec: .... else: .... In each case, you may need to think about what kinds of arguments might be encountered, and what is the simplest and safest way to sort them out. 2) Related to the above, we really don't want to make distinctions among types of sequences unless there is no alternative--it is too confusing for users to remember that this has to be a tuple but that has to be a list, and the other thing has to be an ndarray. (Such distinctions in numpy's indexing rules make the indexing very flexible and powerful--but it is also very hard to remember exactly what those rules are. For numpy indexing, there was probably no alternative; for us there is.) 3) This statement from LinearSegmentedColormap.from_list if len(colors[0]) == 2: will fail with valid inputs, e.g. ['.2', 'r'] (recall that '.2' is a specification for gray on a 0-1 scale.) What might work for parsing the colors argument is to take advantage of numpy's ability to figure out the dimensions of a possibly nested sequence: colors = np.asarray(colors) if colors.ndim == 2: ... else: # assume it is 1-D, colors only ... Turning arguments into ndarrays often simplifies the rest of the code, so long as one does not need to change the dimensions subsequently--lists are great for appending, deleting, etc. Sequence operations with ndarrays may be slower than using lists, tuples, and zip, but this doesn't matter at all in this part of the code. 4) This point could be considered now, or deferred: I originally tacked on the from_list method. It might make sense to deprecate it, and simply fold the logic into the __init__ method. One might want to keep the logic broken out into a method, and call that method to process the segmentdata argument. (The code in __init__ methods sometimes gets long and hard to follow; readability can be improved by separating parts out into methods, often private ones, and calling those in __init__.) 5) In _cm.py, if the maps you condensed are already identified in comments as to their sources, then you should add to those comments a note on how you modified them. Thank you for your work on this. Eric > > Regards, > Reinier > > On Thu, Aug 13, 2009 at 1:16 AM, Eric Firing<ef...@ha...> wrote: >> Reinier Heeres wrote: >>> Hi all, >>> >>> I would like to propose the attached patch to be able to use a gamma >>> value for color maps. This will make it simple to make your color >>> scale more 'sensitive' at the bottom or at the top, as can be seen in >>> the attached example. This could in principle also be solved by adding >>> a gamma normalizer, but I think that applying it to a color map is >>> quite coming practice, so in this case the preferred way. >> Your patch looks reasonable to me. >>> I'd also like to add a few extra color maps (at least one plain >>> blue-white-red and one with darker shades at the high and low ends, as >> Good. >> >>> in the attachment). I also remember a particular one ('terrain') in a >>> measurement program called 'Igor' that would be nice. >> Is there any potential licensing problem? I hope not. I presume you would >> copy the effect, not any particular set of numbers extracted from Igor. >> >>> Looking at _cm.py, I would guess that could be done a bit more >>> efficient than the current 5880 lines as well by just specifying a few >>> colors and using LinearSegmentedColormap.from_list(). Is it ok if I >>> try to refactor that? >> You mean take the colormaps that have a huge number of color dictionary >> entries in _cm.py, and subsample them down to something reasonable? Please >> do! I always hated those blocks of numbers, but never enough to motivate me >> to do something about them other than a little reformatting. >> >> It sounds like you are talking about going farther than that, which might be >> fine but might make things more complicated. As it is now, all the built-in >> colormaps are associated with color dictionaries for direct use in >> LinearSegmentedColormap. If you make two styles, one based on the >> dictionaries (which allows discontinuities) and one based on from_list >> (which does not), then you need to keep track of which is which. Is it >> worth it? I am inclined to stick with the cdict approach. >> >> It looks like an obvious addition would a function that takes a list of >> breakpoints (starting with 0 and ending with 1) and a matching list of >> colors and generates the corresponding cdict for continuous mapping. >> >> Eric >> >>> Let me know what you think. >>> >>> Cheers, > >
Hi Eric, all, I've attached a new patch where I also allow two extra ways to define color maps: - by specifying (value, color) pairs, giving a linearly interpolated map. - by specifying functions (gnuplot default functions are included) I've added a few colormaps: afmhot, bwr, brg, gnuplot, gnuplot2, ocean, rainbow, seismic, terrain I refactored a few others: flag, prism, gist_gray, gist_heat, gist_rainbow, gist_stern, gist_yarg. This saves about ~3000 lines... (And the differences are very minor) You can compare them with the old scales by running examples/pylab_examples/show_colormaps.py both with and without the attached patch. What do you think? If it's ok, shall I push to trunk or v99? Regards, Reinier On Thu, Aug 13, 2009 at 1:16 AM, Eric Firing<ef...@ha...> wrote: > Reinier Heeres wrote: >> >> Hi all, >> >> I would like to propose the attached patch to be able to use a gamma >> value for color maps. This will make it simple to make your color >> scale more 'sensitive' at the bottom or at the top, as can be seen in >> the attached example. This could in principle also be solved by adding >> a gamma normalizer, but I think that applying it to a color map is >> quite coming practice, so in this case the preferred way. > > Your patch looks reasonable to me. >> >> I'd also like to add a few extra color maps (at least one plain >> blue-white-red and one with darker shades at the high and low ends, as > > Good. > >> in the attachment). I also remember a particular one ('terrain') in a >> measurement program called 'Igor' that would be nice. > > Is there any potential licensing problem? I hope not. I presume you would > copy the effect, not any particular set of numbers extracted from Igor. > >> >> Looking at _cm.py, I would guess that could be done a bit more >> efficient than the current 5880 lines as well by just specifying a few >> colors and using LinearSegmentedColormap.from_list(). Is it ok if I >> try to refactor that? > > You mean take the colormaps that have a huge number of color dictionary > entries in _cm.py, and subsample them down to something reasonable? Please > do! I always hated those blocks of numbers, but never enough to motivate me > to do something about them other than a little reformatting. > > It sounds like you are talking about going farther than that, which might be > fine but might make things more complicated. As it is now, all the built-in > colormaps are associated with color dictionaries for direct use in > LinearSegmentedColormap. If you make two styles, one based on the > dictionaries (which allows discontinuities) and one based on from_list > (which does not), then you need to keep track of which is which. Is it > worth it? I am inclined to stick with the cdict approach. > > It looks like an obvious addition would a function that takes a list of > breakpoints (starting with 0 and ending with 1) and a matching list of > colors and generates the corresponding cdict for continuous mapping. > > Eric > >> >> Let me know what you think. >> >> Cheers, > -- Reinier Heeres Tel: +31 6 10852639
Jason R. Coombs wrote: > It appears that the docstring.py module somehow got omitted from the rev5 > patch (I was working from two different machines, and one didn't have it > added to SVN). > > So I'm attaching missing_docstring.patch which is a patch against the latest > trunk to include the latest version of docstring.py. It's functionally the > same as the version that Eric has tested against in rev 4, but a > documentation string has changed in the last method. > > Sorry for the mixup. > > Jason Thank you. When I committed the rev5 patch earlier, I did not notice that I needed to do "svn add docstring.py", so it was not included at all. Now I think everything is in place, as of 7496. Eric
It appears that the docstring.py module somehow got omitted from the rev5 patch (I was working from two different machines, and one didn't have it added to SVN). So I'm attaching missing_docstring.patch which is a patch against the latest trunk to include the latest version of docstring.py. It's functionally the same as the version that Eric has tested against in rev 4, but a documentation string has changed in the last method. Sorry for the mixup. Jason -----Original Message----- From: Eric Firing [mailto:ef...@ha...] Sent: Thursday, 13 August, 2009 21:33 To: Jason R. Coombs Cc: matplotlib development list Subject: Re: [matplotlib-devel] kwdoc processing with decorators Jason R. Coombs wrote: > I'm about to upload a new patch that implements some of the ideas John and > Darren have sent. Would you mind running the performance tests against that > one also? This new change has the potential to increase performance drag. Jason, There is a problem with rev4, running "ipython -pylab": In [1]:plot([1,2]) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /home/efiring/<ipython console> in <module>() /usr/local/lib/python2.6/dist-packages/matplotlib/docstring.pyc in <lambda>(target) 334 # language" - GVR. I think functools might help when Python 2.5 335 # is required. --> 336 return lambda target: dedent(copy(source)(target)) 337 from matplotlib import cbook 338 /usr/local/lib/python2.6/dist-packages/matplotlib/docstring.pyc in do_copy(target) 422 def do_copy(target): 423 if source.__doc__: --> 424 target.__doc__ = source.__doc__ 425 return target 426 return do_copy AttributeError: 'list' object attribute '__doc__' is read-only Eric
John Hunter <jd...@gm...> writes: > Would you like to take a crack at these fixes? [...] I would be happy > to get as many fixes and patches in next week and try to get one > bugfix 0.99.1 out before scipy. I started fixing the issues. It's not complete yet, but the current state should be usable. However, this work is not on the 0.99 branch, only on the trunk. Handling the off-line use case is harder than I thought: at least on my laptop the urlopen call just blocks, so there needs to be a timeout mechanism. -- Jouni K. Seppänen http://www.iki.fi/jks