From 09972249e96cc16041e8603f44c941fe24fe6a8b Mon Sep 17 00:00:00 2001 From: Junjun2016 Date: Fri, 2 Jul 2021 00:41:52 +0800 Subject: [PATCH] [Fix] Fix mmcv version compatible in get_started.md (#658) * fix mmcv version compatible * update version compatible --- docs/get_started.md | 8 +++++--- mmseg/__init__.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/get_started.md b/docs/get_started.md index 23e6a5286..05f2ddc91 100644 --- a/docs/get_started.md +++ b/docs/get_started.md @@ -11,9 +11,11 @@ The compatible MMSegmentation and MMCV versions are as below. Please install the | MMSegmentation version | MMCV version | |:-------------------:|:-------------------:| -| master | mmcv-full>=1.3.1, <1.4.0 | -| 0.13.0 | mmcv-full>=1.3.1, <1.4.0 | -| 0.12.0 | mmcv-full>=1.1.4, <1.4.0 | +| master | mmcv-full>=1.3.7, <1.4.0 | +| 0.14.1 | mmcv-full>=1.3.7, <1.4.0 | +| 0.14.0 | mmcv-full>=1.3.1, <1.3.2 | +| 0.13.0 | mmcv-full>=1.3.1, <1.3.2 | +| 0.12.0 | mmcv-full>=1.1.4, <1.3.2 | | 0.11.0 | mmcv-full>=1.1.4, <1.3.0 | | 0.10.0 | mmcv-full>=1.1.4, <1.3.0 | | 0.9.0 | mmcv-full>=1.1.4, <1.3.0 | diff --git a/mmseg/__init__.py b/mmseg/__init__.py index 96a8ca14f..dbdebf994 100644 --- a/mmseg/__init__.py +++ b/mmseg/__init__.py @@ -2,7 +2,7 @@ import mmcv from .version import __version__, version_info -MMCV_MIN = '1.3.1' +MMCV_MIN = '1.3.7' MMCV_MAX = '1.4.0'