Skip to content

Commit bc31b65

Browse files
authored
Upgrading dependencies. (#18)
1 parent 511d187 commit bc31b65

File tree

13 files changed

+2089
-1784
lines changed

13 files changed

+2089
-1784
lines changed

.github/workflows/dependabotautomerge.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: github.actor == 'dependabot[bot]'
1919
steps:
2020
- name: automerge
21-
uses: actions/github-script@v7.0.1
21+
uses: actions/github-script@v8.0.0
2222
with:
2323
script: |
2424
github.rest.pulls.createReview({
@@ -34,6 +34,7 @@ jobs:
3434
github.rest.pulls.merge({
3535
owner: context.payload.repository.owner.login,
3636
repo: context.payload.repository.name,
37-
pull_number: context.payload.pull_request.number
37+
pull_number: context.payload.pull_request.number,
38+
merge_method: 'squash',
3839
})
3940
github-token: ${{github.token}}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929

3030
# Run the Ruff linter.
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.12.10
32+
rev: v0.14.1
3333
hooks:
3434
# Linter
3535
- id: ruff

dask-test/pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,13 @@ ignore = [
111111
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
112112
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
113113
"SIM102", # sometimes it's better to nest
114-
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
115-
# of types for comparison.
116-
# Deactivated because it can make the code slow:
117-
# https://github.com/astral-sh/ruff/issues/7871
118114
]
119115
# Allow fix for all enabled rules (when `--fix`) is provided.
120116
fixable = ["ALL"]
121117
unfixable = []
122118
# The fixes in extend-unsafe-fixes will require
123119
# provide the `--unsafe-fixes` flag when fixing.
124-
extend-unsafe-fixes = [
125-
"UP038"
126-
]
120+
extend-unsafe-fixes = []
127121
# Allow unused variables when underscore-prefixed.
128122
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
129123

dask-test/uv.lock

Lines changed: 422 additions & 337 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-health-check/docker_health_check/api/healthcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
import anyio
88
import backoff
99
import requests
10+
from docker.client import DockerClient
1011
from tabulate import tabulate
1112

12-
from docker.client import DockerClient
1313
from docker_health_check import __version__, constants, utils
1414
from docker_health_check.models import ContainerRow
1515
from docker_health_check.notifications import NotificationHub

docker-health-check/pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,20 +147,14 @@ ignore = [
147147
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
148148
"SIM102", # sometimes it's better to nest
149149
"TC001",
150-
"UP038", # Checks for uses of isinstance/issubclass that take a tuple
151-
# of types for comparison.
152-
# Deactivated because it can make the code slow:
153-
# https://github.com/astral-sh/ruff/issues/7871
154150
"N805"
155151
]
156152
# Allow fix for all enabled rules (when `--fix`) is provided.
157153
fixable = ["ALL"]
158154
unfixable = []
159155
# The fixes in extend-unsafe-fixes will require
160156
# provide the `--unsafe-fixes` flag when fixing.
161-
extend-unsafe-fixes = [
162-
"UP038"
163-
]
157+
extend-unsafe-fixes = []
164158
# Allow unused variables when underscore-prefixed.
165159
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
166160

docker-health-check/uv.lock

Lines changed: 211 additions & 172 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

github/pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,19 +126,13 @@ ignore = [
126126
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
127127
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
128128
"SIM102", # sometimes it's better to nest
129-
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
130-
# of types for comparison.
131-
# Deactivated because it can make the code slow:
132-
# https://github.com/astral-sh/ruff/issues/7871
133129
]
134130
# Allow fix for all enabled rules (when `--fix`) is provided.
135131
fixable = ["ALL"]
136132
unfixable = []
137133
# The fixes in extend-unsafe-fixes will require
138134
# provide the `--unsafe-fixes` flag when fixing.
139-
extend-unsafe-fixes = [
140-
"UP038"
141-
]
135+
extend-unsafe-fixes = []
142136
# Allow unused variables when underscore-prefixed.
143137
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
144138

github/uv.lock

Lines changed: 466 additions & 410 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hadoop/pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,19 +130,13 @@ ignore = [
130130
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
131131
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
132132
"SIM102", # sometimes it's better to nest
133-
"UP038" # Checks for uses of isinstance/issubclass that take a tuple
134-
# of types for comparison.
135-
# Deactivated because it can make the code slow:
136-
# https://github.com/astral-sh/ruff/issues/7871
137133
]
138134
# Allow fix for all enabled rules (when `--fix`) is provided.
139135
fixable = ["ALL"]
140136
unfixable = []
141137
# The fixes in extend-unsafe-fixes will require
142138
# provide the `--unsafe-fixes` flag when fixing.
143-
extend-unsafe-fixes = [
144-
"UP038"
145-
]
139+
extend-unsafe-fixes = []
146140
# Allow unused variables when underscore-prefixed.
147141
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
148142

0 commit comments

Comments
 (0)