Skip to content

Commit 354adfd

Browse files
authored
Update __init__.py
Changed lines 176 - 190, just gonna see what happens when we try to build the project w/ Gitpod
1 parent 20b47c4 commit 354adfd

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

pandas/__init__.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -173,21 +173,21 @@
173173
from pandas.util._tester import test
174174

175175
# use the closest tagged version if possible
176-
_built_with_meson = False
177-
try:
178-
from pandas._version_meson import ( # pyright: ignore [reportMissingImports]
179-
__version__,
180-
__git_version__,
181-
)
176+
# _built_with_meson = False
177+
# try:
178+
# from pandas._version_meson import ( # pyright: ignore [reportMissingImports]
179+
# __version__,
180+
# __git_version__,
181+
# )
182182

183-
_built_with_meson = True
184-
except ImportError:
185-
from pandas._version import get_versions
183+
# _built_with_meson = True
184+
# except ImportError:
185+
from pandas._version import get_versions
186186

187-
v = get_versions()
188-
__version__ = v.get("closest-tag", v["version"])
189-
__git_version__ = v.get("full-revisionid")
190-
del get_versions, v
187+
v = get_versions()
188+
__version__ = v.get("closest-tag", v["version"])
189+
__git_version__ = v.get("full-revisionid")
190+
del get_versions, v
191191

192192

193193
# module level doc-string

0 commit comments

Comments
 (0)