Skip to content

Commit eeb2da6

Browse files
committed
fix: conditionally install dependencies for specific Python version
1 parent 286eea6 commit eeb2da6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ jobs:
328328
repo-token: ${{ secrets.GITHUB_TOKEN }}
329329

330330
- name: Install dependencies
331+
if: matrix.python-version != '3.14t'
331332
run: uv sync --dev --no-install-package datafusion
332333

333334
# Run clippy BEFORE maturin so we can avoid rebuilding. The features must match
@@ -425,6 +426,7 @@ jobs:
425426
repo-token: ${{ secrets.GITHUB_TOKEN }}
426427

427428
- name: Install dependencies
429+
if: matrix.python-version != '3.14t'
428430
run: uv sync --dev --no-install-package datafusion
429431

430432
- name: Build (release mode)

0 commit comments

Comments
 (0)