Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to pyarrow 17.0.0 #104

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
CIBW_REPAIR_WHEEL_COMMAND_LINUX: >
auditwheel repair -w {dest_dir} {wheel}
--exclude libarrow_python.so
--exclude libarrow.so.1600
--exclude libarrow.so.1700
# There's no python-casacore wheel for amd64-linux or macosx
CIBW_TEST_COMMAND_LINUX: python -c "from arcae.testing import sanity; sanity()"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ jobs:
auditwheel repair
-w {dest_dir} {wheel}
--exclude libarrow_python.so
--exclude libarrow.so.1600
--exclude libarrow.so.1700
CIBW_REPAIR_WHEEL_COMMAND_MACOS: |
DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH delocate-listdeps {wheel}
DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH delocate-wheel \
--require-archs {delocate_archs} \
-w {dest_dir} \
-v {wheel} \
--exclude libarrow_python.dylib \
--exclude libarrow.1600.dylib \
--exclude libarrow.1700.dylib \
--ignore-missing-dependencies

- name: Upload wheel artifacts
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
dependencies = [
"appdirs",
"numpy < 2.0.0",
"pyarrow == 16.0.0"
"pyarrow == 17.0.0"
]

[project.optional-dependencies]
Expand Down Expand Up @@ -46,7 +46,7 @@ requires = [
"cython>=3.0.2",
"scikit-build-core",
"numpy < 2.0.0",
"pyarrow == 16.0.0"]
"pyarrow == 17.0.0"]
build-backend = "scikit_build_core.build"

[tools.setuptools.packages]
Expand Down
Loading