Skip to content

Commit

Permalink
Version bump to 0.9.1
Browse files Browse the repository at this point in the history
- Bugfixes for spack find
- 0.9.1 can read specs from current develop.
  • Loading branch information
tgamblin committed May 18, 2016
1 parent 6e1257e commit 164da8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/spack/spack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions lib/spack/spack/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 164da8e

Please sign in to comment.