--- setup.py.orig 2017-05-09 10:51:19.000000000 +0300 +++ setup.py 2017-05-09 10:58:01.000000000 +0300 @@ -140,7 +140,7 @@ c_options['use_egl'] = False c_options['use_opengl_es2'] = None c_options['use_opengl_mock'] = environ.get('READTHEDOCS', None) == 'True' -c_options['use_sdl2'] = None +c_options['use_sdl2'] = True c_options['use_ios'] = False c_options['use_mesagl'] = False c_options['use_x11'] = False @@ -438,7 +438,7 @@ platform not in ('android',) and c_options['use_sdl2'] is None): sdl2_valid = False - if c_options['use_osx_frameworks'] and platform == 'darwin': + if False and c_options['use_osx_frameworks'] and platform == 'darwin': # check the existence of frameworks sdl2_valid = True sdl2_flags = { @@ -1052,9 +1052,6 @@ ('Topic :: Software Development :: Libraries :: ' 'Application Frameworks'), 'Topic :: Software Development :: User Interfaces'], - dependency_links=[ - 'https://github.com/kivy-garden/garden/archive/master.zip'], - install_requires=['Kivy-Garden>=0.1.4', 'docutils', 'pygments'], setup_requires=[ 'cython>=' + MIN_CYTHON_STRING ] if not skip_cython else [])