Quellcode durchsuchen

Fix installing extensions with the new resolutions key

Jason Grout vor 5 Jahren
Ursprung
Commit
1385e70a88
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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 = []