From 617a1de4a36fec7d46f4a741b4a9e016c7b7e957 Mon Sep 17 00:00:00 2001 From: Harini Date: Mon, 17 Aug 2026 12:18:44 +0530 Subject: [PATCH] fix: correct hatch env dep format to array syntax --- pyproject.toml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4b26d56a..7d596627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,13 +23,15 @@ diagrams = "diagrams.cli:main" Homepage = "https://diagrams.mingrammer.com" Repository = "https://github.com/mingrammer/diagrams" -[tool.hatch.envs.dev.dependencies] -pytest = ">=8.3,<9" -pylint = ">=3.3,<4" -rope = ">=1.13,<2" -isort = ">=6.0,<7" -black = ">=24.4,<25" -pre-commit = ">=4.0,<5" +[tool.hatch.envs.dev] +dependencies = [ + "pytest>=8.3,<9", + "pylint>=3.3,<4", + "rope>=1.13,<2", + "isort>=6.0,<7", + "black>=24.4,<25", + "pre-commit>=4.0,<5", +] [tool.hatch.build] only-include = ["diagrams", "resources"]