Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-04 Thread KURT PETERS
Jeff, Got it and it seemed to install.

Well... as luck would have it, I still have a problem.  I think I know what 
is causing it, though.  I was using the high-res data, and the upgrade 
nukes that data.  Here's the message I'm getting along with the code 
snippet, just to make sure I'm on the right track for a solution:

Exception in Tkinter callback
Traceback (most recent call last):
  File C:\Python25\Lib\lib-tk\Tkinter.py, line 1403, in __call__
return self.func(*args)
  File C:\Documents and 
Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
line 405, in callback
populate_banddata(fileToOpen)
  File C:\Documents and 
Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
line 383, in populate_banddata
populate_location_map(sheetnumber, sP, txInfo)
  File C:\Documents and 
Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
line 100, in populate_location_map
projection='lcc', lat_1=33, lat_2=45, lon_0=-95, resolution='l')
TypeError: 'module' object is not callable

Code Snippet:
m1 = basemap(llcrnrlon=-119, llcrnrlat=22, urcrnrlon=-64, urcrnrlat=49, 
\
 projection='lcc', lat_1=33, lat_2=45, lon_0=-95, 
resolution='l')
shp_info = 
m1.readshapefile(r'C:\Python25\Lib\basemap-0.99\examples\citiesx020', 
'states', drawbounds=True)


Any hints on what to do now that I am downloading the fullres?
Regards,
Kurt



-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread KURT PETERS
I tried to upgrade to the latest matplot lib (0.98 win32), which made me 
upgrade numpy (1.1.0).  I followed the advice of the install hints and 
deleted the old matplotlib folder in site-packages before running the 
windows installer.
  Unfortunately, I get this error when trying to run my program in Eclipse:

Traceback (most recent call last):
  File C:\Documents and 
Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
line 10, in module
import pylab as p
  File C:\Python25\Lib\site-packages\matplotlib\pylab.py, line 246, in 
module
from matplotlib.pyplot import *
  File C:\Python25\Lib\site-packages\matplotlib\pyplot.py, line 39, in 
module
new_figure_manager, draw_if_interactive, show = pylab_setup()
  File C:\Python25\Lib\site-packages\matplotlib\backends\__init__.py, line 
24, in pylab_setup
globals(),locals(),[backend_name])
  File 
C:\Python25\Lib\site-packages\matplotlib\backends\backend_gtkagg.py, line 
10, in module
from matplotlib.backends.backend_gtk import gtk, FigureManagerGTK, 
FigureCanvasGTK,\
  File C:\Python25\Lib\site-packages\matplotlib\backends\backend_gtk.py, 
line 6, in module
import gobject
ImportError: No module named gobject

Did I not update something correctly?
Regards,
Kurt



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread John Hunter
On Mon, Jun 2, 2008 at 10:41 AM, KURT PETERS [EMAIL PROTECTED] wrote:

  File C:\Python25\Lib\site-packages\matplotlib\backends\backend_gtk.py,
 line 6, in module
import gobject
 ImportError: No module named gobject

This is a problem with our installer since the default backend we have
set is GTKAgg (we usually set it to GTKAgg).  Fortunately, it is
relatively easy for you to fix:.  Edit
site-packages/matplotlib/mpl-data/matplotlib and change the 'backend :
GTKAgg' line to

  backend : TkAgg

Charlie -- we will need to roll out a new binary builds which fix this
ASAP because this will bite all the win32 users who don't have a
custom rc, which is most of them I suspect. We'll also need to check
the settings in the 91.3 release.  My apologies for not testing this
as you requested (I did test on linux though).  You probably will also
want to check the default backend for the OS X eggs too.

JDH

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread Les Schaffer
John Hunter wrote:
 This is a problem with our installer since the default backend we have
 set is GTKAgg (we usually set it to GTKAgg).  Fortunately, it is
 relatively easy for you to fix:.  Edit
 site-packages/matplotlib/mpl-data/matplotlib and change the 'backend :
 GTKAgg' line to

   backend : TkAgg


there are two files there: matplotlibrc and matplotlib.conf. is there a 
selection principle for choosing one or the other?

i moved matplotlibrc to the indicated folder, set backed to WXAgg and 
some of the examples run. but i am getting failures finding pylab when i 
run the pylab examples:

$ python geo_demo.py
Traceback (most recent call last):
  File geo_demo.py, line 4, in module
from pylab import *
ImportError: No module named pylab

am not sure why the interpreter isnt finding pylab module even tho, for 
example,  examples/{api, animation} runs, with a few exceptions.


Les

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread John Hunter
On Mon, Jun 2, 2008 at 12:09 PM, Les Schaffer [EMAIL PROTECTED] wrote:

 there are two files there: matplotlibrc and matplotlib.conf. is there a
 selection principle for choosing one or the other?

matplotlib.conf is used at build time, so you can ignore it with the
binary installer.

 i moved matplotlibrc to the indicated folder, set backed to WXAgg and some

By the way, on windows you can edit the rc file in place (ie leave it
in mpl-data).  I need to update the instructions in that file -- they
are out of date.

 of the examples run. but i am getting failures finding pylab when i run the
 pylab examples:

 $ python geo_demo.py
 Traceback (most recent call last):
  File geo_demo.py, line 4, in module
   from pylab import *
 ImportError: No module named pylab

 am not sure why the interpreter isnt finding pylab module even tho, for
 example,  examples/{api, animation} runs, with a few exceptions.


This is weird: it is working on my end once I update my backend
setting to TkAgg.  After running the 0.98 installer do you have
pylab.py in site-packages?  Make sure you remove all matplotlib traces
from site-packages before installing.

JDH

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread KURT PETERS
Thanks,
  I made that change after an unfruitful attempt at installing gtk, which 
should have worked in my estimation.  Now, at least I get by that original 
point.

   NOW basemaps won't work any more!  When I run, I get:

Traceback (most recent call last):
  File C:\Documents and 
Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
line 13, in module
from matplotlib.toolkits.basemap import Basemap as Basemap
ImportError: No module named toolkits.basemap

I'm supposing that I NOW have to reinstall basemaps. The basemaps installer 
won't work for me any more though  :-(
This is that message I get when trying to reinstall basemaps:

C:\Python25\Lib\basemap-0.99c:\Python25\python.exe setup.py install
checking for GEOS lib in /usr/local 
checking for GEOS lib in /sw 
checking for GEOS lib in /opt 
checking for GEOS lib in /opt/local 
checking for GEOS lib in C:\Documents and Settings\kpeters 
Traceback (most recent call last):
  File setup.py, line 80, in module
geos_include_dirs=[os.path.join(GEOS_dir,'include'),numpy.get_include()]
  File C:\Python25\lib\ntpath.py, line 90, in join
assert len(path)  0
TypeError: object of type 'NoneType' has no len()

  I hope no one else has this pain when upgrading.
Regards,
Kurt
Original Message Follows
From: John Hunter [EMAIL PROTECTED]
To: KURT PETERS [EMAIL PROTECTED], Charlie Moad [EMAIL PROTECTED]
CC: matplotlib-users@lists.sourceforge.net
Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy producing 
error
Date: Mon, 2 Jun 2008 11:01:48 -0500

On Mon, Jun 2, 2008 at 10:41 AM, KURT PETERS [EMAIL PROTECTED] wrote:

   File C:\Python25\Lib\site-packages\matplotlib\backends\backend_gtk.py,
  line 6, in module
 import gobject
  ImportError: No module named gobject

This is a problem with our installer since the default backend we have
set is GTKAgg (we usually set it to GTKAgg).  Fortunately, it is
relatively easy for you to fix:.  Edit
site-packages/matplotlib/mpl-data/matplotlib and change the 'backend :
GTKAgg' line to

   backend : TkAgg

Charlie -- we will need to roll out a new binary builds which fix this
ASAP because this will bite all the win32 users who don't have a
custom rc, which is most of them I suspect. We'll also need to check
the settings in the 91.3 release.  My apologies for not testing this
as you requested (I did test on linux though).  You probably will also
want to check the default backend for the OS X eggs too.

JDH



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread John Hunter
On Mon, Jun 2, 2008 at 12:10 PM, KURT PETERS [EMAIL PROTECTED] wrote:
 Thanks,
  I made that change after an unfruitful attempt at installing gtk, which
 should have worked in my estimation.  Now, at least I get by that original
 point.

  NOW basemaps won't work any more!  When I run, I get:

 Traceback (most recent call last):
  File C:\Documents and
 Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py,
 line 13, in module
   from matplotlib.toolkits.basemap import Basemap as Basemap
 ImportError: No module named toolkits.basemap

One of the api changes is that the import line for basemap (and all
matplotlib toolkits) is

  import mpl_toolkits.basemap

rather  than

  import matplotlib.toolkits.basemap

 I'm supposing that I NOW have to reinstall basemaps. The basemaps installer
 won't work for me any more though  :-(
 This is that message I get when trying to reinstall basemaps:
Traceback (most recent call last):
 File setup.py, line 80, in module
  geos_include_dirs=[os.path.join(GEOS_dir,'include'),numpy.get_include()]
 File C:\Python25\lib\ntpath.py, line 90, in join
 assert len(path)  0
 TypeError: object of type 'NoneType' has no len()

This is an error that you will get if you are trying to install
basemap yourself from source and the GEOS_DIR is set to None (Jeff, a
more helpful error would be good here).   I think we are still waiting
on a binary installer for basemap.

JDH

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread John Hunter
On Mon, Jun 2, 2008 at 12:28 PM, Jeff Whitaker [EMAIL PROTECTED] wrote:

 Kurt:  As you discovered, you'll need basemap 0.99 to use with matplotlib
 0.98.0.  I only have a source tarball on the sf site now, and you apparently
 are looking for the windows binary installer.  I hope to have that up
 sometime next week - problem is that the person whose PC  I use to build it
 is on vacation now.Perhaps someone will step up and build a basemap
 windows installer before then, or I can talk you through how to build one
 yourself with MingW32.

I've updated the newsbox on the website with a link to a brief text
document including this info for basemap users.

JDHr

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread Jeff Whitaker
KURT PETERS wrote:
 Thanks,
   I made that change after an unfruitful attempt at installing gtk, which 
 should have worked in my estimation.  Now, at least I get by that original 
 point.

NOW basemaps won't work any more!  When I run, I get:
   

Kurt:  As you discovered, you'll need basemap 0.99 to use with 
matplotlib 0.98.0.  I only have a source tarball on the sf site now, and 
you apparently are looking for the windows binary installer.  I hope to 
have that up sometime next week - problem is that the person whose PC  I 
use to build it is on vacation now.Perhaps someone will step up and 
build a basemap windows installer before then, or I can talk you through 
how to build one yourself with MingW32.

BTW;  with the new basemap you'll have to use

from mpl_toolkits.basemap import Basemap

instead of the old

from matplotlib.toolkits.basemap import Basemap

-Jeff
 Traceback (most recent call last):
   File C:\Documents and 
 Settings\kpeters\smworkspace\parsesmExcelFile\src\readParse\ExcelClass.py, 
 line 13, in module
 from matplotlib.toolkits.basemap import Basemap as Basemap
 ImportError: No module named toolkits.basemap

 I'm supposing that I NOW have to reinstall basemaps. The basemaps installer 
 won't work for me any more though  :-(
 This is that message I get when trying to reinstall basemaps:

 C:\Python25\Lib\basemap-0.99c:\Python25\python.exe setup.py install
 checking for GEOS lib in /usr/local 
 checking for GEOS lib in /sw 
 checking for GEOS lib in /opt 
 checking for GEOS lib in /opt/local 
 checking for GEOS lib in C:\Documents and Settings\kpeters 
 Traceback (most recent call last):
   File setup.py, line 80, in module
 geos_include_dirs=[os.path.join(GEOS_dir,'include'),numpy.get_include()]
   File C:\Python25\lib\ntpath.py, line 90, in join
 assert len(path)  0
 TypeError: object of type 'NoneType' has no len()

   I hope no one else has this pain when upgrading.
 Regards,
 Kurt
 Original Message Follows
 From: John Hunter [EMAIL PROTECTED]
 To: KURT PETERS [EMAIL PROTECTED], Charlie Moad [EMAIL PROTECTED]
 CC: matplotlib-users@lists.sourceforge.net
 Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy producing 
 error
 Date: Mon, 2 Jun 2008 11:01:48 -0500

 On Mon, Jun 2, 2008 at 10:41 AM, KURT PETERS [EMAIL PROTECTED] wrote:

File C:\Python25\Lib\site-packages\matplotlib\backends\backend_gtk.py,
   line 6, in module
  import gobject
   ImportError: No module named gobject

 This is a problem with our installer since the default backend we have
 set is GTKAgg (we usually set it to GTKAgg).  Fortunately, it is
 relatively easy for you to fix:.  Edit
 site-packages/matplotlib/mpl-data/matplotlib and change the 'backend :
 GTKAgg' line to

backend : TkAgg

 Charlie -- we will need to roll out a new binary builds which fix this
 ASAP because this will bite all the win32 users who don't have a
 custom rc, which is most of them I suspect. We'll also need to check
 the settings in the 91.3 release.  My apologies for not testing this
 as you requested (I did test on linux though).  You probably will also
 want to check the default backend for the OS X eggs too.

 JDH



 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 Matplotlib-users mailing list
 Matplotlib-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/matplotlib-users
   


-- 
Jeffrey S. Whitaker Phone  : (303)497-6313
Meteorologist   FAX: (303)497-6449
NOAA/OAR/PSD  R/PSD1Email  : [EMAIL PROTECTED]
325 BroadwayOffice : Skaggs Research Cntr 1D-113
Boulder, CO, USA 80303-3328 Web: http://tinyurl.com/5telg


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread Jeff Whitaker
KURT PETERS wrote:
 I am using 0.99. 
Kurt:  Not really. You tried to install it but the install failed.
  I ended up copying the toolkits directory from my old 
 installation of matplotlib to the new matplotlib directory and at least 
 things seem to be working (although the HD seems to churn a lot more).
   
Hmm.  I wouldn't expect this to work - there were changes in the 
matplotlib API in version 0.98.0 that should break the old version of 
basemap.
   Let me test this a little more and I'll let you know how that is working 
 for me (Windows could have started some other process in the background).
 Kurt
   
OK.

-Jeff
 Original Message Follows
 From: John Hunter [EMAIL PROTECTED]
 To: Jeff Whitaker [EMAIL PROTECTED]
 CC: KURT PETERS [EMAIL PROTECTED], [EMAIL PROTECTED], 
 matplotlib-users@lists.sourceforge.net
 Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy producing 
 error
 Date: Mon, 2 Jun 2008 12:38:15 -0500

 On Mon, Jun 2, 2008 at 12:28 PM, Jeff Whitaker [EMAIL PROTECTED] wrote:

   Kurt:  As you discovered, you'll need basemap 0.99 to use with matplotlib
   0.98.0.  I only have a source tarball on the sf site now, and you 
 apparently
   are looking for the windows binary installer.  I hope to have that up
   sometime next week - problem is that the person whose PC  I use to build 
 it
   is on vacation now.Perhaps someone will step up and build a basemap
   windows installer before then, or I can talk you through how to build one
   yourself with MingW32.

 I've updated the newsbox on the website with a link to a brief text
 document including this info for basemap users.

 JDHr



 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 Matplotlib-users mailing list
 Matplotlib-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/matplotlib-users
   


-- 
Jeffrey S. Whitaker Phone  : (303)497-6313
Meteorologist   FAX: (303)497-6449
NOAA/OAR/PSD  R/PSD1Email  : [EMAIL PROTECTED]
325 BroadwayOffice : Skaggs Research Cntr 1D-113
Boulder, CO, USA 80303-3328 Web: http://tinyurl.com/5telg


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread Les Schaffer
John Hunter wrote:
 By the way, on windows you can edit the rc file in place (ie leave it
 in mpl-data).  I need to update the instructions in that file -- they
 are out of date.
   

please do, they indicate movement is required.


 This is weird: it is working on my end once I update my backend
 setting to TkAgg. 

i tried TkAgg as well but still no go.
  After running the 0.98 installer do you have
 pylab.py in site-packages? 

yep, its right there. very weird.  does matplotlib fiddle with sys.path 
or some such?

 Make sure you remove all matplotlib traces
 from site-packages before installing.


i did that and re-installed, same problem.

Les

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread KURT PETERS
I am using 0.99.  I ended up copying the toolkits directory from my old 
installation of matplotlib to the new matplotlib directory and at least 
things seem to be working (although the HD seems to churn a lot more).
  Let me test this a little more and I'll let you know how that is working 
for me (Windows could have started some other process in the background).
Kurt

Original Message Follows
From: John Hunter [EMAIL PROTECTED]
To: Jeff Whitaker [EMAIL PROTECTED]
CC: KURT PETERS [EMAIL PROTECTED], [EMAIL PROTECTED], 
matplotlib-users@lists.sourceforge.net
Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy producing 
error
Date: Mon, 2 Jun 2008 12:38:15 -0500

On Mon, Jun 2, 2008 at 12:28 PM, Jeff Whitaker [EMAIL PROTECTED] wrote:

  Kurt:  As you discovered, you'll need basemap 0.99 to use with matplotlib
  0.98.0.  I only have a source tarball on the sf site now, and you 
apparently
  are looking for the windows binary installer.  I hope to have that up
  sometime next week - problem is that the person whose PC  I use to build 
it
  is on vacation now.Perhaps someone will step up and build a basemap
  windows installer before then, or I can talk you through how to build one
  yourself with MingW32.

I've updated the newsbox on the website with a link to a brief text
document including this info for basemap users.

JDHr



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread KURT PETERS
Unfortunately, I think someone else was on the maillist with a similar 
problem, and perhaps our two mails got confused.
  I have always been using 0.99 as far as I know.  It got nuked when I 
deleted the old matplotlib.  I wonder why it couldn't find geos the second 
time around?
  Once again, though, I'll let you know how things go.  It's a good idea to 
pull the toolkit out of the matplotlib directory to avoid this very problem. 
  I'll give that a try, by direct copying and changing my code.  Probably a 
lot of example code might need changing as well.
Regards,
Kurt

Original Message Follows
From: Jeff Whitaker [EMAIL PROTECTED]
To: KURT PETERS [EMAIL PROTECTED]
CC: [EMAIL PROTECTED], [EMAIL PROTECTED], 
matplotlib-users@lists.sourceforge.net
Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy 
producing   error
Date: Mon, 02 Jun 2008 11:51:43 -0600

KURT PETERS wrote:
I am using 0.99.
Kurt:  Not really. You tried to install it but the install failed.
  I ended up copying the toolkits directory from my old installation of 
matplotlib to the new matplotlib directory and at least things seem to be 
working (although the HD seems to churn a lot more).

Hmm.  I wouldn't expect this to work - there were changes in the matplotlib 
API in version 0.98.0 that should break the old version of basemap.
   Let me test this a little more and I'll let you know how that is working 
for me (Windows could have started some other process in the background).
Kurt

OK.

-Jeff
Original Message Follows
From: John Hunter [EMAIL PROTECTED]
To: Jeff Whitaker [EMAIL PROTECTED]
CC: KURT PETERS [EMAIL PROTECTED], [EMAIL PROTECTED], 
matplotlib-users@lists.sourceforge.net
Subject: Re: [Matplotlib-users] Update to Matplotlib and Numpy producing 
error
Date: Mon, 2 Jun 2008 12:38:15 -0500

On Mon, Jun 2, 2008 at 12:28 PM, Jeff Whitaker [EMAIL PROTECTED] wrote:

   Kurt:  As you discovered, you'll need basemap 0.99 to use with 
matplotlib
   0.98.0.  I only have a source tarball on the sf site now, and you 
apparently
   are looking for the windows binary installer.  I hope to have that up
   sometime next week - problem is that the person whose PC  I use to 
build it
   is on vacation now.Perhaps someone will step up and build a basemap
   windows installer before then, or I can talk you through how to build 
one
   yourself with MingW32.

I've updated the newsbox on the website with a link to a brief text
document including this info for basemap users.

JDHr



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users



--
Jeffrey S. Whitaker Phone  : (303)497-6313
Meteorologist   FAX: (303)497-6449
NOAA/OAR/PSD  R/PSD1Email  : [EMAIL PROTECTED]
325 BroadwayOffice : Skaggs Research Cntr 1D-113
Boulder, CO, USA 80303-3328 Web: http://tinyurl.com/5telg



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Update to Matplotlib and Numpy producing error

2008-06-02 Thread John Hunter
On Mon, Jun 2, 2008 at 4:32 PM, Charlie Moad [EMAIL PROTECTED] wrote:
 I am pretty sure setupext.py used to have these defaults coded in, but
 something must have changed.  I haven't had to check default backends
 in a long time.  I'll get new builds up asap.

Darren has added a setup.cfg to configure the builds external to
setup.py.  You'll probably want to use it to configure the default
backend.

JDH

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users