-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9abe85a
commit 0cf677e
Showing
3 changed files
with
6 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,15 @@ | ||
import mmcv | ||
from mmcv import digit_version | ||
|
||
from .version import __version__, short_version | ||
|
||
|
||
def digit_version(version_str): | ||
digit_version = [] | ||
for x in version_str.split('.'): | ||
if x.isdigit(): | ||
digit_version.append(int(x)) | ||
elif x.find('rc') != -1: | ||
patch_version = x.split('rc') | ||
digit_version.append(int(patch_version[0]) - 1) | ||
digit_version.append(int(patch_version[1])) | ||
return digit_version | ||
|
||
|
||
mmcv_minimum_version = '1.1.1' | ||
mmcv_maximum_version = '1.2' | ||
mmcv_version = digit_version(mmcv.__version__) | ||
|
||
|
||
assert (mmcv_version >= digit_version(mmcv_minimum_version) | ||
and mmcv_version <= digit_version(mmcv_maximum_version)), \ | ||
f'MMCV=={mmcv.__version__} is used but incompatible. ' \ | ||
f'Please install mmcv>={mmcv_minimum_version}, <={mmcv_maximum_version}.' | ||
assert digit_version(mmcv_minimum_version) <= mmcv_version \ | ||
<= digit_version(mmcv_maximum_version), \ | ||
f'MMCV=={mmcv.__version__} is used but incompatible. ' \ | ||
f'Please install mmcv>={mmcv_minimum_version}, <={mmcv_maximum_version}.' # noqa: E501 | ||
|
||
__all__ = ['__version__', 'short_version'] |
This file was deleted.
Oops, something went wrong.