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 3f4b0df commit c03218aCopy full SHA for c03218a
1 file changed
mathics/__init__.py
@@ -5,6 +5,7 @@
5
import platform
6
import sympy
7
import mpmath
8
+import numpy
9
10
from mathics.version import __version__
11
from mathics.core.expression import (
@@ -27,6 +28,7 @@
27
28
"mathics": __version__,
29
"sympy": sympy.__version__,
30
"mpmath": mpmath.__version__,
31
+ "numpy": numpy.__version__,
32
"python": platform.python_implementation() + " " + sys.version.split("\n")[0],
33
}
34
@@ -40,7 +42,7 @@
40
42
41
43
version_string = """Mathics {mathics}
44
on {python}
-using SymPy {sympy}, mpmath {mpmath}""".format(
45
+using SymPy {sympy}, mpmath {mpmath}, numpy {numpy}""".format(
46
**version_info
47
)
48
0 commit comments