Skip to content

Commit 05268ad

Browse files
Upgrade PyArrow to 24.0.0 (#132)
1 parent 93f0c00 commit 05268ad

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ Tuning this value may improve performance.
108108

109109
## Requirements
110110

111-
- pyarrow ~= 23.0.0
111+
- pyarrow ~= 24.0.0
112112

113113
JollyJack builds on top of PyArrow. While the source package may work with
114-
newer versions, the prebuilt binary wheels are built and tested against pyarrow 23.x.
114+
newer versions, the prebuilt binary wheels are built and tested against pyarrow 24.x.
115115

116116
## Installation
117117

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
requires = [
33
"setuptools>=55",
44
"Cython>=3",
5-
"pyarrow~=23.0.0",
5+
"pyarrow~=24.0.0",
66
"numpy>=1.16.6",
77
]
88

99
build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "jollyjack"
13-
version = "0.22.2"
13+
version = "0.23.1"
1414
description = "High-performance Parquet reader for loading data directly into NumPy arrays and PyTorch tensors"
1515
readme = "README.md"
1616
requires-python = ">=3.9"
@@ -20,7 +20,7 @@ classifiers = [
2020
"Operating System :: OS Independent",
2121
]
2222
dependencies = [
23-
"pyarrow~=23.0.0",
23+
"pyarrow~=24.0.0",
2424
"numpy>=1.16.6",
2525
]
2626

@@ -51,7 +51,7 @@ manylinux-aarch64-image = "manylinux_2_28"
5151
########################### cibuildwheel Linux #####################
5252
[tool.cibuildwheel.linux]
5353
repair-wheel-command = [
54-
"auditwheel repair --exclude libarrow.so.2300 --exclude libparquet.so.2300 -w {dest_dir} {wheel}",
54+
"auditwheel repair --exclude libarrow.so.2400 --exclude libparquet.so.2400 -w {dest_dir} {wheel}",
5555
]
5656

5757
before-all = [

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pyarrow~=23.0.0
2-
palletjack>=2.10.0
1+
pyarrow~=24.0.0
2+
palletjack>=2.11.0
33
numpy>=1.16.6
44
parameterized
55
humanize

0 commit comments

Comments
 (0)