Skip to content

Commit 468999d

Browse files
committed
fix path on macos
1 parent 66b384b commit 468999d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243
shell: bash
244244
env:
245245
PYARROW_TEST_ANNOTATIONS: "ON"
246-
run: ci/scripts/python_test_type_annotations.sh $(pwd)
246+
run: ci/scripts/python_test_type_annotations.sh $(pwd)/python
247247

248248
windows:
249249
name: AMD64 Windows 2022 Python 3.13

ci/scripts/python_test_type_annotations.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ if [ "${PYARROW_TEST_ANNOTATIONS}" == "ON" ]; then
2727
# Install type checkers
2828
pip install mypy pyright ty
2929

30+
# Install other dependencies for type checking
31+
pip install fsspec
32+
3033
# Run type checkers
3134
pushd ${pyarrow_dir}
3235
mypy

0 commit comments

Comments
 (0)