Revision: 5999
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5999&view=rev
Author:   jswhit
Date:     2008-08-07 22:20:01 +0000 (Thu, 07 Aug 2008)

Log Message:
-----------
remove 2.2.3 geos version restriction (now accept geos >= 2.2.3)

Modified Paths:
--------------
    trunk/toolkits/basemap/setup.py

Modified: trunk/toolkits/basemap/setup.py
===================================================================
--- trunk/toolkits/basemap/setup.py     2008-08-07 22:13:31 UTC (rev 5998)
+++ trunk/toolkits/basemap/setup.py     2008-08-07 22:20:01 UTC (rev 5999)
@@ -49,7 +49,7 @@
     for direc in GEOS_dirs:
         geos_version = checkversion(direc)
         print 'checking for GEOS lib in %s ....' % direc
-        if geos_version != '"2.2.3"':
+        if geos_version < '"2.2.3"':
             continue
         else:
             print 'GEOS lib found in %s' % direc
@@ -58,11 +58,11 @@
 else:
     geos_version = checkversion(GEOS_dir)
 
-if geos_version != '"2.2.3"' or GEOS_dir is None:
+if GEOS_dir is None:
     raise SystemExit("""
-Can't find geos library version 2.2.3. Please set the
+Can't find geos library . Please set the
 environment variable GEOS_DIR to point to the location
-where geos 2.2.3 is installed (for example, if geos_c.h
+where geos is installed (for example, if geos_c.h
 is in /usr/local/include, and libgeos_c is in /usr/local/lib,
 set GEOS_DIR to /usr/local), or edit the setup.py script
 manually and set the variable GEOS_dir (right after the line


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to