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:
romainx
2020-04-04 23:04:45 +02:00
parent c99c6babfd
commit d458afffaf
6 changed files with 17 additions and 15 deletions

View File

@@ -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()