Skip to content

Commit 1ea514f

Browse files
committed
Apache Superset: Improve probing including pre-release versions
1 parent fb23b3a commit 1ea514f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/application-apache-superset.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,12 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
os: [ ubuntu-22.04 ]
43-
superset-version: [ "3.*", "4.*" ]
43+
superset-version: [ "==3.*", "==4.*", "==5.*" ]
4444
python-version: [ "3.9", "3.11" ]
4545
cratedb-version: [ 'nightly' ]
46+
exclude:
47+
- superset-version: "==5.*"
48+
python-version: "3.9"
4649

4750
services:
4851
cratedb:
@@ -75,7 +78,7 @@ jobs:
7578
7679
- name: Install Apache Superset ${{ matrix.superset-version }}
7780
run: |
78-
pip install 'apache-superset==${{ matrix.superset-version }}'
81+
pip install --pre 'apache-superset${{ matrix.superset-version }}'
7982
8083
- name: Validate application/apache-superset
8184
run: |

0 commit comments

Comments
 (0)