Skip to content

Commit be3c5dc

Browse files
committed
update ci-tests yaml
1 parent d1ce8a8 commit be3c5dc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci-tests.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
19+
include:
20+
# Python 3.14 is allowed to fail due to PySpark incompatibility (segfaults in cloudpickle)
21+
# Tests run for diagnostic purposes but don't block CI
22+
- python-version: "3.14"
23+
experimental: true
1924
fail-fast: false
25+
continue-on-error: ${{ matrix.experimental || false }}
2026

2127
steps:
2228
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)