-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8849 from cvat-ai/release-2.24.0
Release v2.24.0
- Loading branch information
Showing
106 changed files
with
2,628 additions
and
1,305 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
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
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,3 +1,3 @@ | ||
cvat-sdk~=2.23.1 | ||
cvat-sdk~=2.24.0 | ||
Pillow>=10.3.0 | ||
setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerability |
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright (C) 2024 CVAT.ai Corporation | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
from .command_base import CommandGroup, DeprecatedAlias | ||
from .commands_projects import COMMANDS as COMMANDS_PROJECTS | ||
from .commands_tasks import COMMANDS as COMMANDS_TASKS | ||
|
||
COMMANDS = CommandGroup(description="Perform operations on CVAT resources.") | ||
|
||
COMMANDS.add_command("project", COMMANDS_PROJECTS) | ||
COMMANDS.add_command("task", COMMANDS_TASKS) | ||
|
||
_legacy_mapping = { | ||
"create": "create", | ||
"ls": "ls", | ||
"delete": "delete", | ||
"frames": "frames", | ||
"dump": "export-dataset", | ||
"upload": "import-dataset", | ||
"export": "backup", | ||
"import": "create-from-backup", | ||
"auto-annotate": "auto-annotate", | ||
} | ||
|
||
for _legacy, _new in _legacy_mapping.items(): | ||
COMMANDS.add_command(_legacy, DeprecatedAlias(COMMANDS_TASKS.commands[_new], f"task {_new}")) |
Oops, something went wrong.