Skip to content

Commit db181b2

Browse files
authored
[CI] Try Python 3.11 for Python build (#2539)
1 parent 48fa77a commit db181b2

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/pyflink.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
runs-on: ubuntu-22.04
4949
strategy:
5050
matrix:
51-
include:
52-
- python: '3.10'
51+
python: ['3.11', '3.10']
5352
steps:
5453
- uses: actions/checkout@v6
5554
- uses: actions/setup-java@v5

.github/workflows/python-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
matrix:
5353
os: ['ubuntu-latest', 'windows-latest', 'macos-15']
54-
python: ['3.10', '3.9', '3.8']
54+
python: ['3.11', '3.10', '3.9', '3.8']
5555
runs-on: ${{ matrix.os }}
5656
defaults:
5757
run:

.github/workflows/python.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,18 @@ jobs:
6060
strategy:
6161
matrix:
6262
include:
63+
- spark: '4.0.0'
64+
scala: '2.13.8'
65+
java: '17'
66+
python: '3.11'
6367
- spark: '4.0.0'
6468
scala: '2.13.8'
6569
java: '17'
6670
python: '3.10'
71+
- spark: '3.5.0'
72+
scala: '2.12.8'
73+
java: '11'
74+
python: '3.11'
6775
- spark: '3.5.0'
6876
scala: '2.12.8'
6977
java: '11'
@@ -81,6 +89,10 @@ jobs:
8189
scala: '2.12.8'
8290
java: '11'
8391
python: '3.8'
92+
- spark: '3.4.0'
93+
scala: '2.12.8'
94+
java: '11'
95+
python: '3.11'
8496
- spark: '3.4.0'
8597
scala: '2.12.8'
8698
java: '11'

0 commit comments

Comments
 (0)