Skip to content

ARROW-232 Support PyArrow 16.0 #211

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

Merged
merged 3 commits into from
May 21, 2024
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
- name: Start MongoDB on MacOS
if: ${{ startsWith(runner.os, 'macOS') }}
run: |
brew tap mongodb/brew
brew update
brew install [email protected]
mkdir data
mongod --fork --dbpath=$(pwd)/data --logpath=$PWD/mongo.log
# Install pkg-config
Expand Down
15 changes: 4 additions & 11 deletions bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
[build-system]
requires = [
"setuptools>=47.9",
"wheel>=0.37",
"cython>=0.29",
"setuptools>=61.0",
"cython>=3.0",
# Must be kept in sync with "project.dependencies" below.
"pyarrow>=15.0,<15.1.0",
"pyarrow>=16.0,<16.1.0",
]

[project]
Expand Down Expand Up @@ -35,7 +34,7 @@ readme = "README.md"
requires-python = ">=3.8"
dependencies = [
# Must be kept in sync with "build_sytem.requires" above.
"pyarrow >=15.0,<15.1",
"pyarrow >=16.0,<16.1",
"pymongo >=4.4,<5",
"pandas >=1.3.5,<3",
"packaging >=23.2,<24",
Expand Down Expand Up @@ -102,12 +101,6 @@ faulthandler_timeout = 1500
xfail_strict = true
filterwarnings = [
"error",
# https://github.com/dateutil/dateutil/issues/1314
"module:datetime.datetime.utc:DeprecationWarning",
# https://jira.mongodb.org/browse/ARROW-204
'ignore:Passing a BlockManager to DataFrame is deprecated and will raise in a future version. Use public APIs instead.',
# https://jira.mongodb.org/browse/ARROW-206
'ignore:DatetimeTZBlock is deprecated and will be removed in a future version. Use public APIs instead.'
]

[tool.ruff]
Expand Down
Loading