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)
7
7
ability to fill counties with specified matplotlib color argument.
8
8
* fix drawgreatcircle bug so that lines exiting and reentering a projection
9
9
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.
10
15
11
16
version 1.0.7 (git tag v1.0.7rel)
12
17
---------------------------------
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ def checkversion(GEOS_dir):
83
83
library_dirs = geos_library_dirs ,
84
84
runtime_library_dirs = geos_library_dirs ,
85
85
include_dirs = geos_include_dirs ,
86
- libraries = ['geos_c' , 'geos' ]))
86
+ libraries = ['geos_c' ]))
87
87
88
88
# Specify all the required mpl data
89
89
# create pyproj binary datum shift grid files.
You can’t perform that action at this time.
0 commit comments