From 1db6dd10a52a11a7254695096aefb61bcb6c0208 Mon Sep 17 00:00:00 2001 From: Andy Kipp Date: Mon, 3 May 2021 11:44:25 +0300 Subject: [PATCH] Update app.py --- python_appimage/commands/build/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_appimage/commands/build/app.py b/python_appimage/commands/build/app.py index 4e5598c..bdae110 100644 --- a/python_appimage/commands/build/app.py +++ b/python_appimage/commands/build/app.py @@ -229,7 +229,7 @@ def execute(appdir, name=None, python_version=None, linux_tag=None, # Bundle the requirements if requirements_list: pip_version = system(('./AppDir/AppRun','-m', 'pip','--version')).split(' ')[1] - in_tree_build = '' if pip_version <= '21' else '--use-feature=in-tree-build' + in_tree_build = '' if pip_version < '21' else '--use-feature=in-tree-build' deprecation = ( 'DEPRECATION: Python 2.7 reached the end of its life',