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 c83f992 commit a4e63fdCopy full SHA for a4e63fd
1 file changed
.github/workflows/tests.yml
@@ -25,7 +25,10 @@ jobs:
25
with:
26
python-version: "3.12"
27
- name: Install linting tools
28
- run: pip install ruff mypy numpy
+ # numpy is intentionally omitted: numpy 2.x stubs use `type` syntax
29
+ # (Python 3.12+) which mypy rejects in py3.9 mode. --ignore-missing-imports
30
+ # in pyproject.toml handles the missing stubs gracefully.
31
+ run: pip install ruff mypy
32
- name: Ruff lint
33
run: ruff check python/
34
- name: Ruff format check
0 commit comments