File tree Expand file tree Collapse file tree 2 files changed +7
-17
lines changed
pythonforandroid/recipes/sqlalchemy Expand file tree Collapse file tree 2 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 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
1515recipe = SQLAlchemyRecipe ()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments