dongjoon-hyun opened a new pull request #34526: URL: https://github.com/apache/spark/pull/34526
### What changes were proposed in this pull request? This PR aims to support building and testing on Python 3.10. ### Why are the changes needed? Python 3.10 added many new features and breaking changes. - https://docs.python.org/3/whatsnew/3.10.html For example, the following blocks building and testing on Python 3.10. ``` >>> from collections import Callable <stdin>:1: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working ``` ### Does this PR introduce _any_ user-facing change? Yes, this will add the official support of Python 3.10. ### How was this patch tested? Pass the CIs and manually run Python tests on Python 3.10. -- 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]
