pytest2/_pytest/__init__.py

9 lines
228 B
Python

__all__ = ['__version__']
try:
from ._version import __version__
except ImportError:
# broken installation, we don't even try
# unknown only works because we do poor mans version compare
__version__ = 'unknown'