mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 02:46:53 +00:00
8 lines
217 B
Python
8 lines
217 B
Python
from semantic_version import Version
|
|
|
|
|
|
class PartialVersion(Version):
|
|
def __init__(self, version_string: str):
|
|
assert isinstance(version_string, str)
|
|
super().__init__(version_string, partial=True)
|