Skip to content

Commit

Permalink
android: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Aug 19, 2020
1 parent b1cfa41 commit 4a4f775
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/p4a-recipes/jiten/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class JitenRecipe(CompiledComponentsPythonRecipe):
# name = 'jiten'
# version = '0.1.1'
# version = '0.3.0'
# url = 'https://github.com/obfusk/jiten/archive/v{version}.tar.gz'

depends = ['setuptools', 'flask', 'click', 'sqlite3', 'libpcre']
Expand Down
2 changes: 1 addition & 1 deletion android/p4a-recipes/setuptools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pythonforandroid.recipe import PythonRecipe

class SetuptoolsRecipe(PythonRecipe):
version = '49.2.1'
version = '49.6.0'
url = 'https://pypi.python.org/packages/source/s/setuptools/setuptools-{version}.zip'
call_hostpython_via_targetpython = False
install_in_hostpython = True
Expand Down
4 changes: 2 additions & 2 deletions android/p4a-recipes/sqlite3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ def _patch():
spec.loader.exec_module(mod)
Sqlite3Recipe, recipe = mod.Sqlite3Recipe, mod.recipe
Sqlite3Recipe.name = "sqlite3"
Sqlite3Recipe.version = "3.32.3"
Sqlite3Recipe.url = "https://www.sqlite.org/2020/sqlite-amalgamation-3320300.zip"
Sqlite3Recipe.version = "3.33.0"
Sqlite3Recipe.url = "https://www.sqlite.org/2020/sqlite-amalgamation-3330000.zip"
_patch()

0 comments on commit 4a4f775

Please sign in to comment.