From 78459ac016e003a98512d98207c434a5c706a2a3 Mon Sep 17 00:00:00 2001 From: Mikhail Zakharov Date: Wed, 6 Jan 2021 14:16:55 -0500 Subject: [PATCH] move comment to docstring --- pythonforandroid/recipes/lapack/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/lapack/__init__.py b/pythonforandroid/recipes/lapack/__init__.py index 7a184d0cbf..e1dac95b35 100644 --- a/pythonforandroid/recipes/lapack/__init__.py +++ b/pythonforandroid/recipes/lapack/__init__.py @@ -1,3 +1,8 @@ +''' +known to build with cmake version 3.19.2 and NDK r19c. +See https://gitlab.kitware.com/cmake/cmake/-/issues/18739 +''' + from pythonforandroid.recipe import Recipe from pythonforandroid.logger import shprint from pythonforandroid.util import current_directory, ensure_dir, BuildInterruptingException @@ -5,8 +10,6 @@ from os.path import join import sh -# known to build with cmake version 3.19.2 and NDK r19c. See https://gitlab.kitware.com/cmake/cmake/-/issues/18739 - class LapackRecipe(Recipe):