From bff435cf8da72def86c3c20cb21104ac7bbbcbd1 Mon Sep 17 00:00:00 2001 From: Roy Moore Date: Fri, 5 Jun 2026 01:07:09 +0300 Subject: [PATCH] ci: skip scylla module tests on Python 3.14 --- .github/workflows/ci-community.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-community.yml b/.github/workflows/ci-community.yml index ed36b71c2..000677145 100644 --- a/.github/workflows/ci-community.yml +++ b/.github/workflows/ci-community.yml @@ -50,6 +50,11 @@ jobs: matrix: python-version: ["3.10", "3.13", "3.14"] module: ${{ fromJSON(needs.track-modules.outputs.changed_modules) }} + exclude: + # cassandra-driver has no Python 3.14 support + # (see `python_version < '3.14'` markers in pyproject.toml). + - python-version: "3.14" + module: scylla steps: - name: Checkout contents uses: actions/checkout@v4