Skip to content

Commit

Permalink
Fix black version
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Dec 18, 2023
1 parent 191a458 commit 6edf837
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ lint: test check-codestyle check-safety

.PHONY: update-dev-deps
update-dev-deps:
poetry add --group dev bandit@latest darglint@latest "isort[colors]@latest" pre-commit@latest pydocstyle@latest pylint@latest pytest@latest pyupgrade@latest safety@latest coverage@latest coverage-badge@latest pytest-html@latest pytest-cov@latest
poetry add --group dev --allow-prereleases black@latest
poetry add --group dev bandit@latest darglint@latest "isort[colors]@latest" pydocstyle@latest pylint@latest pytest@latest pyupgrade@latest safety@latest coverage@latest coverage-badge@latest pytest-html@latest pytest-cov@latest
poetry add --group dev black@latest

#* Cleaning
.PHONY: pycache-remove
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tqdm = "^4.66.0"

[tool.poetry.dev-dependencies]
bandit = "^1.7.6"
black = {version = "^23.10.0", allow-prereleases = true}
black = {version = "^23.10.0", allow-prereleases = false}
darglint = "^1.8.1"
isort = {extras = ["colors"], version = "^5.13.2"}
mypy = "^1.7.1"
Expand All @@ -63,15 +63,15 @@ isort = {extras = ["colors"], version = "^5.13.2"}
mypy = "^1.7.1"
pre-commit = "^3.5.0"
pydocstyle = "^6.3.0"
pylint = "^3.0.2"
pylint = "^3.0.3"
pytest = "^7.4.3"
pyupgrade = "^3.15.0"
coverage = "^7.3.3"
coverage-badge = "^1.1.0"
pytest-html = "^4.1.1"
pytest-cov = "^4.1.0"
black = {version = "^23.11.0", allow-prereleases = true}
safety = "^2.4.0b2"
black = "^23.12.0"
safety = "^2.3.5"
pytest-xdist = "^3.4.0"

[tool.black]
Expand Down

0 comments on commit 6edf837

Please sign in to comment.