Skip to content

Commit 9a73605

Browse files
committed
🚧 debug-print the installed numpy version
1 parent d59a1c5 commit 9a73605

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

‎.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,14 @@ jobs:
8383
with:
8484
python-version: "3.11"
8585

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+
8691
- name: mypy
8792
run: >
88-
uv run --no-editable --group=test_numpy --with="numpy==${{ matrix.numpy-version }}" --active
93+
uv run --no-editable --group=mypy --with="numpy==${{ matrix.numpy-version }}"
8994
mypy --tb --no-incremental --cache-dir=/dev/null tests/integration/test_numpy.pyi
9095
9196
# TODO: (based)pyright

0 commit comments

Comments
 (0)