Skip to content

Commit

Permalink
[BEAM-8368] Add a <0.14.0 bound for pyarrow
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilwu committed Oct 11, 2019
1 parent b288d5a commit dfee50b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ def get_version():
'oauth2client>=2.0.1,<4',
'protobuf>=3.5.0.post1,<4',
# [BEAM-6287] pyarrow is not supported on Windows for Python 2
('pyarrow>=0.11.1,<0.15.0; python_version >= "3.0" or '
# [BEAM-8368] pyarrow>=0.14.0 triggers an exception when importing
# apache_beam on macOS 10.15
('pyarrow>=0.11.1,<0.14.0; python_version >= "3.0" or '
'platform_system != "Windows"'),
'pydot>=1.2.0,<2',
'python-dateutil>=2.8.0,<3',
Expand Down

0 comments on commit dfee50b

Please sign in to comment.