ci: remove --no-build-isolation #81
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.13 | |
| architecture: x64 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Add mypy annotator | |
| uses: pr-annotators/mypy-pr-annotator@v1.0.0 | |
| - name: Install build dependencies | |
| run: pip install cython numpy meson-python | |
| - name: Compile | |
| run: python -m pip install --group dev -e . --no-build-isolation | |
| - name: Run mypy | |
| run: mypy fastremap | |
| - name: Run stub tests | |
| run: python -m mypy.stubtest fastremap --allowlist mypy.allowlist |