ソースを参照

Fix installing extensions with the new resolutions key

Jason Grout 5 年 前
コミット
1385e70a88
1 ファイル変更1 行追加1 行削除
  1. 1 1
      jupyterlab/commands.py

+ 1 - 1
jupyterlab/commands.py

@@ -1749,7 +1749,7 @@ def _get_static_data(app_dir):
 def _validate_compatibility(extension, deps, core_data):
     """Validate the compatibility of an extension.
     """
-    core_deps = core_data['dependencies']
+    core_deps = core_data['resolutions']
     singletons = core_data['jupyterlab']['singletonPackages']
 
     errors = []