From 10175717fafcbc8cbfe21d1e91f8a824a8fae611 Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Mon, 19 Feb 2024 18:25:16 +0530 Subject: [PATCH] (`recipes/materialyoucolor`): update to 2.0.7 --- pythonforandroid/recipes/materialyoucolor/__init__.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pythonforandroid/recipes/materialyoucolor/__init__.py b/pythonforandroid/recipes/materialyoucolor/__init__.py index 6ae3ad2caf..39bbdc328a 100644 --- a/pythonforandroid/recipes/materialyoucolor/__init__.py +++ b/pythonforandroid/recipes/materialyoucolor/__init__.py @@ -1,13 +1,11 @@ -from pythonforandroid.recipe import CompiledComponentsPythonRecipe +from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe -class MaterialyoucolorRecipe(CompiledComponentsPythonRecipe): - need_stl_shared = True +class MaterialyoucolorRecipe(CppCompiledComponentsPythonRecipe): stl_lib_name = "c++_shared" - version = "2.0.5" + version = "2.0.7" url = "https://github.com/T-Dynamos/materialyoucolor-pyhton/archive/refs/tags/v{version}.tar.gz" depends = ["setuptools"] - call_hostpython_via_targetpython = False recipe = MaterialyoucolorRecipe()