Skip to content

Commit

Permalink
infra: bump ruff from 0.7.4 to 0.8.0 in /dockerfile
Browse files Browse the repository at this point in the history
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.7.4 to 0.8.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.7.4...0.8.0)

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

Fixes:
- help: Apply an isort-style sorting to `__all__` in censorship.py

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and KKoukiou committed Nov 27, 2024
1 parent e0a528f commit 3546e56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dockerfile/anaconda-ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pylint == 3.3.1
astroid == 3.3.5

# ruff for fast linting
ruff == 0.7.4
ruff == 0.8.0

# vulture for dead code analysis
vulture == 2.13
2 changes: 1 addition & 1 deletion tests/pylint/censorship.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
msg-template='{msg_id}({symbol}):{path}:{line},{column}: {obj}: {msg}'
"""

__all__ = ["CensorshipLinter", "CensorshipConfig"]
__all__ = ["CensorshipConfig", "CensorshipLinter"]

import sys
import re
Expand Down

0 comments on commit 3546e56

Please sign in to comment.