From 54a10f0769ffd03628355787843a847e000998c3 Mon Sep 17 00:00:00 2001 From: Michael Krasnyk Date: Fri, 8 Sep 2023 10:33:57 +0200 Subject: [PATCH] pin jupyterlab in conda similar to pyproject.toml --- docs/environment.yml | 2 +- environment-dev.yml | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/environment.yml b/docs/environment.yml index c33ac0045..8210ffb32 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -5,7 +5,7 @@ channels: dependencies: - yarn - - jupyterlab + - jupyterlab>=3.0.0,<3.6 - jupyter-packaging - jupyter-sphinx - scipy diff --git a/environment-dev.yml b/environment-dev.yml index bea5032e3..b9b3b937e 100644 --- a/environment-dev.yml +++ b/environment-dev.yml @@ -5,10 +5,10 @@ dependencies: - pip - wheel - flake8 - - jupyterlab + - jupyterlab>=3.0.0,<3.6 + - jupyter-packaging - ipywidgets - xyzservices - branca - traittypes - - jupyter-packaging~=0.7.9 - pandas diff --git a/pyproject.toml b/pyproject.toml index fa729c7c8..b60697656 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ [build-system] # avoid 3.6 so we don't need the rust buildchain -requires = ["jupyter_packaging~=0.12", "jupyterlab>=3.0.0,<3.6", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging", "jupyterlab>=3.0.0,<3.6", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta"