File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ https://semver.org/spec/v2.0.0.html
19
19
- Upgrade documentation and linting dependencies.
20
20
21
21
### Fixed
22
+ - Fix Cygwin build error due to GCC passing ` "--enable-new-dtags" ` to
23
+ the linker (solves issue [ #579 ] , thanks to @DWesl for the help).
22
24
- Fix deprecated ` Image.ANTIALIAS ` with ` Image.LANCZOS ` when ` pillow `
23
- version is at least 10.0.0 (PR [ #580 ] , thanks to @cgohlke ).
25
+ version is at least 10.0.0 (PR [ #580 ] by @cgohlke ).
24
26
- Downgrade upper pin for Cython requirement from 3.1 to 3.0 due to
25
27
build error triggered by ` _geoslib.pyx ` (solves issue [ #581 ] ).
26
28
- Downgrade lower pin for ` numpy ` to ` >= 1.21 ` for Python >= 3.8, whose
@@ -977,6 +979,8 @@ https://semver.org/spec/v2.0.0.html
977
979
https://github.com/matplotlib/basemap/issues/581
978
980
[ #580 ] :
979
981
https://github.com/matplotlib/basemap/pull/580
982
+ [ #579 ] :
983
+ https://github.com/matplotlib/basemap/issues/579
980
984
[ #573 ] :
981
985
https://github.com/matplotlib/basemap/issues/573
982
986
[ #564 ] :
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def run(self):
111
111
library_dirs .append (os .path .join (geos_install_prefix , "lib" ))
112
112
library_dirs .append (os .path .join (geos_install_prefix , "lib64" ))
113
113
runtime_library_dirs = library_dirs
114
- if os .name == "nt" :
114
+ if os .name == "nt" or sys . platform == "cygwin" :
115
115
# On Windows:
116
116
# - DLLs get installed under `bin`.
117
117
# - We need to inject later the DLL in the wheel using `data_files`.
You can’t perform that action at this time.
0 commit comments