From b5e8d6ede580f3c9640ce443d17c59a117e466b3 Mon Sep 17 00:00:00 2001 From: Lucas Valente Date: Mon, 19 Aug 2024 14:00:59 -0300 Subject: [PATCH] deps: lower minimum `pyarrow` version (#40) 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. --- .changes/unreleased/Dependencies-20240819-132546.yaml | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .changes/unreleased/Dependencies-20240819-132546.yaml diff --git a/.changes/unreleased/Dependencies-20240819-132546.yaml b/.changes/unreleased/Dependencies-20240819-132546.yaml new file mode 100644 index 0000000..b0fd8c9 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240819-132546.yaml @@ -0,0 +1,3 @@ +kind: Dependencies +body: Lower minimum PyArrow version to `12.0.0` +time: 2024-08-19T13:25:46.2092+02:00 diff --git a/pyproject.toml b/pyproject.toml index fbcdb5f..dcd273d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",