From a31a7408ba6eb0bfef8e8d8195b10a214eaa40b9 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 8 Dec 2025 20:24:48 +0100 Subject: [PATCH 1/2] Update ignored links pattern in build workflow --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb917f073f..8423139524 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -174,7 +174,7 @@ jobs: - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1 with: - ignore_links: 'https://playwright.dev/docs/test-cli/ https://blog.jupyter.org/the-big-split-9d7b88a031a7 https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e https://mybinder.org/v2/gh/jupyter/notebook/main https://nbviewer.jupyter.org https://stackoverflow.com https://github.com/[^/]+/?$' + ignore_links: 'https://playwright.dev/docs/test-cli/ https://blog.jupyter.org/.* https://mybinder.org/v2/gh/jupyter/notebook/main https://nbviewer.jupyter.org https://stackoverflow.com https://github.com/[^/]+/?$' ignore_glob: 'ui-tests/test/notebooks/*' test_lint: From b4489e5e15fac7af0502742f435b3f00cb8b5362 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 8 Dec 2025 21:14:09 +0100 Subject: [PATCH 2/2] fix hatch build --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6e8f7cdd52..bac56d3f6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [build-system] requires = [ "hatchling>=1.11", + "hatch-jupyter-builder>=0.5", "jupyterlab>=4.5.0rc0,<4.6", ] build-backend = "hatchling.build"