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 @@ -79,16 +79,18 @@ jobs:
79
79
with :
80
80
python-version : " 3.11"
81
81
enable-cache : false
82
+ activate-environment : true
82
83
83
84
- name : (DEBUG) print numpy version # TODO
84
- run : >
85
- uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
86
- python -c "import numpy; print(numpy.__version__)"
85
+ run : |
86
+ uv sync --no-editable --group=mypy
87
+ uv pip install numpy==${{ matrix.numpy-version }}
88
+
89
+ - name : (DEBUG) print numpy version # TODO
90
+ run : uv run --no-sync python -c "import numpy; print(numpy.__version__)"
87
91
88
92
- name : mypy
89
- run : >
90
- uv run --group=mypy --with="numpy==${{ matrix.numpy-version }}"
91
- mypy --tb tests/integration/test_numpy.pyi
93
+ run : uv run --no-sync mypy --tb tests/integration/test_numpy.pyi
92
94
93
95
# TODO: (based)pyright
94
96
You can’t perform that action at this time.
0 commit comments