Skip to content

Commit

Permalink
Update black requirement from ^21.9b0 to ^22.1 (#10)
Browse files Browse the repository at this point in the history
* Update black requirement from ^21.9b0 to ^22.1

Updates the requirements on [black](https://github.com/psf/black) to permit the latest version.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@21.9b0...22.1.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>

* update for black 22.1

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AntiCompositeNumber <anticompositenumber@gmail.com>
  • Loading branch information
dependabot[bot] and AntiCompositeNumber committed Feb 7, 2022
1 parent f197c91 commit 136085a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion acnutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def logger_config(
conf["handlers"]["file"] = {
"class": "logging.handlers.RotatingFileHandler",
"filename": get_log_location(log_file),
"maxBytes": 10 * 1024 ** 2, # 10 MiB
"maxBytes": 10 * 1024**2, # 10 MiB
"backupCount": 5,
"formatter": "log",
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ toolforge = {version="^5.0.0", optional=true}
[tool.poetry.dev-dependencies]
mypy = "^0.931"
flake8 = "^4.0.0"
black = "^21.9b0"
black = "^22.1"
pytest = "^7.0.0"
coveralls = "^3.2.0"
mwparserfromhell = "^0.6.3"
Expand Down

0 comments on commit 136085a

Please sign in to comment.