From edbab234c0ad6351860376dbcaac971c8b6f17e0 Mon Sep 17 00:00:00 2001 From: gaojianfei Date: Thu, 1 Sep 2022 12:21:12 +0800 Subject: [PATCH] Update MMCV version --- .circleci/test.yml | 8 ++++---- mmrazor/__init__.py | 2 +- requirements/mminstall.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/test.yml b/.circleci/test.yml index 35696aec..92ac230c 100644 --- a/.circleci/test.yml +++ b/.circleci/test.yml @@ -160,7 +160,7 @@ workflows: torch: 1.6.0 torchvision: 0.7.0 python: 3.6.9 # The lowest python 3.6.x version available on CircleCI images - mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cpu/torch1.6.0/mmcv_full-2.0.0rc0-cp36-cp36m-manylinux1_x86_64.whl + mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cpu/torch1.6.0/mmcv_full-2.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl requires: - lint - build_cpu: @@ -168,7 +168,7 @@ workflows: torch: 1.9.0 torchvision: 0.10.0 python: 3.9.0 - mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cpu/torch1.9.0/mmcv_full-2.0.0rc0-cp39-cp39-manylinux1_x86_64.whl + mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cpu/torch1.9.0/mmcv_full-2.0.0rc1-cp39-cp39-manylinux1_x86_64.whl requires: - minimum_version_cpu - hold: @@ -181,7 +181,7 @@ workflows: # Use double quotation mark to explicitly specify its type # as string instead of number cuda: "10.2" - mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cu102/torch1.8.0/mmcv_full-2.0.0rc0-cp37-cp37m-manylinux1_x86_64.whl + mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cu102/torch1.8.0/mmcv_full-2.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl requires: - hold merge_stage_test: @@ -194,7 +194,7 @@ workflows: torch: 1.6.0 # Use double quotation mark to explicitly specify its type # as string instead of number - mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cu101/torch1.6.0/mmcv_full-2.0.0rc0-cp37-cp37m-manylinux1_x86_64.whl + mmcv: https://download.openmmlab.com/mmcv/dev-2.x/cu101/torch1.6.0/mmcv_full-2.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl cuda: "10.1" filters: branches: diff --git a/mmrazor/__init__.py b/mmrazor/__init__.py index ee67b64f..abb24aff 100644 --- a/mmrazor/__init__.py +++ b/mmrazor/__init__.py @@ -47,7 +47,7 @@ def digit_version(version_str: str, length: int = 4): return tuple(release) -mmcv_minimum_version = '2.0.0rc0' +mmcv_minimum_version = '2.0.0rc1' mmcv_maximum_version = '2.0.0' mmcv_version = digit_version(mmcv.__version__) diff --git a/requirements/mminstall.txt b/requirements/mminstall.txt index 21858b91..580af80e 100644 --- a/requirements/mminstall.txt +++ b/requirements/mminstall.txt @@ -1,2 +1,2 @@ -mmcv>=2.0.0rc0 +mmcv>=2.0.0rc1 mmengine