Skip to content

Commit e3a8c37

Browse files
committed
Use uv as Nox backend
1 parent d512b4b commit e3a8c37

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/nox.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
23+
- name: Install uv
24+
uses: astral-sh/setup-uv@v6
2325
- name: Register Python problem matcher
2426
run: echo "::add-matcher::.github/workflows/matchers/pytest.json"
2527
- name: Install dependencies

noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import nox
44

5+
nox.options.default_venv_backend = "uv"
6+
57

68
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
79
@nox.parametrize("all_deps", [True, False])

0 commit comments

Comments
 (0)