File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 88
99Unreleased
1010------------------
11+ Changed
12+ - Now bundles SDL 2.0.10 for MacOS and SDL 2.0.14 for Windows.
13+
14+ Fixed
15+ - MacOS wheels were failing to bundle dependencies for SDL2.
1116
121711.19.1 - 2020-12-29
1318--------------------
Original file line number Diff line number Diff line change 2323
2424# The SDL2 version to parse and export symbols from.
2525SDL2_PARSE_VERSION = os .environ .get ("SDL_VERSION" , "2.0.5" )
26+
2627# The SDL2 version to include in binary distributions.
27- SDL2_BUNDLE_VERSION = os .environ .get ("SDL_VERSION" , "2.0.14" )
28+ # MacOS delocate-wheel will fail without throwing an error when bundling
29+ # modern versions of SDL.
30+ SDL2_BUNDLE_VERSION = os .environ .get (
31+ "SDL_VERSION" , "2.0.10" if sys .platform == "darwin" else "2.0.14"
32+ )
2833
2934HEADER_PARSE_PATHS = ("tcod/" , "libtcod/src/libtcod/" )
3035HEADER_PARSE_EXCLUDES = ("gl2_ext_.h" , "renderer_gl_internal.h" , "event.h" )
You can’t perform that action at this time.
0 commit comments