Skip to content

Commit

Permalink
Revert "Update pyarrow requirement from <3.1.0,>=3.0.0 to >=3.0.0,<4.…
Browse files Browse the repository at this point in the history
…1.0 (#695)" (#762)

This reverts commit c3bbcb5.
  • Loading branch information
sfc-gh-abhatnagar committed Jun 17, 2021
1 parent f4db064 commit 4e10307
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ requires = [
"wheel",
"cython",
# Must be kept in sync with the `setup_requirements` in `setup.py`
"pyarrow>=4.0.0,<4.1.0",
'pyarrow>=3.0.0,<3.1.0',
]
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

pandas_requirements = [
# Must be kept in sync with pyproject.toml
"pyarrow>=4.0.0,<4.1.0",
"pyarrow>=3.0.0,<3.1.0",
"pandas>=1.0.0,<1.3.0",
]

Expand Down Expand Up @@ -87,14 +87,14 @@ class MyBuildExt(build_ext):
# this list should be carefully examined when pyarrow lib is
# upgraded
arrow_libs_to_copy = {
"linux": ["libarrow.so.400", "libarrow_python.so.400"],
"darwin": ["libarrow.400.dylib", "libarrow_python.400.dylib"],
"linux": ["libarrow.so.300", "libarrow_python.so.300"],
"darwin": ["libarrow.300.dylib", "libarrow_python.300.dylib"],
"win32": ["arrow.dll", "arrow_python.dll"],
}

arrow_libs_to_link = {
"linux": ["libarrow.so.400", "libarrow_python.so.400"],
"darwin": ["libarrow.400.dylib", "libarrow_python.400.dylib"],
"linux": ["libarrow.so.300", "libarrow_python.so.300"],
"darwin": ["libarrow.300.dylib", "libarrow_python.300.dylib"],
"win32": ["arrow.lib", "arrow_python.lib"],
}

Expand Down

0 comments on commit 4e10307

Please sign in to comment.