Skip to content

Commit 623e0ad

Browse files
committed
💚 don't use --frozen when installing different a numpy version
1 parent d6ab2f1 commit 623e0ad

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

‎.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
env:
15-
UV_FROZEN: 1
1615
# Many color libraries just need this to be set to any value, but at least
1716
# one distinguishes color depth, where "3" -> "256-bit color".
1817
FORCE_COLOR: 3
@@ -21,6 +20,8 @@ jobs:
2120
lint:
2221
name: lint
2322
runs-on: ubuntu-latest
23+
env:
24+
UV_FROZEN: 1
2425
steps:
2526
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2627

@@ -40,6 +41,8 @@ jobs:
4041
test_runtime:
4142
name: runtime tests
4243
runs-on: ${{ matrix.runs-on }}
44+
env:
45+
UV_FROZEN: 1
4346
strategy:
4447
fail-fast: false
4548
matrix:
@@ -81,7 +84,7 @@ jobs:
8184

8285
- name: mypy
8386
run: >
84-
uv run --no-editable --group=test_numpy --with="numpy==${{ matrix.numpy-version }}"
87+
uv run --no-editable --group=test_numpy --with="numpy==${{ matrix.numpy-version }}" --active
8588
mypy --tb --no-incremental --cache-dir=/dev/null tests/integration/test_numpy.pyi
8689
8790
# TODO: (based)pyright

0 commit comments

Comments
 (0)