Skip to content

Commit 9c819c6

Browse files
sduenasgAndreMiras
authored andcommitted
Fix sqlalchemy recipe (#1794)
* Fix sqlalchemy recipe build errors * Bump sqlalchemy to 1.3.3
1 parent 545413e commit 9c819c6

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

pythonforandroid/recipes/sqlalchemy/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33

44
class SQLAlchemyRecipe(CompiledComponentsPythonRecipe):
55
name = 'sqlalchemy'
6-
version = '1.0.9'
6+
version = '1.3.3'
77
url = 'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-{version}.tar.gz'
8+
call_hostpython_via_targetpython = False
89

910
depends = ['setuptools']
1011

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
diff --git a/setup.py b/setup.py
2-
index 09b524c..1e65772 100644
3-
--- a/setup.py
4-
+++ b/setup.py
5-
@@ -125,6 +125,7 @@ def run_setup(with_cext):
6-
setup(name="SQLAlchemy",
7-
version=VERSION,
8-
description="Database Abstraction Library",
9-
+ zip_safe=False,
10-
author="Mike Bayer",
11-
author_email="mike_mp@zzzcomputing.com",
12-
url="http://www.sqlalchemy.org",
1+
--- a/setup.py 2019-04-15 17:45:03.000000000 +0200
2+
+++ b/setup.py 2019-04-16 20:12:19.056710749 +0200
3+
@@ -145,6 +145,7 @@
4+
name="SQLAlchemy",
5+
version=VERSION,
6+
description="Database Abstraction Library",
7+
+ zip_safe=False,
8+
author="Mike Bayer",
9+
author_email="mike_mp@zzzcomputing.com",
10+
url="http://www.sqlalchemy.org",

0 commit comments

Comments
 (0)