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 d59a1c5 commit 9a73605Copy full SHA for 9a73605
‎.github/workflows/ci.yml
@@ -83,9 +83,14 @@ jobs:
83
with:
84
python-version: "3.11"
85
86
+ - name: (DEBUG) print numpy version # TODO
87
+ run: >
88
+ uv run --no-editable --group=mypy --with="numpy==${{ matrix.numpy-version }}"
89
+ python -c "import numpy; print(numpy.__version__)"
90
+
91
- name: mypy
92
run: >
- uv run --no-editable --group=test_numpy --with="numpy==${{ matrix.numpy-version }}" --active
93
94
mypy --tb --no-incremental --cache-dir=/dev/null tests/integration/test_numpy.pyi
95
96
# TODO: (based)pyright
0 commit comments