Skip to content

Commit f691a8b

Browse files
committed
sqlalchemy: update to 2.0.30
1 parent 5dc17e1 commit f691a8b

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
1+
from pythonforandroid.recipe import PyProjectRecipe
22

33

4-
class SQLAlchemyRecipe(CompiledComponentsPythonRecipe):
4+
class SQLAlchemyRecipe(PyProjectRecipe):
55
name = 'sqlalchemy'
6-
version = '1.3.3'
7-
url = 'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-{version}.tar.gz'
8-
call_hostpython_via_targetpython = False
9-
6+
version = '2.0.30'
7+
url = 'https://github.com/sqlalchemy/sqlalchemy/archive/refs/tags/rel_{}.tar.gz'
108
depends = ['setuptools']
119

12-
patches = ['zipsafe.patch']
10+
@property
11+
def versioned_url(self):
12+
return self.url.format(self.version.replace(".", "_"))
1313

1414

1515
recipe = SQLAlchemyRecipe()

pythonforandroid/recipes/sqlalchemy/zipsafe.patch

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)