Skip to content

Commit

Permalink
build(deps): bump ruff from 0.8.6 to 0.9.0 in /plugins/apel
Browse files Browse the repository at this point in the history
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.8.6 to 0.9.0.
- [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.8.6...0.9.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and dirksammel committed Jan 10, 2025
1 parent 3184ca8 commit 36305d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Dependencies: Update pydantic from 2.9.2 to 2.10.4 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update pyo3 from 0.20.3 to 0.22.5 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update pytest from 8.3.3 to 8.3.4 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update ruff from 0.7.1 to 0.8.6 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update ruff from 0.7.1 to 0.9.0 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update setuptools from 75.3.0 to 75.8.0 ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update sqlx from 0.7.4 to 0.8.2 (missed some occurrences) ([@dirksammel](https://github.com/dirksammel))
- Dependencies: Update types-pyyaml from 6.0.12.20240917 to 6.0.12.20241230 ([@dirksammel](https://github.com/dirksammel))
Expand Down
2 changes: 1 addition & 1 deletion plugins/apel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ readme = "README.md"
[project.optional-dependencies]
style = [
"black==24.10.0",
"ruff==0.8.6",
"ruff==0.9.0",
]
tests = [
"pytest==8.3.4",
Expand Down
2 changes: 1 addition & 1 deletion pyauditor/scripts/test_advanced_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def main():
assert len(records) == 34

for i in range(0, 10):
assert records[i].record_id == f"record2-{9-i:02d}"
assert records[i].record_id == f"record2-{9 - i:02d}"

query_string = QueryBuilder().limit(4).build()

Expand Down
2 changes: 1 addition & 1 deletion pyauditor/scripts/test_advanced_query_blocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def main():
assert len(records) == 34

for i in range(0, 10):
assert records[i].record_id == f"record2-{9-i:02d}"
assert records[i].record_id == f"record2-{9 - i:02d}"

query_string = QueryBuilder().limit(4).build()

Expand Down
2 changes: 1 addition & 1 deletion pyauditor/scripts/test_advanced_query_queued.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ async def main():
assert len(records) == 34

for i in range(0, 10):
assert records[i].record_id == f"record2-{9-i:02d}"
assert records[i].record_id == f"record2-{9 - i:02d}"

query_string = QueryBuilder().limit(4).build()

Expand Down

0 comments on commit 36305d4

Please sign in to comment.