File size: 417 Bytes
b04beb1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from __future__ import absolute_import, print_function
import sys
def _check_python_version():
if not sys.version_info >= (3, 4) and not sys.version_info >= (2, 7):
raise ImportError("""
pystata only supports Python 2.7 and 3.4+.
""")
_check_python_version()
del _check_python_version
from .version import version as __version__
from .version import author as __author__
from . import config
|