From 2a67dd0a29b51b5869e23f7db9820132d421b044 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 09:27:01 +0200 Subject: [PATCH] Update Albumentations requirement to `>=1.4.6` (#11667) Signed-off-by: dependabot[bot] Signed-off-by: Glenn Jocher Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Glenn Jocher --- docker/Dockerfile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index d9418797fd..ebc49ee0e6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,7 +30,7 @@ ADD https://github.com/ultralytics/assets/releases/download/v8.2.0/yolov8n.pt /u # Install pip packages RUN python3 -m pip install --upgrade pip wheel -RUN pip install --no-cache -e ".[export]" "albumentations<=1.4.4" comet pycocotools +RUN pip install --no-cache -e ".[export]" "albumentations>=1.4.6" comet pycocotools # Run exports to AutoInstall packages # Edge TPU export fails the first time so is run twice here diff --git a/pyproject.toml b/pyproject.toml index 7f83347dee..23fd72c77a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,7 +123,7 @@ logging = [ extra = [ "hub-sdk>=0.0.5", # Ultralytics HUB "ipython", # interactive notebook - "albumentations>=1.0.3,<=1.4.4", # training augmentations + "albumentations>=1.4.6", # training augmentations "pycocotools>=2.0.7", # COCO mAP ]