We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a25fc29 commit 65414a2Copy full SHA for 65414a2
conda/meta.yaml
@@ -1,5 +1,5 @@
1
{% set name = "sunode" %}
2
-{% set version = "0.1.1" %}
+{% set version = "0.2" %}
3
4
package:
5
name: {{ name|lower }}
@@ -33,7 +33,7 @@ requirements:
33
- sundials >=5.3
34
- numba >=0.49
35
- typing_extensions
36
- - sympy
+ - sympy >=1.8
37
38
test:
39
imports:
sunode/__init__.py
@@ -6,7 +6,7 @@
6
import sunode.solver
7
8
9
-__version__ = "0.1.1"
+__version__ = "0.2"
10
11
__all__ = [
12
"empty_matrix",
sunode/symode/lambdify.py
import inspect
from functools import partial
-from sympy.printing.pycode import SciPyPrinter
+from sympy.printing.numpy import SciPyPrinter
import sympy
import numpy as np
0 commit comments