|
1 | 1 | r"""
|
2 | 2 | # OGRePy: An Object-Oriented General Relativity Package for Python
|
| 3 | +v1.1.0 (2024-09-08) |
3 | 4 |
|
4 | 5 | By **Barak Shoshany**\
|
5 | 6 |
|
|
20 | 21 | import sympy as s
|
21 | 22 |
|
22 | 23 | # Import all public OGRePy objects.
|
23 |
| -from ._core import Coordinates, CovariantD, Metric, OGRePyError, PartialD, Tensor, __version__, calc, diag, doc, func, info, options, release_date, sym, syms, welcome |
| 24 | +from ._core import Coordinates, CovariantD, Metric, OGRePyError, PartialD, Tensor, __version__, calc, diag, doc, func, info, options, release_date, sym, syms, update_check, welcome |
24 | 25 |
|
25 | 26 | # The names that will be exported if using `from OGRePy import *`. Contains exactly all the names imported above.
|
26 |
| -__all__: list[str] = ["s", "Coordinates", "CovariantD", "Metric", "OGRePyError", "PartialD", "Tensor", "__version__", "calc", "diag", "doc", "func", "info", "options", "release_date", "sym", "syms", "welcome"] |
27 |
| - |
28 |
| -# Display the welcome message, but not if `OGREPY_DISABLE_WELCOME = True` was defined in the notebook before importing the package. |
29 |
| -import __main__ |
30 |
| - |
31 |
| -if __main__.__dict__.get("OGREPY_DISABLE_WELCOME", False) is not True: |
32 |
| - welcome() |
| 27 | +__all__: list[str] = ["s", "Coordinates", "CovariantD", "Metric", "OGRePyError", "PartialD", "Tensor", "__version__", "calc", "diag", "doc", "func", "info", "options", "release_date", "sym", "syms", "update_check", "welcome"] |
0 commit comments