panbingkun commented on code in PR #45551:
URL: https://github.com/apache/spark/pull/45551#discussion_r1529878679
##########
.github/workflows/build_and_test.yml:
##########
@@ -438,11 +268,21 @@ jobs:
curl -s
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh >
miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
rm miniconda.sh
+ - name: Install Python test dependencies for branch-3.4
+ if: matrix.branch == 'branch-3.4'
+ run: |
+ python3.9 -m pip install 'numpy==1.24.4'
'pandas<=2.0.3''pyarrow==12.0.1' 'matplotlib==3.7.2' 'torch==2.0.1'
'torchvision==0.15.2' 'scikit-learn==1.1.*'
+ - name: Install Python test dependencies for branch-3.5
+ if: matrix.branch == 'branch-3.5'
+ run: |
+ python3.9 -m pip install 'numpy==1.25.1' 'pandas<=2.0.3'
'pyarrow==12.0.1' 'matplotlib==3.7.2' 'torch==2.0.1' 'torchvision==0.15.2'
'scikit-learn==1.1.*'
# Run the tests.
- name: Run tests
env: ${{ fromJSON(inputs.envs) }}
shell: 'script -q -e -c "bash {0}"'
run: |
+ export SCALA_PROFILE="scala2.13"
+ unset GITHUB_ACTIONS
Review Comment:
hack git compare
--
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]