Skip to content

Commit

Permalink
pyarrow~=16.0 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-krystianc authored May 8, 2024
1 parent f97e431 commit 465ddfc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
run: python -m cibuildwheel --output-dir dist
# to supply options, put them in 'env', like:
env:
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --exclude libarrow.so.1500 --exclude libparquet.so.1500 -w {dest_dir} {wheel}
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --exclude libarrow.so.1600 --exclude libparquet.so.1600 -w {dest_dir} {wheel}
CIBW_ENVIRONMENT: VCPKG_TARGET_TRIPLET="${{ steps.vcpkg-info.outputs.triplet }}"
CIBW_BUILD_VERBOSITY: 1
# We use manylinux_2_28 for ABI compatibility with pyarrow
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PalletJack reduces the amount of metadata bytes that need to be read and decoded

## Required:

- pyarrow ~= 15.0
- pyarrow ~= 16.0

PalletJack operates on top of pyarrow, making it an essential requirement for both building and using PalletJack. While our source package is compatible with recent versions of pyarrow, the binary distribution package specifically requires the latest major version of pyarrow.

Expand Down
6 changes: 3 additions & 3 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
requires = [
"setuptools>=55.0",
"Cython>=3",
"pyarrow~=15.0",
"pyarrow~=16.0",
"thrift",
]

build-backend = "setuptools.build_meta"

[project]
name = "palletjack"
version = "2.1.2"
version = "2.2.0"
authors = [
{ name="Marcin Krystianc", email="[email protected]" },
]
Expand All @@ -23,7 +23,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"pyarrow~=15.0",
"pyarrow~=16.0",
]

[tool.setuptools.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
setuptools>=55.0
Cython>=3
pyarrow~=15.0
pyarrow~=16.0

0 comments on commit 465ddfc

Please sign in to comment.