Skip to content

Commit

Permalink
build: update black version
Browse files Browse the repository at this point in the history
  • Loading branch information
William-Fernandes252 committed Nov 11, 2023
1 parent ac3bee5 commit 67b7c4f
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:django_activity_tracker/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
41 changes: 29 additions & 12 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.8.18,<4.0"

black = { version = "^21.5b2", optional = true }
black = { version = "22.3.0", optional = true }
isort = { version = "^5.8.0", optional = true }
flake8 = { version = "^3.9.2", optional = true }
flake8-docstrings = { version = "^1.6.0", optional = true }
Expand Down Expand Up @@ -107,7 +107,7 @@ doc = [
[tool.black]
line-length = 88
skip-string-normalization = false
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
target-version = ['py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
Expand Down

0 comments on commit 67b7c4f

Please sign in to comment.