[
https://issues.apache.org/jira/browse/BEAM-6287?focusedWorklogId=180327&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-180327
]
ASF GitHub Bot logged work on BEAM-6287:
----------------------------------------
Author: ASF GitHub Bot
Created on: 02/Jan/19 17:48
Start Date: 02/Jan/19 17:48
Worklog Time Spent: 10m
Work Description: udim commented on pull request #7337: [BEAM-6287]
pyarrow is not supported on Windows Python 2
URL: https://github.com/apache/beam/pull/7337#discussion_r244803282
##########
File path: sdks/python/apache_beam/io/parquetio_it_test.py
##########
@@ -41,7 +41,14 @@
from apache_beam.transforms import CombineGlobally
from apache_beam.transforms.combiners import Count
+if not (platform.system() == 'Windows' and sys.version_info[0] == 2):
Review comment:
Next time please use the more common format to handle missing modules used
elsewhere in the codebase:
```py
try:
import pyarrow as pa
except ImportError:
pa = None
```
```py
@unittest.skipIf(pa is None, "...")
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 180327)
Time Spent: 3h 10m (was: 3h)
> pyarrow is not supported on Windows Python 2
> --------------------------------------------
>
> Key: BEAM-6287
> URL: https://issues.apache.org/jira/browse/BEAM-6287
> Project: Beam
> Issue Type: Bug
> Components: sdk-py-core
> Affects Versions: 2.10.0
> Reporter: Heejong Lee
> Assignee: Heejong Lee
> Priority: Major
> Time Spent: 3h 10m
> Remaining Estimate: 0h
>
> Beam installation fails on Windows Python 2 since there's no pyarrow package
> for the given platform.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)