Skip to content

Commit

Permalink
build(deps-dev): bump ruff from 0.1.6 to 0.4.4 in /clients/python (#82)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump ruff from 0.1.6 to 0.4.4 in /clients/python

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.1.6 to 0.4.4.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.6...v0.4.4)

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

Signed-off-by: dependabot[bot] <[email protected]>

* update tests/conftest.py to ruff check

Signed-off-by: Matteo Mortari <[email protected]>

* Update clients/python/pyproject.toml

Signed-off-by: Matteo Mortari <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Matteo Mortari <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matteo Mortari <[email protected]>
  • Loading branch information
dependabot[bot] and tarilabs authored May 13, 2024
1 parent 2aa0e29 commit 200816c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
52 changes: 26 additions & 26 deletions clients/python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion clients/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,6 @@ def wait_for_grpc(
if results is not None:
return duration
if timeout and duration > timeout:
raise TimeoutError("wait_for_grpc not ready %.3f seconds" % timeout)
msg = f"wait_for_grpc not ready {timeout:.3f} seconds"
raise TimeoutError(msg)
time.sleep(interval)

0 comments on commit 200816c

Please sign in to comment.