From 4714f803b22eda26eb2fc867c1d9e2c7230bdd11 Mon Sep 17 00:00:00 2001 From: Jonas Thiem Date: Fri, 29 Mar 2019 04:48:21 +0100 Subject: [PATCH] Fix outdated PySDL2 version and non-PyPI install source --- pythonforandroid/recipes/pysdl2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/pysdl2/__init__.py b/pythonforandroid/recipes/pysdl2/__init__.py index e0df9dc55b..0228f88152 100644 --- a/pythonforandroid/recipes/pysdl2/__init__.py +++ b/pythonforandroid/recipes/pysdl2/__init__.py @@ -3,8 +3,8 @@ class PySDL2Recipe(PythonRecipe): - version = '0.9.3' - url = 'https://bitbucket.org/marcusva/py-sdl2/downloads/PySDL2-{version}.tar.gz' + version = '0.9.6' + url = 'https://files.pythonhosted.org/packages/source/P/PySDL2/PySDL2-{version}.tar.gz' depends = ['sdl2']