aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest/py2/_pytest/__init__.py
blob: 42eb1578e229a0d75f403a580300b87846e63c2e (plain) (blame)
1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-
__all__ = ["__version__"] 
 
try: 
    from ._version import version as __version__ 
except ImportError: 
    # broken installation, we don't even try 
    # unknown only works because we do poor mans version compare 
    __version__ = "unknown"