File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ version 1.0.8 (not yet released)
77 ability to fill counties with specified matplotlib color argument.
88* fix drawgreatcircle bug so that lines exiting and reentering a projection
99 region don't draw horizontally across the map.
10+ * on non-windows platforms, only link against libgeos C API (and not against
11+ C++ API anymore; issue 140). This is recommended by the authors/maintainers
12+ of GEOS. Also, this means that on e.g. Debian Linux, basemap can now be
13+ installed from source simply using 'pip install basemap' when the libgeos
14+ packages are installed globally using the package management.
1015
1116version 1.0.7 (git tag v1.0.7rel)
1217---------------------------------
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def checkversion(GEOS_dir):
8383 library_dirs = geos_library_dirs ,
8484 runtime_library_dirs = geos_library_dirs ,
8585 include_dirs = geos_include_dirs ,
86- libraries = ['geos_c' , 'geos' ]))
86+ libraries = ['geos_c' ]))
8787
8888# Specify all the required mpl data
8989# create pyproj binary datum shift grid files.
You can’t perform that action at this time.
0 commit comments