Merge pull request #2911 from theupdateframework/dependabot/pip/test-and-lint-dependencies-3a9aa6d8fd

build(deps): bump ruff from 0.14.14 to 0.15.0 in the test-and-lint-dependencies group
This commit is contained in:
Jussi Kukkonen 2026-02-17 12:20:33 +02:00 committed by GitHub
commit d68ea5969b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
# Lint tools
# (We are not so interested in the specific versions of the tools: the versions
# are pinned to prevent unexpected linting failures when tools update)
ruff==0.14.14
ruff==0.15.0
mypy==1.19.1
zizmor==1.22.0

View file

@ -115,7 +115,7 @@ def wait_for_server(
pass
except OSError as e:
# ECONNREFUSED is expected while the server is not started
if e.errno not in [errno.ECONNREFUSED]:
if e.errno != errno.ECONNREFUSED:
logger.warning(
"Unexpected error while waiting for server: %s", str(e)
)