Compare commits

...

2 Commits

Author SHA1 Message Date
Todd Gamblin
164da8eed1 Version bump to 0.9.1
- Bugfixes for spack find
- 0.9.1 can read specs from current develop.
2016-05-18 08:30:13 -07:00
alalazo
6e1257ed2d fixes #967 2016-05-18 08:28:02 -07:00
3 changed files with 5 additions and 4 deletions

View File

@@ -105,7 +105,7 @@
# Version information
from spack.version import Version
spack_version = Version("0.9")
spack_version = Version("0.9.1")
#
# Executables used by Spack

View File

@@ -170,7 +170,7 @@ def find(parser, args):
if args.unknown:
known = False
explicit = None
explicit = any
if args.explicit:
explicit = False
if args.implicit:

View File

@@ -717,8 +717,9 @@ def from_node_dict(node):
else:
spec.compiler = CompilerSpec.from_dict(node)
for name, enabled in node['variants'].items():
spec.variants[name] = VariantSpec(name, enabled)
if 'variants' in node:
for name, enabled in node['variants'].items():
spec.variants[name] = VariantSpec(name, enabled)
return spec