Skip to content

Commit

Permalink
deps: lower minimum pyarrow version
Browse files Browse the repository at this point in the history
This commit lowers the minimum supported pyarrow version. We can do that
with no code changes and the SDK still works and all tests pass.
  • Loading branch information
serramatutu committed Aug 19, 2024
1 parent 7420dbb commit 5c1417f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changes/unreleased/Dependencies-20240819-132546.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Dependencies
body: Lower minimum PyArrow version to `12.0.0`
time: 2024-08-19T13:25:46.2092+02:00
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
"mashumaro>=3.11,<4.0",
"typing-extensions>=4.4.0,<5.0.0; python_version<='3.11'",
"typing-extensions>=4.7.0,<5.0.0; python_version>= '3.12'",
"pyarrow>=13.0.0; python_version<='3.11'",
"pyarrow>=12.0.0; python_version<='3.11'",
"pyarrow>=14.0.0; python_version>='3.12'",
"adbc-driver-flightsql>=0.11.0",
"adbc-driver-manager>=0.11.0",
Expand Down

0 comments on commit 5c1417f

Please sign in to comment.