You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (Jira)" <ji...@apache.org> on 2021/11/08 21:06:00 UTC

[jira] [Updated] (SPARK-37244) Support Python 3.10

     [ https://issues.apache.org/jira/browse/SPARK-37244?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dongjoon Hyun updated SPARK-37244:
----------------------------------
    Description: 
Python 3.10 introduced breaking changes. We need to update PySpark.
- https://docs.python.org/3/whatsnew/3.10.html

For example, the following.
{code}
>>> 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
{code}

  was:
Python 3.10 introduced a breaking change. We need to update PySpark.
{code}
>>> 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
{code}


> Support Python 3.10
> -------------------
>
>                 Key: SPARK-37244
>                 URL: https://issues.apache.org/jira/browse/SPARK-37244
>             Project: Spark
>          Issue Type: Improvement
>          Components: PySpark
>    Affects Versions: 3.3.0
>            Reporter: Dongjoon Hyun
>            Priority: Major
>
> Python 3.10 introduced breaking changes. We need to update PySpark.
> - https://docs.python.org/3/whatsnew/3.10.html
> For example, the following.
> {code}
> >>> 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
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org