Skip to content

Commit

Permalink
Bump dev deps, including ruff 0.4.2, f-string tweaks, inline code imp…
Browse files Browse the repository at this point in the history
…rovement (#422)
  • Loading branch information
tony committed Apr 27, 2024
2 parents f6ccfd3 + e9c3e20 commit 8ab37d3
Show file tree
Hide file tree
Showing 6 changed files with 122 additions and 117 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
- poetry: 1.8.1 -> 1.8.2

See also: https://github.com/python-poetry/poetry/blob/1.8.2/CHANGELOG.md
- Code quality: Use f-strings in more places (#422)

via [ruff 0.4.2](https://github.com/astral-sh/ruff/blob/v0.4.2/CHANGELOG.md).
- Code quality(`InlineHtmlFormatter._wrap_div`): Tweak handling of style and css class names (#422)

## django-docutils 0.25.0 (2024-03-24)

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
project = about["__title__"]
project_copyright = about["__copyright__"]

version = "%s" % (".".join(about["__version__"].split("."))[:2])
release = "%s" % (about["__version__"])
version = "{}".format(".".join(about["__version__"].split("."))[:2])
release = "{}".format(about["__version__"])

exclude_patterns = ["_build"]

Expand Down

0 comments on commit 8ab37d3

Please sign in to comment.