We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8394bba commit c3ac127Copy full SHA for c3ac127
escriptcore/py_src/start.py
@@ -39,7 +39,7 @@
39
import sympy as sp
40
spVer=sp.__version__
41
spl=spVer.split('.')
42
- if int(spl[0]) == 0 and int(spl[1]) < 7:
+ if (int(spl[0]) == 0 and int(spl[1]) < 7) or (int(spl[0]) == 1 and int(spl[1]) > 2):
43
HAVE_SYMBOLS=False
44
else:
45
HAVE_SYMBOLS=True
0 commit comments