File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 178
178
# use the closest tagged version if possible
179
179
_built_with_meson = False
180
180
try :
181
- from pandas ._version_meson import __version__ , __git_version__
181
+ from pandas ._version_meson import (
182
+ __version__ ,
183
+ __git_version__ ,
184
+ ) # pyright: ignore [reportMissingImports]
182
185
183
186
_built_with_meson = True
184
187
except ImportError :
Original file line number Diff line number Diff line change @@ -258,7 +258,6 @@ def test_testing(self):
258
258
259
259
self .check (testing , self .funcs )
260
260
261
-
262
261
def test_util_in_top_level (self , monkeypatch ):
263
262
# Can't import pandas from the test directory since its not
264
263
# built inplace with meson
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ def _get_commit_hash() -> str | None:
22
22
git worktree correctly.
23
23
"""
24
24
try :
25
- from pandas ._version_meson import __git_version__
25
+ from pandas ._version_meson import ( # pyright: ignore [reportMissingImports]
26
+ __git_version__ ,
27
+ )
26
28
27
29
return __git_version__
28
30
except ImportError :
You can’t perform that action at this time.
0 commit comments