From 4b16474d78a242a0ce637a38192f6bf440eb311d Mon Sep 17 00:00:00 2001 From: Sergio Morillo Date: Wed, 6 Dec 2023 16:10:03 +0100 Subject: [PATCH] Change trytond recipe url --- trytond/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trytond/__init__.py b/trytond/__init__.py index 4ede862..b682b9f 100644 --- a/trytond/__init__.py +++ b/trytond/__init__.py @@ -2,12 +2,13 @@ # this repository contains the full copyright notices and license terms. from pythonforandroid.recipe import PythonRecipe +from pythonforandroid.toolchain import current_directory class TrytondRecipe(PythonRecipe): version = '6.0' - url = 'http://hg.tryton.org/trytond/archive/{version}.tar.gz' + url = 'https://files.pythonhosted.org/packages/9e/45/1a03e8ca58258e2351c941f6834fce0cfb45d92798df9c541c6838e99c33/trytond-6.0.38.tar.gz' depends = ['python3', 'setuptools', 'sqlite3', 'lxml'] python_depends = [ 'werkzeug',