diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2bec2fe51d..c25847c241 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -206,7 +206,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, macos-14] python-version: ["3.11"] torch: [latest] include: diff --git a/ultralytics/__init__.py b/ultralytics/__init__.py index 57d6ec6629..b140f3795c 100644 --- a/ultralytics/__init__.py +++ b/ultralytics/__init__.py @@ -1,6 +1,6 @@ # Ultralytics YOLO 🚀, AGPL-3.0 license -__version__ = "8.2.66" +__version__ = "8.2.67" import os diff --git a/ultralytics/utils/__init__.py b/ultralytics/utils/__init__.py index db9456d6d7..54cb175a16 100644 --- a/ultralytics/utils/__init__.py +++ b/ultralytics/utils/__init__.py @@ -44,6 +44,7 @@ LOGGING_NAME = "ultralytics" MACOS, LINUX, WINDOWS = (platform.system() == x for x in ["Darwin", "Linux", "Windows"]) # environment booleans ARM64 = platform.machine() in {"arm64", "aarch64"} # ARM64 booleans PYTHON_VERSION = platform.python_version() +TORCH_VERSION = torch.__version__ TORCHVISION_VERSION = importlib.metadata.version("torchvision") # faster than importing torchvision HELP_MSG = """ Usage examples for running YOLOv8: