Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
omercnet committed Nov 10, 2024
1 parent deaefaa commit 23f3b57
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repos:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/psf/black
rev: 24.3.0
rev: 24.10.0
hooks:
- id: black
language_version: python3
Expand Down
94 changes: 70 additions & 24 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ pep8-naming = "0.14.1"
tox = "4.12.1"

[tool.poetry.group.format.dependencies]
black = "24.10.0"
black = [
{ version = "<24.10.0", python = "<3.9" },
{ version = "24.10.0", python = ">=3.9" },
]

[tool.poetry.group.types.dependencies]
mypy = "1.11.2"
Expand Down

0 comments on commit 23f3b57

Please sign in to comment.