Skip to content

Commit

Permalink
Fix sympy 1.8 moved import
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt committed Apr 12, 2021
1 parent a25fc29 commit 65414a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "sunode" %}
{% set version = "0.1.1" %}
{% set version = "0.2" %}

package:
name: {{ name|lower }}
Expand Down Expand Up @@ -33,7 +33,7 @@ requirements:
- sundials >=5.3
- numba >=0.49
- typing_extensions
- sympy
- sympy >=1.8

test:
imports:
Expand Down
2 changes: 1 addition & 1 deletion sunode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sunode.solver


__version__ = "0.1.1"
__version__ = "0.2"

__all__ = [
"empty_matrix",
Expand Down
2 changes: 1 addition & 1 deletion sunode/symode/lambdify.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import inspect
from functools import partial

from sympy.printing.pycode import SciPyPrinter
from sympy.printing.numpy import SciPyPrinter
import sympy
import numpy as np

Expand Down

0 comments on commit 65414a2

Please sign in to comment.