mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
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:
commit
d68ea5969b
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue