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 d8b3151 commit d9128c1Copy full SHA for d9128c1
pygmt/__init__.py
@@ -12,7 +12,6 @@
12
from pkg_resources import get_distribution
13
14
# Import modules to make the high-level GMT Python API
15
-from . import datasets
16
from .figure import Figure
17
from .filtering import blockmedian
18
from .gridding import surface
@@ -24,6 +23,8 @@
24
23
from .session_management import end as _end
25
from .x2sys import x2sys_cross, x2sys_init
26
+from . import datasets # isort:skip
27
+
28
# Get semantic version through setuptools-scm
29
__version__ = f'v{get_distribution("pygmt").version}' # e.g. v0.1.2.dev3+g0ab3cd78
30
__commit__ = __version__.split("+g")[-1] # 0ab3cd78
0 commit comments