Skip to content

Commit 5a937ac

Browse files
committed
hostpython3: rm version check for pyconfig patch
1 parent 7bf458f commit 5a937ac

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pythonforandroid/recipes/hostpython3/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from os.path import join
66

77
from pythonforandroid.logger import shprint
8-
from pythonforandroid.patching import is_version_lt
98
from pythonforandroid.recipe import Recipe
109
from pythonforandroid.util import (
1110
BuildInterruptingException,
@@ -45,9 +44,7 @@ class HostPython3Recipe(Recipe):
4544
'''The default url to download our host python recipe. This url will
4645
change depending on the python version set in attribute :attr:`version`.'''
4746

48-
patches = (
49-
('patches/pyconfig_detection.patch', is_version_lt("3.8.3")),
50-
)
47+
patches = ['patches/pyconfig_detection.patch']
5148

5249
@property
5350
def _exe_name(self):

0 commit comments

Comments
 (0)