mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
Big upgrade
- Bump root container version - Bump packages of - scipy-notebook - r-notebook - datascience-notebook - add -y flag to jupyter lab commands in scipy-notebook - Fix a bug in check outdated packages when packages installed through pip
This commit is contained in:
@@ -89,7 +89,9 @@ class CondaPackageHelper:
|
||||
"""Extract packages and versions from the lines returned by the list of specifications"""
|
||||
dependencies = json.loads(env_export).get("dependencies")
|
||||
packages_dict = dict()
|
||||
for split in map(lambda x: x.split("=", 1), dependencies):
|
||||
for split in map(lambda x: x.split("=", 1) if isinstance(x, str) else None, dependencies):
|
||||
if split is None:
|
||||
break
|
||||
# default values
|
||||
package = split[0]
|
||||
version = set()
|
||||
|
Reference in New Issue
Block a user