From 195f213549cac9d1e4eb07d71ae7d5bbfd946842 Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Thu, 23 Mar 2023 10:56:52 +0100 Subject: [PATCH] Fix before-build-npm --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7be9940f9..00be33f2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ "hatchling>=1.10.0", - "jupyterlab>=4.0.0a30", + "jupyterlab>=4.0.0a37", ] build-backend = "hatchling.build" @@ -147,7 +147,7 @@ after-bump-version = [ "python tools/post-bump.py", ] before-build-npm = [ - "python -m pip install 'jupyterlab<4'", + "python -m pip install 'jupyterlab>=4.0.0a37'", "jlpm", "jlpm build:prod", ]