Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(python): Bump the python group in /py-polars with 3 updates #20521

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading