pan3793 commented on code in PR #3779:
URL: https://github.com/apache/kyuubi/pull/3779#discussion_r1114088293
##########
.github/workflows/master.yml:
##########
@@ -182,6 +182,14 @@ jobs:
java-version: ${{ matrix.java }}
cache: 'maven'
check-latest: false
+ - name: Setup Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.8'
+ - name: Install a PyFlink dependency
+ run: |
+ python -m pip install --upgrade pip
+ pip install apache-flink==${{ matrix.flink }}.0
Review Comment:
We can get the exact flink version by
```
IT_FLINK=`echo "${{ matrix.flink-archive }}" | grep -E
'flink\-([0-9]+\.[0-9]+.[0-9]+)\-bin' -o | grep -E '[0-9]+\.[0-9]+' -o`
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]