From 1ea514f38ca1cf630a7968ffa07c5484cf532c16 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 18 Jun 2025 01:38:44 +0200 Subject: [PATCH] Apache Superset: Improve probing including pre-release versions --- .github/workflows/application-apache-superset.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/application-apache-superset.yml b/.github/workflows/application-apache-superset.yml index fe40ee1a..4c39716c 100644 --- a/.github/workflows/application-apache-superset.yml +++ b/.github/workflows/application-apache-superset.yml @@ -40,9 +40,12 @@ jobs: fail-fast: false matrix: os: [ ubuntu-22.04 ] - superset-version: [ "3.*", "4.*" ] + superset-version: [ "==3.*", "==4.*", "==5.*" ] python-version: [ "3.9", "3.11" ] cratedb-version: [ 'nightly' ] + exclude: + - superset-version: "==5.*" + python-version: "3.9" services: cratedb: @@ -75,7 +78,7 @@ jobs: - name: Install Apache Superset ${{ matrix.superset-version }} run: | - pip install 'apache-superset==${{ matrix.superset-version }}' + pip install --pre 'apache-superset${{ matrix.superset-version }}' - name: Validate application/apache-superset run: |