From 91f4d7d721a60e3bbe21c4b64785420b7132a68f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:36:24 +0000 Subject: [PATCH 1/2] Chore(deps-dev): Update ruff requirement from <0.16 to <0.17 Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.18...0.16.0) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 30b9907..d3bfe42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,7 +92,7 @@ optional-dependencies.all = [ optional-dependencies.develop = [ "poethepoet<1", "pyproject-fmt<3", - "ruff<0.16", + "ruff==0.16.*", "sphinx-autobuild>=2024.10.3", "ty==0.0.63", "validate-pyproject>=0.25,<1", From 6634c785bd88ad6f0f79085a757bfe1626fa6de3 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sat, 25 Jul 2026 19:41:55 +0200 Subject: [PATCH 2/2] Chore: Format Markdown with ruff 0.16 --- docs/example/parquet.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/example/parquet.md b/docs/example/parquet.md index 4269a7b..29d3536 100644 --- a/docs/example/parquet.md +++ b/docs/example/parquet.md @@ -24,7 +24,9 @@ pipeline = MacroPipe.from_recipes( ) # Read Parquet data. -lf = pl.scan_parquet("https://cdn.crate.io/downloads/datasets/cratedb-datasets/timeseries/yc.2019.07-tiny.parquet") +lf = pl.scan_parquet( + "https://cdn.crate.io/downloads/datasets/cratedb-datasets/timeseries/yc.2019.07-tiny.parquet" +) # Apply transformation pipeline and compute the result. df = lf.mp.apply(pipeline).collect()