mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
c6ff5fd401
- Allow non-CPython interpreter discovery - Fixes #3005 Signed-off-by: Dan Ryan <dan@danryan.co>
17 lines
586 B
Python
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
|