Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
MMCV
Commits
6a5cd177
"git@developer.sourcefind.cn:modelzoo/qwen3-vl_pytorch.git" did not exist on "3d735febcd5758570e3451fd9e1b40a7a886a553"
Unverified
Commit
6a5cd177
authored
Mar 21, 2023
by
Zaida Zhou
Committed by
GitHub
Mar 21, 2023
Browse files
Bump version to v2.0.0 (#2675)
parent
c4588297
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mmcv/version.py
mmcv/version.py
+2
-2
No files found.
mmcv/version.py
View file @
6a5cd177
# Copyright (c) OpenMMLab. All rights reserved.
__version__
=
'2.0.0
rc4
'
__version__
=
'2.0.0'
def
parse_version_info
(
version_str
:
str
,
length
:
int
=
4
)
->
tuple
:
...
...
@@ -30,6 +30,6 @@ def parse_version_info(version_str: str, length: int = 4) -> tuple:
return
tuple
(
release
)
version_info
=
(
2
,
0
,
0
,
0
,
'rc'
,
4
)
version_info
=
tuple
(
int
(
x
)
for
x
in
__version__
.
split
(
'.'
)[:
3
]
)
__all__
=
[
'__version__'
,
'version_info'
,
'parse_version_info'
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment