Skip to content

Commit b0e4bfc

Browse files
committed
Update development tooling to use uv
1 parent a121f17 commit b0e4bfc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitpod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tasks:
22
- name: "Python Environment"
33
before: "pyenv install 3.13 && pyenv global 3.13"
4-
init: "pip install poetry"
5-
command: "export PIP_USER=false && poetry install && poetry run pre-commit install"
4+
init: "pip install uv"
5+
command: "export PIP_USER=false && uv sync && uv run pre-commit install"

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: ruff
1515
name: ruff
1616
description: Run ruff linting
17-
entry: poetry run ruff check --force-exclude
17+
entry: uv run ruff check --force-exclude
1818
language: system
1919
'types_or': [python, pyi]
2020
require_serial: true

0 commit comments

Comments
 (0)