From e305686c8105bbd91cf4cc927c6bb9ec6c7d4b7a Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Tue, 8 Sep 2026 11:46:43 +0530 Subject: [PATCH] av: pin cython version --- pythonforandroid/recipes/av/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/av/__init__.py b/pythonforandroid/recipes/av/__init__.py index ef411ae507..ea353c8ad8 100644 --- a/pythonforandroid/recipes/av/__init__.py +++ b/pythonforandroid/recipes/av/__init__.py @@ -5,11 +5,11 @@ class PyAVRecipe(PyProjectRecipe): name = "av" - version = "17.0.0" + version = "18.1.0" url = "https://github.com/PyAV-Org/PyAV/archive/v{version}.zip" patches = ["libs.patch"] depends = ["python3", "ffmpeg", "av_codecs", "openssl"] - hostpython_prerequisites = ["cython>=3.1.0"] + hostpython_prerequisites = ["cython>=3.3.0,<4"] def get_recipe_env(self, arch, with_flags_in_cc=True): env = super().get_recipe_env(arch)