Skip to content

Commit

Permalink
Fix sqlalchemy recipe (#1794)
Browse files Browse the repository at this point in the history
* Fix sqlalchemy recipe build errors
* Bump sqlalchemy to 1.3.3
  • Loading branch information
sduenasg authored and AndreMiras committed Apr 16, 2019
1 parent 545413e commit 9c819c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
3 changes: 2 additions & 1 deletion pythonforandroid/recipes/sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@

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

depends = ['setuptools']

Expand Down
22 changes: 10 additions & 12 deletions pythonforandroid/recipes/sqlalchemy/zipsafe.patch
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
diff --git a/setup.py b/setup.py
index 09b524c..1e65772 100644
--- a/setup.py
+++ b/setup.py
@@ -125,6 +125,7 @@ def run_setup(with_cext):
setup(name="SQLAlchemy",
version=VERSION,
description="Database Abstraction Library",
+ zip_safe=False,
author="Mike Bayer",
author_email="[email protected]",
url="http://www.sqlalchemy.org",
--- a/setup.py 2019-04-15 17:45:03.000000000 +0200
+++ b/setup.py 2019-04-16 20:12:19.056710749 +0200
@@ -145,6 +145,7 @@
name="SQLAlchemy",
version=VERSION,
description="Database Abstraction Library",
+ zip_safe=False,
author="Mike Bayer",
author_email="[email protected]",
url="http://www.sqlalchemy.org",

0 comments on commit 9c819c6

Please sign in to comment.