Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump selenium from 4.16.0 to 4.18.0 #134

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions happypose/toolbox/renderer/panda3d_batch_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def worker_loop(
rgb=renderings_.rgb,
normals=renderings_.normals if render_args.render_normals else None,
depth=renderings_.depth if render_args.render_depth else None,
binary_mask=renderings_.binary_mask
if render_args.render_binary_mask
else None,
binary_mask=(
renderings_.binary_mask if render_args.render_binary_mask else None
),
)
del render_args
out_queue.put(output)
Expand Down
9 changes: 5 additions & 4 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ scikit-image = "^0.22.0"
scikit-learn = "^1.3.1"
scipy = "^1.11.2"
seaborn = "^0.12.2"
selenium = "^4.16.0"
selenium = "^4.18.0"
simplejson = "^3.19.1"
torch = [
{markers = "extra=='cpu'", optional = true, source = "torch_cpu", version = "1.13.1+cpu"},
Expand Down
1 change: 1 addition & 0 deletions tests/test_renderer_bullet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Set of unit tests for bullet renderer."""

import unittest
from pathlib import Path

Expand Down
Loading