diff options
author | 2025-07-15 23:05:00 +0100 | |
---|---|---|
committer | 2025-07-15 23:08:48 +0100 | |
commit | b0e4bfcdfd3d1a522708e3391411b80c64b0ab2e (patch) | |
tree | 66b53e0d1a600834cd7240ea84cc3d55d809c905 /.gitpod.yml | |
parent | Migrate Dockerfile to using uv (diff) |
Update development tooling to use uv
Diffstat (limited to '.gitpod.yml')
-rw-r--r-- | .gitpod.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitpod.yml b/.gitpod.yml index bf798c72..8b2d4df6 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - name: "Python Environment" before: "pyenv install 3.13 && pyenv global 3.13" - init: "pip install poetry" - command: "export PIP_USER=false && poetry install && poetry run pre-commit install" + init: "pip install uv" + command: "export PIP_USER=false && uv sync && uv run pre-commit install" |