Skip to content

Commit

Permalink
chore(python): Bump the python group in /py-polars with 3 updates (#2…
Browse files Browse the repository at this point in the history
…0521)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stijn de Gooijer <stijndegooijer@gmail.com>
  • Loading branch information
dependabot[bot] and stinodego authored Jan 2, 2025
1 parent ed37ace commit c5790a7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion py-polars/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ hypothesis
# -------

pytest==8.3.2
pytest-codspeed==3.0.0
pytest-codspeed==3.1.0
pytest-cov==6.0.0
pytest-xdist==3.6.1

Expand Down
4 changes: 2 additions & 2 deletions py-polars/requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mypy[faster-cache]==1.13.0
mypy[faster-cache]==1.14.1
ruff==0.8.1
typos==1.28.1
typos==1.29.0
2 changes: 1 addition & 1 deletion py-polars/tests/unit/io/test_hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def test_hive_partitioned_projection_pushdown(
q = pl.scan_parquet(
root / "**/*.parquet",
hive_partitioning=True,
parallel=parallel, # type: ignore[arg-type]
parallel=parallel,
)

expected = q.collect().select("category")
Expand Down
2 changes: 1 addition & 1 deletion py-polars/tests/unit/operations/unique/test_unique.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_unique_predicate_pd() -> None:
for maintain_order in (True, False):
for keep in ("first", "last", "any", "none"):
q = (
lf.unique("x", maintain_order=maintain_order, keep=keep) # type: ignore[arg-type]
lf.unique("x", maintain_order=maintain_order, keep=keep)
.filter(pl.col("x") == "abc")
.filter(pl.col("z"))
)
Expand Down

0 comments on commit c5790a7

Please sign in to comment.