Skip to content

Commit 0813fe2

Browse files
authored
ci: Unpin polars==1.34.0 in --group typing (#3434)
1 parent 381104d commit 0813fe2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ typing = [ # keep some of these pinned and bump periodically so there's fewer s
8383
"pyarrow-stubs==19.2",
8484
"sqlframe",
8585
"sqlglot<28.6.0",
86-
"polars==1.34.0",
86+
"polars",
8787
"uv",
8888
"narwhals[ibis]",
8989
]

tests/frame/concat_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def test_concat_diagonal_invalid(
129129
)
130130
)
131131
context: Any
132-
if impl.is_polars() and POLARS_VERSION < (1,): # pragma: no cover
132+
if impl.is_polars() and POLARS_VERSION < (1, 1): # pragma: no cover
133133
context = pytest.raises(
134134
NarwhalsError,
135135
match=re.compile(r"(int.+datetime)|(datetime.+int)", re.IGNORECASE),

0 commit comments

Comments
 (0)