Skip to content

Commit

Permalink
Update Sympy
Browse files Browse the repository at this point in the history
Why do we want this? Newer versions of Nix packages are required for installations on ARM Macs. These newer packages are not compatible with the old version of sympy.
  • Loading branch information
Schaechtle committed Sep 21, 2022
1 parent 8b0fe0c commit 012e2dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'astunparse==1.6.3',
'numpy==1.22.3',
'scipy==1.8.0',
'sympy==1.6',
'sympy==1.10.1',
],
'magics' : [
'graphviz==0.13.2',
Expand Down
2 changes: 1 addition & 1 deletion src/poly.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import sympy

from sympy.calculus.util import limit
from sympy import limit

from .sets import EmptySet
from .sets import ExtReals
Expand Down
2 changes: 1 addition & 1 deletion src/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

import sympy

from sympy import limit
from sympy.abc import X as symX

from sympy.calculus.util import function_range
from sympy.calculus.util import limit

from .math_util import isinf_neg
from .math_util import isinf_pos
Expand Down

0 comments on commit 012e2dc

Please sign in to comment.