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
2
2
3
3
4
- class SQLAlchemyRecipe (CompiledComponentsPythonRecipe ):
4
+ class SQLAlchemyRecipe (PyProjectRecipe ):
5
5
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'
10
8
depends = ['setuptools' ]
11
9
12
- patches = ['zipsafe.patch' ]
10
+ @property
11
+ def versioned_url (self ):
12
+ return self .url .format (self .version .replace ("." , "_" ))
13
13
14
14
15
15
recipe = SQLAlchemyRecipe ()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments