From 31d6d98988b89f80954a0d6ddb1bbe1b8b14c344 Mon Sep 17 00:00:00 2001 From: Dov Benyomin Sohacheski Date: Tue, 31 Oct 2023 21:00:18 +0200 Subject: [PATCH] Ready for merge --- .pre-commit-config.yaml | 7 ++++--- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8c9f2f12f..58b54f9ec 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,17 +6,18 @@ repos: name: Run isort to sort imports in Python files - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.5.0 hooks: - id: check-yaml - id: check-toml - id: end-of-file-fixer - id: mixed-line-ending - id: trailing-whitespace - args: [ --markdown-linebreak-ext=md ] + args: + - --markdown-linebreak-ext=md - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 23.10.1 hooks: - id: black name: Run black (python formatter) diff --git a/pyproject.toml b/pyproject.toml index 3df240f75..41876e6cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ repository = "https://github.com/mingrammer/diagrams" include = ["resources/**/*"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.9" graphviz = ">=0.13.2,<0.21.0" jinja2 = ">=2.10,<4.0" typed-ast = "^1.5.4"