Skip to content

Commit 22dadba

Browse files
committed
Update uv
1 parent 36b643e commit 22dadba

File tree

4 files changed

+189
-186
lines changed

4 files changed

+189
-186
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929

3030
- name: Display Python version
31+
shell: bash
3132
run: python -c "import sys; print(sys.version)"
3233

3334
- name: Install venv
34-
run: ./tools/uv sync --extra tools --locked
35+
shell: bash
36+
run: ./tools/uv sync --extra dev --locked
3537

3638
- name: Run tests
3739
shell: bash

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,13 @@ alt_pytest_asyncio = "alt_pytest_asyncio.plugin"
2626
[project.urls]
2727
Homepage = "https://github.com/delfick/alt-pytest-asyncio"
2828

29-
[tool.uv]
30-
dev-dependencies = [
29+
[project.optional-dependencies]
30+
dev = [
31+
"tools",
32+
"alt_pytest_asyncio_test_driver"
33+
]
34+
tools = [
3135
"tools",
32-
"alt_pytest_asyncio_test_driver",
3336
]
3437

3538
[tool.hatch.metadata]

tools/requirements.uv.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
uv>=0.4.20
1+
uv==0.6.2

0 commit comments

Comments
 (0)