Skip to content

Commit 4b220ca

Browse files
authored
Exclude specific matrix configuration for CI
Exclude Python 3.12 with Paddle backend due to import issue.
1 parent 16a3cd8 commit 4b220ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
matrix:
2222
python-version: ['3.9', '3.10', '3.11', '3.12']
2323
backend: ['tensorflow', 'jax', 'pytorch', 'paddle']
24-
24+
exclude:
25+
# exclude a wired bug can not import paddle
26+
- python-version: '3.12'
27+
backend: 'paddle'
2528
steps:
2629
- uses: actions/checkout@v3
2730
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)