diff --git a/pyproject.toml b/pyproject.toml index 2893ad20c4..dffbdb1888 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ loggers = [ "comet-ml>=3.31.7", "gradio>=4", "tensorboard", - "wandb>=0.12.17,<=0.15.9", + "wandb>=0.12.17", "mlflow >=1.0.0", ] notebooks = ["gitpython", "ipykernel", "ipywidgets", "notebook"] diff --git a/tests/integration/model/test_models.py b/tests/integration/model/test_models.py index e743cd52f2..4e21db4e04 100644 --- a/tests/integration/model/test_models.py +++ b/tests/integration/model/test_models.py @@ -148,6 +148,11 @@ def test_export( # https://github.com/openvinotoolkit/anomalib/issues/1513 pytest.skip(f"{model_name} fails to convert to OpenVINO") + # TODO(samet-akcay, ashwinvaidya17): Fix this test after fixing the issue + # https://github.com/openvinotoolkit/anomalib/issues/2047 + if model_name == "cs_flow" and export_type == ExportType.OPENVINO: + pytest.skip(f"{model_name} is not supported for OpenVINO export") + model, dataset, engine = self._get_objects( model_name=model_name, dataset_path=dataset_path,