diff --git a/binder/environment.yml b/binder/environment.yml index 56331e3..0edc413 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -6,7 +6,7 @@ channels: dependencies: - opencv - - python >=3.6,<3.9.0a0 + - python >=3.6,<3.12.0a0 - jupyterlab >=3.2.9,<3.3 - nodejs >=14,<15 - geckodriver >=0.26.0,<0.27.0 diff --git a/docs/environment.yml b/docs/environment.yml index b74a5b5..ffc514e 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -12,7 +12,6 @@ dependencies: # pretties - ipylab - ipywidgets - - jupyterlab-fonts - jupyter-videochat - jupyterlab-webrtc-docprovider - wxyz_lab diff --git a/dodo.py b/dodo.py index 5d4697c..03a04a1 100644 --- a/dodo.py +++ b/dodo.py @@ -199,7 +199,7 @@ def _clean_wheels(): ), # Not sure, why these were not discovered from conda environment doit.tools.CmdAction( - [PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-widgets==1.1.0", "jupyter-videochat", "jupyterlab-drawio", "jupyterlab-webrtc-docprovider"], + [PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-drawio"], cwd=str(LITE), shell=False, ), @@ -217,20 +217,28 @@ def _build(): "build", "--debug", "--LiteBuildConfig.federated_extensions", - f"{list(LITE.glob('jupyterlab_webrtc_docprovider*'))[-1]}", - "--LiteBuildConfig.federated_extensions", - f"{list(LITE.glob('jupyter_videochat*'))[-1]}", - "--LiteBuildConfig.federated_extensions", - f"{list(LITE.glob('jupyterlab_widgets*'))[-1]}", - "--LiteBuildConfig.federated_extensions", f"{list(LITE.glob('jupyterlab_drawio*'))[-1]}", "--LiteBuildConfig.federated_extensions", - f"{list(LITE.glob('jupyterlab_robotmode*'))[-1]}", - "--LiteBuildConfig.federated_extensions", EXT_WHL, ], cwd=str(LITE) ) + subprocess.check_call( + [ + "mkdir", + "-p", + "_", + ], + cwd=str(LITE) + ) + subprocess.check_call( + [ + "mv", + "_output", + "_/_", + ], + cwd=str(LITE) + ) yield dict( name="build",