diff --git a/pyproject.toml b/pyproject.toml index 39e657ec..18647d72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ "pyyaml>=5.3", "requests", "tables", - "vedo>=2023.5.0", + "vedo==2024.5.1", ] license = { text = "BSD-3-Clause" } diff --git a/tests/test_integration.py b/tests/test_integration.py index bcbd1e4b..d4de5417 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -295,9 +295,9 @@ def test_slice(scene): scene.slice(plane, actors=[ca1]) scene.render(interactive=False) - assert th_clone.bounds() == th.bounds() - assert mos_clone.bounds() != mos.bounds() - assert ca1_clone.bounds() != ca1.bounds() + assert np.all(th_clone.bounds() == th.bounds()) + assert np.all(mos_clone.bounds() != mos.bounds()) + assert np.all(ca1_clone.bounds() != ca1.bounds()) @pytest.mark.slow