Skip to content

Commit 8fd4958

Browse files
fmt + rc7 release
1 parent 08a9add commit 8fd4958

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hiplot-mm"
7-
version = "0.0.4rc6"
7+
version = "0.0.4rc7"
88
description = "High dimensional Interactive Plotting tool"
99
readme = "README.md"
1010
license = "MIT"

tests/hiplot.spec.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,9 @@ test("distribution switches axes on menu selection", async ({ page }) => {
242242
).toBeVisible();
243243
});
244244

245-
test("distribution categorical bars stay aligned with labels after keep/filter", async ({ page }) => {
245+
test("distribution categorical bars stay aligned with labels after keep/filter", async ({
246+
page,
247+
}) => {
246248
await loadDemo(page, "demo_distribution_colors_deterministic");
247249
const labels = page.locator(".pplot-label");
248250
await expect(labels.first()).toBeVisible();
@@ -303,7 +305,10 @@ test("distribution categorical bars stay aligned with labels after keep/filter",
303305
return { ok: false, reason: "no-non-empty-bars" };
304306
}
305307
if (!nonEmpty.every((b) => b.sample === "green")) {
306-
return { ok: false, reason: `non-green-samples:${nonEmpty.map((b) => b.sample).join(",")}` };
308+
return {
309+
ok: false,
310+
reason: `non-green-samples:${nonEmpty.map((b) => b.sample).join(",")}`,
311+
};
307312
}
308313
return { ok: true, reason: "green" };
309314
});

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)