Skip to content

Commit 4ae9e5a

Browse files
authored
Merge pull request #3207 from T-Dynamos/flask-fix
`flask`: update to `3.1.1`
2 parents 033f4be + 0f13b85 commit 4ae9e5a

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed
Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1+
from pythonforandroid.recipe import PyProjectRecipe
12

2-
from pythonforandroid.recipe import PythonRecipe
33

4-
5-
class FlaskRecipe(PythonRecipe):
6-
version = '2.0.3'
4+
class FlaskRecipe(PyProjectRecipe):
5+
version = '3.1.1'
76
url = 'https://github.com/pallets/flask/archive/{version}.zip'
8-
9-
depends = ['setuptools']
10-
11-
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click']
12-
13-
call_hostpython_via_targetpython = False
14-
install_in_hostpython = False
7+
python_depends = ['jinja2', 'werkzeug', 'markupsafe', 'itsdangerous', 'click', 'blinker']
158

169

1710
recipe = FlaskRecipe()

0 commit comments

Comments
 (0)