Skip to content

Commit 1be0ffc

Browse files
chore: expand pyarrow support from 21.0.0 to 24.0.0 (#214)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 2684b93 commit 1be0ffc

4 files changed

Lines changed: 57 additions & 53 deletions

File tree

examples/dataframe/create_write_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
try:
55
import pyarrow as pa # type: ignore
66
except Exception:
7-
pa = None
7+
pa = None # type: ignore[assignment]
88
try:
99
import pandas as pd # type: ignore
1010
except Exception:

nisystemlink/clients/dataframe/_data_frame_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try:
88
import pyarrow as pa # type: ignore
99
except Exception:
10-
pa = None
10+
pa = None # type: ignore[assignment]
1111
from nisystemlink.clients import core
1212
from nisystemlink.clients.core._uplink._base_client import BaseClient
1313
from nisystemlink.clients.core._uplink._methods import (

poetry.lock

Lines changed: 54 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ uplink = { version = "^0.10.0", extras = ["pydantic"] }
4040
pydantic = "^2.11.3"
4141
pyyaml = "^6.0.1"
4242
pandas = "^2.1.0"
43-
pyarrow = { version = "^21.0.0", optional = true }
43+
pyarrow = { version = ">=21,<25", optional = true }
4444

4545
[tool.poetry.extras]
4646
pyarrow = ["pyarrow"]

0 commit comments

Comments
 (0)