File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -80,16 +80,18 @@ jobs:
80
80
with :
81
81
python-version : " 3.11"
82
82
enable-cache : false
83
+ activate-environment : true
83
84
84
85
- name : (DEBUG) print numpy version # TODO
85
- run : >
86
- uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
87
- python -c "import numpy; print(numpy.__version__)"
86
+ run : |
87
+ uv sync --no-editable --group=mypy
88
+ uv pip install numpy==${{ matrix.numpy-version }}
89
+
90
+ - name : (DEBUG) print numpy version # TODO
91
+ run : uv run --no-sync python -c "import numpy; print(numpy.__version__)"
88
92
89
93
- name : mypy
90
- run : >
91
- uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
92
- mypy --tb tests/integration/test_numpy.pyi
94
+ run : uv run --no-sync mypy --tb tests/integration/test_numpy.pyi
93
95
94
96
# TODO: (based)pyright
95
97
You can’t perform that action at this time.
0 commit comments