Skip to content

Commit

Permalink
Merge pull request #3027 from T-Dynamos/sqlalchemy
Browse files Browse the repository at this point in the history
`sqlalchemy`: update to `2.0.30`
  • Loading branch information
AndreMiras committed Jun 2, 2024
2 parents 6dc7d8d + f691a8b commit 9ddabd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 deletions.
14 changes: 7 additions & 7 deletions pythonforandroid/recipes/sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
from pythonforandroid.recipe import PyProjectRecipe


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

version = '2.0.30'
url = 'https://github.com/sqlalchemy/sqlalchemy/archive/refs/tags/rel_{}.tar.gz'
depends = ['setuptools']

patches = ['zipsafe.patch']
@property
def versioned_url(self):
return self.url.format(self.version.replace(".", "_"))


recipe = SQLAlchemyRecipe()
10 changes: 0 additions & 10 deletions pythonforandroid/recipes/sqlalchemy/zipsafe.patch

This file was deleted.

0 comments on commit 9ddabd3

Please sign in to comment.