File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
pythonforandroid/recipes/sympy Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ class TargetPython(Enum):
57
57
'pyzmq' ,
58
58
'secp256k1' ,
59
59
'shapely' ,
60
+ # mpmath package with a version >= 0.19 required
61
+ 'sympy' ,
60
62
'twisted' ,
61
63
'vlc' ,
62
64
'websocket-client' ,
@@ -93,6 +95,8 @@ class TargetPython(Enum):
93
95
'pyjnius' , 'pyopenal' ,
94
96
# SyntaxError: invalid syntax (Python2)
95
97
'storm' ,
98
+ # mpmath package with a version >= 0.19 required
99
+ 'sympy' ,
96
100
'vlc' ,
97
101
])
98
102
# to be created via https://github.com/kivy/python-for-android/issues/1514
Original file line number Diff line number Diff line change 1
1
2
- from pythonforandroid .toolchain import PythonRecipe
2
+ from pythonforandroid .recipe import PythonRecipe
3
3
4
4
5
5
class SympyRecipe (PythonRecipe ):
6
6
version = '1.1.1'
7
7
url = 'https://github.com/sympy/sympy/releases/download/sympy-{version}/sympy-{version}.tar.gz'
8
8
9
- # depends = [('python2', 'python3crystax'), 'setuptools']
10
9
depends = [('python2' , 'python3crystax' ), 'mpmath' ]
11
10
12
11
call_hostpython_via_targetpython = True
13
12
14
13
patches = ['fix_timeutils.patch' , 'fix_pretty_print.patch' ]
15
14
15
+
16
16
recipe = SympyRecipe ()
You can’t perform that action at this time.
0 commit comments