File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 57
57
from pandas .io .api import *
58
58
from pandas .util ._tester import test
59
59
60
+ # use the closest tagged version if possible
61
+ from ._version import get_versions
62
+ v = get_versions ()
63
+ __version__ = v .get ('closest-tag' , v ['version' ])
64
+ del get_versions , v
65
+
60
66
# extension module deprecations
61
67
from pandas .util .depr_module import _DeprecatedModule
62
68
65
71
lib = _DeprecatedModule (deprmod = 'pandas.lib' , deprmodto = 'pandas._libs.lib' )
66
72
tslib = _DeprecatedModule (deprmod = 'pandas.tslib' , deprmodto = 'pandas._libs.tslib' )
67
73
68
- # use the closest tagged version if possible
69
- from ._version import get_versions
70
- v = get_versions ()
71
- __version__ = v .get ('closest-tag' , v ['version' ])
72
- del get_versions , v
73
-
74
74
# module level doc-string
75
75
__doc__ = """
76
76
pandas - a powerful data analysis and manipulation library for Python
You can’t perform that action at this time.
0 commit comments