Skip to content

Commit 2859a92

Browse files
authored
ARROW-244 Add support for PyArrow 17 (#226)
* ARROW-244 Add support for PyArrow 17 * use macos12
1 parent ce4c1d1 commit 2859a92

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
- buildplat: [macos-14, macosx_*]
4040
python: "cp39"
4141
include:
42-
- buildplat: [macos-11, macosx_*]
42+
- buildplat: [macos-12, macosx_*]
4343
python: "cp38"
44-
- buildplat: [macos-11, macosx_*]
44+
- buildplat: [macos-12, macosx_*]
4545
python: "cp39"
4646

4747
steps:

bindings/python/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ requires = [
33
"setuptools>=61.0",
44
"cython>=3.0",
55
# Must be kept in sync with "project.dependencies" below.
6-
"pyarrow>=16.0,<16.1.0",
6+
"pyarrow>=17.0,<17.1.0",
77
]
88

99
[project]
1010
name = "pymongoarrow"
11-
description = '"Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB"'
11+
description = "Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB"
1212
license = {text = "Apache License, Version 2.0"}
1313
authors = [{name = "Prashant Mital"}]
1414
maintainers = [{name = "MongoDB"}, {name = "Inc."}]
@@ -34,7 +34,7 @@ readme = "README.md"
3434
requires-python = ">=3.8"
3535
dependencies = [
3636
# Must be kept in sync with "build_sytem.requires" above.
37-
"pyarrow >=16.0,<16.1",
37+
"pyarrow >=17.0,<17.1",
3838
"pymongo >=4.4,<5",
3939
"pandas >=1.3.5,<3",
4040
"packaging >=23.2,<24",

0 commit comments

Comments
 (0)