From f70cd6ada12f2a7a4fa12322b0ca0812d15e46eb Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Wed, 14 Aug 2024 18:18:13 +0200 Subject: [PATCH] Upgrade to pyarrow 17.0.0 --- .cirrus.yml | 2 +- .github/workflows/ci.yml | 4 ++-- pyproject.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index ff2d28dc..5de235ac 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -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()" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f395d15a..831bce3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -182,7 +182,7 @@ 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 \ @@ -190,7 +190,7 @@ jobs: -w {dest_dir} \ -v {wheel} \ --exclude libarrow_python.dylib \ - --exclude libarrow.1600.dylib \ + --exclude libarrow.1700.dylib \ --ignore-missing-dependencies - name: Upload wheel artifacts diff --git a/pyproject.toml b/pyproject.toml index 66ff077a..fd796e47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ dependencies = [ "appdirs", "numpy < 2.0.0", - "pyarrow == 16.0.0" + "pyarrow == 17.0.0" ] [project.optional-dependencies] @@ -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]