Skip to content

Commit 0e9ecbd

Browse files
no binary build when running nox
1 parent 426c994 commit 0e9ecbd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Run pre-commit
4848
run: |
4949
SKIP=no-commit-to-branch \
50-
uv run nox --session lint
50+
uv run --no-binary nox --session lint
5151
5252
rustfmt:
5353
runs-on: ubuntu-24.04

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
OS: ${{ inputs.os }}
5252
run: |
53-
uv run nox --session gha_matrix -- "${OS}"
53+
uv run --no-binary nox --session gha_matrix -- "${OS}"
5454
5555
test:
5656
name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }} (${{ matrix.os }})
@@ -79,7 +79,7 @@ jobs:
7979
DJANGO_VERSION: ${{ matrix.django-version }}
8080
PYTHON_VERSION: ${{ matrix.python-version }}
8181
run: |
82-
uv run nox --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
82+
uv run --no-binary nox --session "tests(python='${PYTHON_VERSION}', django='${DJANGO_VERSION}')"
8383
8484
tests:
8585
runs-on: ubuntu-latest

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ default:
1111

1212
[private]
1313
cog:
14-
uv run --with cogapp --with nox --no-project cog -r CONTRIBUTING.md README.md pyproject.toml
14+
uv run --no-binary --with cogapp --with nox --no-project cog -r CONTRIBUTING.md README.md pyproject.toml
1515

1616
[private]
1717
nox SESSION *ARGS:
18-
uv run nox --session "{{ SESSION }}" -- "{{ ARGS }}"
18+
uv run --no-binary nox --session "{{ SESSION }}" -- "{{ ARGS }}"
1919

2020
bumpver *ARGS:
2121
uv run --with bumpver bumpver {{ ARGS }}

0 commit comments

Comments
 (0)