From d678791082bf171fa8d2acc88ca6ef86a1b93165 Mon Sep 17 00:00:00 2001 From: M Bussonnier Date: Fri, 17 Jul 2026 12:37:53 +0200 Subject: [PATCH] install hatch via uv to speedup ci --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2a850c89..fe14b2aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,11 @@ path = "traitlets/_version.py" [tool.hatch.metadata] allow-direct-references = true +[tool.hatch.envs.default] +# uv is already a dependency of hatch, so this costs nothing to enable and +# cuts environment creation from ~16s to ~4s (more on Windows). +installer = "uv" + [tool.hatch.envs.docs] features = ["docs"] [tool.hatch.envs.docs.scripts]