Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/dependabotautomerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: github.actor == 'dependabot[bot]'
steps:
- name: automerge
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
github.rest.pulls.createReview({
Expand All @@ -34,6 +34,7 @@ jobs:
github.rest.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number
pull_number: context.payload.pull_request.number,
merge_method: 'squash',
})
github-token: ${{github.token}}
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:

# Run the Ruff linter.
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.10
rev: v0.14.1
hooks:
# Linter
- id: ruff
Expand Down
8 changes: 1 addition & 7 deletions dask-test/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,13 @@ ignore = [
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # sometimes it's better to nest
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
# of types for comparison.
# Deactivated because it can make the code slow:
# https://github.com/astral-sh/ruff/issues/7871
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# The fixes in extend-unsafe-fixes will require
# provide the `--unsafe-fixes` flag when fixing.
extend-unsafe-fixes = [
"UP038"
]
extend-unsafe-fixes = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

Expand Down
759 changes: 422 additions & 337 deletions dask-test/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker-health-check/docker_health_check/api/healthcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import anyio
import backoff
import requests
from docker.client import DockerClient
from tabulate import tabulate

from docker.client import DockerClient
from docker_health_check import __version__, constants, utils
from docker_health_check.models import ContainerRow
from docker_health_check.notifications import NotificationHub
Expand Down
8 changes: 1 addition & 7 deletions docker-health-check/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,20 +147,14 @@ ignore = [
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # sometimes it's better to nest
"TC001",
"UP038", # Checks for uses of isinstance/issubclass that take a tuple
# of types for comparison.
# Deactivated because it can make the code slow:
# https://github.com/astral-sh/ruff/issues/7871
"N805"
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# The fixes in extend-unsafe-fixes will require
# provide the `--unsafe-fixes` flag when fixing.
extend-unsafe-fixes = [
"UP038"
]
extend-unsafe-fixes = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

Expand Down
383 changes: 211 additions & 172 deletions docker-health-check/uv.lock

Large diffs are not rendered by default.

8 changes: 1 addition & 7 deletions github/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,19 +126,13 @@ ignore = [
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # sometimes it's better to nest
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
# of types for comparison.
# Deactivated because it can make the code slow:
# https://github.com/astral-sh/ruff/issues/7871
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# The fixes in extend-unsafe-fixes will require
# provide the `--unsafe-fixes` flag when fixing.
extend-unsafe-fixes = [
"UP038"
]
extend-unsafe-fixes = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

Expand Down
876 changes: 466 additions & 410 deletions github/uv.lock

Large diffs are not rendered by default.

8 changes: 1 addition & 7 deletions hadoop/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,19 +130,13 @@ ignore = [
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # sometimes it's better to nest
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
# of types for comparison.
# Deactivated because it can make the code slow:
# https://github.com/astral-sh/ruff/issues/7871
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# The fixes in extend-unsafe-fixes will require
# provide the `--unsafe-fixes` flag when fixing.
extend-unsafe-fixes = [
"UP038"
]
extend-unsafe-fixes = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

Expand Down
759 changes: 422 additions & 337 deletions hadoop/uv.lock

Large diffs are not rendered by default.

8 changes: 1 addition & 7 deletions jupyter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,19 +124,13 @@ ignore = [
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # sometimes it's better to nest
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
# of types for comparison.
# Deactivated because it can make the code slow:
# https://github.com/astral-sh/ruff/issues/7871
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# The fixes in extend-unsafe-fixes will require
# provide the `--unsafe-fixes` flag when fixing.
extend-unsafe-fixes = [
"UP038"
]
extend-unsafe-fixes = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

Expand Down
Loading