We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e6c6c8 commit a0ce53cCopy full SHA for a0ce53c
1 file changed
.github/workflows/python.yml
@@ -138,6 +138,15 @@ jobs:
138
continue-on-error: true
139
run: archery docker push ${{ matrix.image }}
140
141
+ - name: Type check with mypy and pyright
142
+ run: |-
143
+ python -m pip install mypy pyright griffe libcst scipy-stubs pandas-stubs types-python-dateutil types-psutil types-requests griffe libcst types-cffi
144
+ pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pyarrow
145
+ cd python
146
+ mypy ./pyarrow-stubs ./pyarrow/tests/test_array.py ./pyarrow/tests/test_io.py
147
+ pyright ./pyarrow-stubs
148
+ python ../dev/update_stub_docstrings.py -f ./python/pyarrow-stubs
149
+
150
macos:
151
name: ${{ matrix.architecture }} macOS ${{ matrix.macos-version }} Python 3
152
runs-on: macos-${{ matrix.macos-version }}
0 commit comments