Skip to content

Commit eb354f6

Browse files
authored
ARROW-148 Add support for pyarrow 11.0 (#125)
* ARROW-148 Add support for pyarrow 11.0 * fix isort
1 parent 3e84f47 commit eb354f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
args: [--line-length=100]
2525

2626
- repo: https://github.com/PyCQA/isort
27-
rev: 5.10.1
27+
rev: 5.12.0
2828
hooks:
2929
- id: isort
3030
files: \.py$

bindings/python/docs/source/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Changes in Version 0.7.0
55
------------------------
66
- Added support for BSON Embedded Document type.
77
- Added support for BSON Array type.
8-
8+
- Support PyArrow 11.0.
99

1010
Changes in Version 0.6.3
1111
------------------------

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [
44
"wheel>=0.37",
55
"cython>=0.29",
66
# Must be kept in sync with the `install_requires` in `setup.cfg`
7-
"pyarrow>=10.0.1,<10.1.0",
7+
"pyarrow>=11.0,<11.1.0",
88
]
99

1010
[tool.cibuildwheel]

bindings/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages = find:
3535
python_requires = >=3.7
3636
install_requires =
3737
# keep versions in sync with pyproject.toml "requires"
38-
pyarrow >=10.0.1,<10.1
38+
pyarrow >=11.0,<11.1
3939
pymongo >=3.11,<5
4040

4141
[options.package_data]

0 commit comments

Comments
 (0)