From 6bad018045e24ffff1778632383569930a0ac990 Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Wed, 25 Mar 2026 12:52:08 +0000 Subject: [PATCH] Change dev-dependencies to dependency-groups.dev --- pyproject.toml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 269b109..c599887 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,16 +7,16 @@ authors = [ { "name" = "Santiago Martinez Balvanera", "email" = "santiago.balvanera.20@ucl.ac.uk" }, ] dependencies = [ - "click>=8.1.7", - "librosa>=0.10.1", - "matplotlib>=3.7.1", - "numpy>=1.23.5", - "pandas>=1.5.3", - "scikit-learn>=1.2.2", - "scipy>=1.10.1", - "torch>=1.13.1", - "torchaudio>=1.13.1", - "torchvision>=0.14.0", + "click>=8.1.7", + "librosa>=0.10.1", + "matplotlib>=3.7.1", + "numpy>=1.23.5", + "pandas>=1.5.3", + "scikit-learn>=1.2.2", + "scipy>=1.10.1", + "torch>=1.13.1", + "torchaudio>=1.13.1", + "torchvision>=0.14.0", ] requires-python = ">=3.9,<3.15" readme = "README.md" @@ -51,13 +51,13 @@ build-backend = "hatchling.build" [project.scripts] batdetect2 = "batdetect2.cli:cli" -[tool.uv] -dev-dependencies = [ - "debugpy>=1.8.8", - "hypothesis>=6.118.7", - "pyright>=1.1.388", - "pytest>=7.2.2", - "ruff>=0.7.3", +[dependency-groups] +dev = [ + "debugpy>=1.8.8", + "hypothesis>=6.118.7", + "pyright>=1.1.388", + "pytest>=7.2.2", + "ruff>=0.7.3", ] [tool.ruff]