Skip to content

Fix sqlalchemy recipe #1794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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="mike_mp@zzzcomputing.com",
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="mike_mp@zzzcomputing.com",
url="http://www.sqlalchemy.org",