We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66b384b commit 468999dCopy full SHA for 468999d
.github/workflows/python.yml
@@ -243,7 +243,7 @@ jobs:
243
shell: bash
244
env:
245
PYARROW_TEST_ANNOTATIONS: "ON"
246
- run: ci/scripts/python_test_type_annotations.sh $(pwd)
+ run: ci/scripts/python_test_type_annotations.sh $(pwd)/python
247
248
windows:
249
name: AMD64 Windows 2022 Python 3.13
ci/scripts/python_test_type_annotations.sh
@@ -27,6 +27,9 @@ if [ "${PYARROW_TEST_ANNOTATIONS}" == "ON" ]; then
27
# Install type checkers
28
pip install mypy pyright ty
29
30
+ # Install other dependencies for type checking
31
+ pip install fsspec
32
+
33
# Run type checkers
34
pushd ${pyarrow_dir}
35
mypy
0 commit comments