You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Tibor Kiss (JIRA)" <ji...@apache.org> on 2017/03/07 16:56:38 UTC

[jira] [Assigned] (BEAM-1546) Specify exact version for Python in the SDK

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

Tibor Kiss reassigned BEAM-1546:
--------------------------------

    Assignee: Tibor Kiss  (was: Ahmet Altay)

> Specify exact version for Python in the SDK
> -------------------------------------------
>
>                 Key: BEAM-1546
>                 URL: https://issues.apache.org/jira/browse/BEAM-1546
>             Project: Beam
>          Issue Type: Bug
>          Components: sdk-py
>    Affects Versions: 0.6.0
>            Reporter: Tibor Kiss
>            Assignee: Tibor Kiss
>            Priority: Trivial
>             Fix For: First stable release
>
>
> Python SDK currently supports Python-2.7 only.
> apache_beam package's init uses named component attribute (sys.version_info.*major*) to bail if unsupported Python is used.
> The named component based version was introduced in Python 2.7 thus
> if one uses older Python version (e.g. 2.6) an AttributeError will be thrown:
> {noformat}
> Traceback (most recent call last):
>   File "apache_beam/examples/complete/autocomplete_test.py", line 22, in <module>
>     import apache_beam as beam
>   File "/Users/tiborkiss/workspace/beam/sdks/python/apache_beam/__init__.py", line 69, in <module>
>     if sys.version_info.major != 2:
> AttributeError: 'tuple' object has no attribute 'major'
> {noformat}
> To fix this problem the {{sys.version_info.major}} should be replaced by {{sys.version_info[0]}}.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)