diff --git a/py-polars/requirements-dev.txt b/py-polars/requirements-dev.txt index 7fb358bced22..89c081de50c3 100644 --- a/py-polars/requirements-dev.txt +++ b/py-polars/requirements-dev.txt @@ -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 diff --git a/py-polars/requirements-lint.txt b/py-polars/requirements-lint.txt index df703691f12a..5c6034674239 100644 --- a/py-polars/requirements-lint.txt +++ b/py-polars/requirements-lint.txt @@ -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 diff --git a/py-polars/tests/unit/io/test_hive.py b/py-polars/tests/unit/io/test_hive.py index 4a6384fb5f56..2bb0c6e7d37c 100644 --- a/py-polars/tests/unit/io/test_hive.py +++ b/py-polars/tests/unit/io/test_hive.py @@ -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") diff --git a/py-polars/tests/unit/operations/unique/test_unique.py b/py-polars/tests/unit/operations/unique/test_unique.py index 406a70b6e71f..595ae1db59eb 100644 --- a/py-polars/tests/unit/operations/unique/test_unique.py +++ b/py-polars/tests/unit/operations/unique/test_unique.py @@ -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")) )