From 204495dc70efa494c098370be96e1bf700fdab21 Mon Sep 17 00:00:00 2001 From: Tobias Bruckert <62531735+tb102122@users.noreply.github.com> Date: Thu, 7 Nov 2024 11:33:13 +1100 Subject: [PATCH] fix tests (#1050) --- pyproject.toml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3f22ac6a..46957ee1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "diagrams" -version = "0.24.0" +version = "0.24.1" description = "Diagram as Code" license = "MIT" authors = ["mingrammer "] @@ -9,18 +9,21 @@ homepage = "https://diagrams.mingrammer.com" repository = "https://github.com/mingrammer/diagrams" include = ["resources/**/*"] +[tool.poetry.scripts] +diagrams="diagrams.cli:main" + [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" graphviz = ">=0.13.2,<0.21.0" jinja2 = ">=2.10,<4.0" -typed-ast = { version = "^1.5.5", markers = "python_version < '3.8'} +typed-ast = {version="^1.5.5", markers="python_version<'3.8'"} [tool.poetry.dev-dependencies] -pytest = "^7.3" -pylint = "^2.7" -rope = "^0.14.0" -isort = "^4.3" -black = "^22.12.0" +pytest = "^8.2" +pylint = "^3.2" +rope = "^1.13" +isort = "^5.13" +black = "^24.4" [tool.black] -line-length = 120 +line-length=120 \ No newline at end of file