Files
pipenv/pipenv/vendor/pythonfinder/__init__.py
T
Dan Ryan c6ff5fd401 Allow local path to be installed non-editable
- Allow non-CPython interpreter discovery
- Fixes #3005

Signed-off-by: Dan Ryan <dan@danryan.co>
2018-10-12 16:03:01 -04:00

17 lines
586 B
Python

from __future__ import print_function, absolute_import
__version__ = '1.1.2'
# Add NullHandler to "pythonfinder" logger, because Python2's default root
# logger has no handler and warnings like this would be reported:
#
# > No handlers could be found for logger "pythonfinder.models.pyenv"
import logging
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
__all__ = ["Finder", "WindowsFinder", "SystemPath", "InvalidPythonVersion"]
from .pythonfinder import Finder
from .models import SystemPath, WindowsFinder
from .exceptions import InvalidPythonVersion