[Fix] Fix mmcv version compatible in get_started.md (#658)

* fix mmcv version compatible

* update version compatible
This commit is contained in:
Junjun2016 2021-07-02 00:41:52 +08:00 committed by GitHub
parent b6c7c77a08
commit 09972249e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -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 |

View File

@ -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'