File tree 2 files changed +3
-6
lines changed 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 5
5
from os .path import join
6
6
7
7
from pythonforandroid .logger import shprint
8
- from pythonforandroid .patching import is_version_lt
9
8
from pythonforandroid .recipe import Recipe
10
9
from pythonforandroid .util import (
11
10
BuildInterruptingException ,
@@ -45,9 +44,7 @@ class HostPython3Recipe(Recipe):
45
44
'''The default url to download our host python recipe. This url will
46
45
change depending on the python version set in attribute :attr:`version`.'''
47
46
48
- patches = (
49
- ('patches/pyconfig_detection.patch' , is_version_lt ("3.8.3" )),
50
- )
47
+ patches = ['patches/pyconfig_detection.patch' ]
51
48
52
49
@property
53
50
def _exe_name (self ):
Original file line number Diff line number Diff line change 9
9
from shutil import copy2
10
10
11
11
from pythonforandroid .logger import info , warning , shprint
12
- from pythonforandroid .patching import version_starts_with , is_version_lt
12
+ from pythonforandroid .patching import version_starts_with
13
13
from pythonforandroid .recipe import Recipe , TargetPythonRecipe
14
14
from pythonforandroid .util import (
15
15
current_directory ,
@@ -61,7 +61,7 @@ class Python3Recipe(TargetPythonRecipe):
61
61
name = 'python3'
62
62
63
63
patches = [
64
- ( 'patches/pyconfig_detection.patch' , is_version_lt ( "3.8.3" )) ,
64
+ 'patches/pyconfig_detection.patch' ,
65
65
66
66
# Python 3.7.1
67
67
('patches/py3.7.1_fix-ctypes-util-find-library.patch' , version_starts_with ("3.7" )),
You can’t perform that action at this time.
0 commit comments