Skip to content

Commit 6d1315f

Browse files
committed
Fix CI workflow Python version condition syntax
- Correct the syntax for Python version condition in GitHub Actions workflow - Ensure proper comparison of matrix Python version - Maintain compatibility with different Python versions in CI tests
1 parent af0217e commit 6d1315f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
# coco analyse
7373
sahi coco analyse --dataset_json_path tests/data/coco_evaluate/dataset.json --result_json_path tests/data/coco_evaluate/result.json --out_dir tests/data/coco_evaluate/
7474
- name: Test SAHI CLI with MMCV
75-
if: ${{ matrix.python-version }} != '3.12'
75+
if: matrix.python-version != '3.12'
7676
run: |
7777
source .venv/bin/activate
7878
set -e

0 commit comments

Comments
 (0)