File tree Expand file tree Collapse file tree 6 files changed +5
-3
lines changed Expand file tree Collapse file tree 6 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
- import pyarrow as pa # pyright: ignore[reportMissingTypeStubs]
1
+ import pyarrow as pa
2
2
3
3
from pandas ._libs .missing import NAType
4
4
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ from pandas._typing import (
6
6
np_ndarray_int ,
7
7
)
8
8
9
+ # Docs may not be right. See pandas-dev/pandas#62562
9
10
@overload
10
11
def check_array_indexer (array : AnyArrayLike , indexer : int ) -> int : ...
11
12
@overload
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ types-python-dateutil = ">=2.8.19"
68
68
beautifulsoup4 = " >=4.14.2"
69
69
html5lib = " >=1.1"
70
70
python-calamine = " >=0.2.0"
71
+ pyarrow-stubs = { version = " >=20.0.0.20250928" , python = " <4" }
71
72
72
73
[build-system ]
73
74
requires = [" poetry-core>=1.0.0" ]
Original file line number Diff line number Diff line change 20
20
BooleanArray ,
21
21
IntegerArray ,
22
22
)
23
- import pyarrow as pa # pyright: ignore[reportMissingTypeStubs]
23
+ import pyarrow as pa
24
24
from typing_extensions import assert_type
25
25
26
26
from pandas ._typing import Scalar
Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ def test_crosstab() -> None:
678
678
def test_arrow_dtype () -> None :
679
679
pytest .importorskip ("pyarrow" )
680
680
681
- import pyarrow as pa # pyright: ignore[reportMissingTypeStubs]
681
+ import pyarrow as pa
682
682
683
683
check (
684
684
assert_type (
You can’t perform that action at this time.
0 commit comments