Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump ruff from 0.8.6 to 0.9.0 in /plugins/apel #1107

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 collectors/slurm/src/auditorsender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub(crate) struct AuditorSender {
hold_till_shutdown: Option<mpsc::Sender<()>>,
}

impl<'a> AuditorSender {
impl AuditorSender {
#[tracing::instrument(
name = "Starting AuditorSender",
skip(database, rx, shutdown_notifier, shutdown, channel, client)
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
Loading