Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SetEnviroment, go over GetEnvironment... #1071

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions mathics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from importlib import import_module
from typing import Dict

import mpmath
import numpy
import sympy
from mpmath import __version__ as mpmath_version
from numpy import __version__ as numpy_version
from sympy import __version__ as sympy_version

from mathics.version import __version__

Expand All @@ -17,10 +17,10 @@
# if we can't get version information.
version_info: Dict[str, str] = {
"mathics": __version__,
"mpmath": mpmath.__version__,
"numpy": numpy.__version__,
"mpmath": mpmath_version,
"numpy": numpy_version,
"python": platform.python_implementation() + " " + sys.version.split("\n")[0],
"sympy": sympy.__version__,
"sympy": sympy_version,
}


Expand Down
Loading