Made StagedPackage user-visible.

This commit is contained in:
Elizabeth F 2016-03-25 17:12:16 -04:00 committed by citibeth
parent 358b387283
commit 8f675b0ee8

View File

@ -172,8 +172,8 @@
# TODO: it's not clear where all the stuff that needs to be included in packages # TODO: it's not clear where all the stuff that needs to be included in packages
# should live. This file is overloaded for spack core vs. for packages. # should live. This file is overloaded for spack core vs. for packages.
# #
__all__ = ['Package', 'CMakePackage', 'Version', 'when', 'ver'] __all__ = ['Package', 'StagedPackage', 'CMakePackage', 'Version', 'when', 'ver']
from spack.package import Package, CMakePackage, ExtensionConflictError from spack.package import Package, StagedPackage, CMakePackage, ExtensionConflictError
from spack.version import Version, ver from spack.version import Version, ver
from spack.multimethod import when from spack.multimethod import when