diff --git a/ultralytics/__init__.py b/ultralytics/__init__.py index 6ca4f423..35c06301 100644 --- a/ultralytics/__init__.py +++ b/ultralytics/__init__.py @@ -1,6 +1,6 @@ # Ultralytics YOLO 🚀, AGPL-3.0 license -__version__ = "8.3.35" +__version__ = "8.3.36" import os diff --git a/ultralytics/engine/exporter.py b/ultralytics/engine/exporter.py index 211282f7..77996f0f 100644 --- a/ultralytics/engine/exporter.py +++ b/ultralytics/engine/exporter.py @@ -501,8 +501,7 @@ class Exporter: @try_export def export_openvino(self, prefix=colorstr("OpenVINO:")): """YOLO OpenVINO export.""" - # WARNING: numpy>=2.0.0 issue with OpenVINO on macOS https://github.com/ultralytics/ultralytics/pull/17221 - check_requirements(f'openvino{"<=2024.0.0" if ARM64 else ">=2024.0.0"}') # fix OpenVINO issue on ARM64 + check_requirements("openvino>=2024.5.0") import openvino as ov LOGGER.info(f"\n{prefix} starting export with openvino {ov.__version__}...") @@ -530,7 +529,7 @@ class Exporter: if self.args.int8: fq = str(self.file).replace(self.file.suffix, f"_int8_openvino_model{os.sep}") fq_ov = str(Path(fq) / self.file.with_suffix(".xml").name) - check_requirements("nncf>=2.8.0") + check_requirements("nncf>=2.14.0") import nncf def transform_fn(data_item) -> np.ndarray: