From cac4c9947cc71a7b953f17e6274436bff351b650 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 2 Nov 2025 14:57:21 +0100 Subject: [PATCH] Application/Superset: Stop testing Apache Superset 3.x The fix to make it work would be easy and landed in 4.x already, but upstream doesn't seem to get it into 3.x somehow. --- .github/workflows/application-apache-superset.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/application-apache-superset.yml b/.github/workflows/application-apache-superset.yml index fe40ee1a..d27a2046 100644 --- a/.github/workflows/application-apache-superset.yml +++ b/.github/workflows/application-apache-superset.yml @@ -40,7 +40,13 @@ jobs: fail-fast: false matrix: os: [ ubuntu-22.04 ] - superset-version: [ "3.*", "4.*" ] + superset-version: [ + # Deactivate testing 3.x until that patch landed. + # https://github.com/apache/superset/issues/33162 + # https://github.com/apache/superset/pull/33216 + # "3.*", + "4.*", + ] python-version: [ "3.9", "3.11" ] cratedb-version: [ 'nightly' ]