This commit is contained in:
zeppi 2022-11-29 16:15:01 -05:00
parent 4a0b6742f9
commit eda66969b1
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ EXCLUDE_EXTS = (".py", ".pyc", ".so.o", ".so.a", ".so.libs", ".pyx")
class LbryBootstrap(Bootstrap):
name = 'lbry'
recipe_depends = ['genericndkbuild', ('python2', 'python3crystax')]
recipe_depends = ['genericndkbuild', ('python3', 'python3crystax')]
def run_distribute(self):
info_main("# Creating Android project ({})".format(self.name))

View file

@ -574,7 +574,7 @@ tools directory of the Android SDK.
# Hardcoding python2.7 is okay for now, as python3 skips the
# compilation anyway
if not exists('crystax_python'):
python_executable = 'python2.7'
python_executable = 'python3'
try:
subprocess.call([python_executable, '--version'])
except (OSError, subprocess.CalledProcessError):