Browse Source

fix tests

pull/1050/head
Tobias Bruckert 2 weeks ago
parent
commit
6818d23f45
1 changed files with 12 additions and 9 deletions
  1. +12
    -9
      pyproject.toml

+ 12
- 9
pyproject.toml View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "diagrams"
version = "0.24.0"
version = "0.24.1"
description = "Diagram as Code"
license = "MIT"
authors = ["mingrammer <mingrammer@gmail.com>"]
@@ -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

Loading…
Cancel
Save