From 28818fb145fe9e5cf956260c132b83092455434a Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 2 Dec 2022 23:21:59 -0500 Subject: [PATCH] try upgrade cython --- p4a/pythonforandroid/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p4a/pythonforandroid/build.py b/p4a/pythonforandroid/build.py index 645b368..4cda951 100644 --- a/p4a/pythonforandroid/build.py +++ b/p4a/pythonforandroid/build.py @@ -711,7 +711,7 @@ def run_pymodules_install(ctx, arch, modules, project_dir=None, # Install Cython in case modules need it to build: info('Install Cython in case one of the modules needs it to build') shprint(sh.bash, '-c', ( - "venv/bin/pip install Cython" + "venv/bin/pip install --upgrade Cython" ), _env=copy.copy(base_env)) # Get environment variables for build (with CC/compiler set):