Skip to content

Commit

Permalink
fix tests (#1050)
Browse files Browse the repository at this point in the history
  • Loading branch information
tb102122 authored Nov 7, 2024
1 parent ae3ea71 commit 204495d
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "diagrams"
version = "0.24.0"
version = "0.24.1"
description = "Diagram as Code"
license = "MIT"
authors = ["mingrammer <[email protected]>"]
Expand All @@ -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

0 comments on commit 204495d

Please sign in to comment.