HyukjinKwon commented on a change in pull request #32657:
URL: https://github.com/apache/spark/pull/32657#discussion_r639316370
##########
File path: .github/workflows/build_and_test.yml
##########
@@ -217,6 +217,16 @@ jobs:
run: |
python3.6 -m pip install numpy 'pyarrow<3.0.0' pandas scipy xmlrunner
plotly>=4.8
python3.6 -m pip list
+ # TODO(SPARK-35507) Move Python 3.9 installtation to the docker image
+ - name: Install Python 3.9
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ architecture: x64
+ - name: Install Python packages (Python 3.9)
+ run: |
+ python3.9 -m pip install numpy 'pyarrow<5.0.0' pandas scipy xmlrunner
plotly>=4.8
Review comment:
Oh yeah. I should've commented here. Python 3.9 support was added from
https://issues.apache.org/jira/browse/ARROW-10224, and I just tentatively tried
PyArrow 4.0.0 but it worked. So I just set it to the highest working version
for now.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]