Skip to content

Commit

Permalink
Fixed sympy bug
Browse files Browse the repository at this point in the history
  • Loading branch information
adaell committed Jun 27, 2022
1 parent 8394bba commit c3ac127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion escriptcore/py_src/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import sympy as sp
spVer=sp.__version__
spl=spVer.split('.')
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):
HAVE_SYMBOLS=False
else:
HAVE_SYMBOLS=True
Expand Down

0 comments on commit c3ac127

Please sign in to comment.