We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb23b3a commit 1ea514fCopy full SHA for 1ea514f
.github/workflows/application-apache-superset.yml
@@ -40,9 +40,12 @@ jobs:
40
fail-fast: false
41
matrix:
42
os: [ ubuntu-22.04 ]
43
- superset-version: [ "3.*", "4.*" ]
+ superset-version: [ "==3.*", "==4.*", "==5.*" ]
44
python-version: [ "3.9", "3.11" ]
45
cratedb-version: [ 'nightly' ]
46
+ exclude:
47
+ - superset-version: "==5.*"
48
+ python-version: "3.9"
49
50
services:
51
cratedb:
@@ -75,7 +78,7 @@ jobs:
75
78
76
79
- name: Install Apache Superset ${{ matrix.superset-version }}
77
80
run: |
- pip install 'apache-superset==${{ matrix.superset-version }}'
81
+ pip install --pre 'apache-superset${{ matrix.superset-version }}'
82
83
- name: Validate application/apache-superset
84
0 commit comments