From d1b4afbce036fd629144b59c260463f51b00dd5a Mon Sep 17 00:00:00 2001 From: Filippo Luca Ferretti <102977828+flferretti@users.noreply.github.com> Date: Mon, 10 Feb 2025 11:17:33 +0100 Subject: [PATCH] Update Pixi configuration for `depends-on` This PR updates the `pixi` configuration option as per https://github.com/prefix-dev/pixi/pull/2891 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d2740bf68..5dffadd81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -246,9 +246,9 @@ jaxsim = { path = "./", editable = true } [tool.pixi.feature.test.tasks] pipcheck = "pip check" -benchmark = { cmd = "pytest --benchmark-only", depends_on = ["pipcheck"] } +benchmark = { cmd = "pytest --benchmark-only", depends-on = ["pipcheck"] } lint = { cmd = "pre-commit run --all-files --hook-stage=manual" } -test = { cmd = "pytest", depends_on = ["pipcheck"] } +test = { cmd = "pytest", depends-on = ["pipcheck"] } [tool.pixi.feature.test.dependencies] black-jupyter = "24.*"