Skip to content

Commit

Permalink
Bump ruff from 0.6.5 to 0.6.7 (#3618)
Browse files Browse the repository at this point in the history
* Bump ruff from 0.6.5 to 0.6.7

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.6.5 to 0.6.7.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.5...0.6.7)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* Updated dependencies in requirements files

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored and je-cook committed Oct 10, 2024
1 parent 3d323de commit 803c1a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
exclude: test_data

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.5
rev: v0.6.7
hooks:
- id: ruff
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion bluemira/base/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def _bm_print(string: str, width: int = 73, *, single_flush: bool = False) -> st
return _bm_print_singleflush(string, width)

strings = [
" " if s == "\n" and i != 0 else s[:-1] if s.endswith("\n") else s
" " if s == "\n" and i != 0 else s.removesuffix("\n")
for i, s in enumerate(string.splitlines(keepends=True))
]
t = [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dev = [
"pytest-html",
"pytest-metadata",
"pytest-json-report",
"ruff==0.6.5",
"ruff==0.6.7",
"sphinx",
"sphinx-autoapi",
"sphinx_copybutton",
Expand Down
2 changes: 1 addition & 1 deletion requirements/uv/all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ rpds-py==0.20.0
# via
# jsonschema
# referencing
ruff==0.6.5
ruff==0.6.7
# via bluemira (pyproject.toml)
scikit-learn==1.5.2
# via bluemira (pyproject.toml)
Expand Down
2 changes: 1 addition & 1 deletion requirements/uv/develop.txt
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ rpds-py==0.20.0
# via
# jsonschema
# referencing
ruff==0.6.5
ruff==0.6.7
# via bluemira (pyproject.toml)
scikit-learn==1.5.2
# via bluemira (pyproject.toml)
Expand Down

0 comments on commit 803c1a8

Please sign in to comment.