-
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 #8918 from cvat-ai/release-2.25.0
Release v2.25.0
- Loading branch information
Showing
288 changed files
with
5,544 additions
and
3,248 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 |
---|---|---|
|
@@ -5,35 +5,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
cvat-sdk/**/*.py | ||
cvat-cli/**/*.py | ||
tests/python/**/*.py | ||
cvat/apps/quality_control/**/*.py | ||
cvat/apps/analytics_report/**/*.py | ||
dir_names: true | ||
|
||
- name: Run checks | ||
run: | | ||
# If different modules use different isort configs, | ||
# we need to run isort for each python component group separately. | ||
# Otherwise, they all will use the same config. | ||
pipx install $(grep "^isort" ./dev/requirements.txt) | ||
UPDATED_DIRS="${{steps.files.outputs.all_changed_files}}" | ||
echo "isort version: $(isort --version-number)" | ||
if [[ ! -z $UPDATED_DIRS ]]; then | ||
pipx install $(egrep "isort.*" ./cvat-cli/requirements/development.txt) | ||
echo "isort version: $(isort --version-number)" | ||
echo "The dirs will be checked: $UPDATED_DIRS" | ||
EXIT_CODE=0 | ||
for DIR in $UPDATED_DIRS; do | ||
isort --check $DIR || EXIT_CODE=$(($? | $EXIT_CODE)) || true | ||
done | ||
exit $EXIT_CODE | ||
else | ||
echo "No files with the \"py\" extension found" | ||
fi | ||
isort --check --diff --resolve-all-configs . |
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,5 @@ | ||
cvat-sdk~=2.24.0 | ||
cvat-sdk==2.25.0 | ||
|
||
attrs>=24.2.0 | ||
Pillow>=10.3.0 | ||
setuptools>=70.0.0 # not directly required, pinned by Snyk to avoid a vulnerability |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.