Repository URL to install this package:
Version:
1.0.8-2 ▾
|
wlanpi-profiler
/
opt
/
wlanpi-profiler
/
lib
/
python3.7
/
site-packages
/
tox
/
interpreters
/
unix.py
|
---|
from __future__ import unicode_literals
import tox
from .common import base_discover
from .via_path import check_with_path
@tox.hookimpl
def tox_get_python_executable(envconfig):
spec, path = base_discover(envconfig)
if path is not None:
return path
# 3. check if the literal base python
candidates = [envconfig.basepython]
# 4. check if the un-versioned name is good
if spec.name is not None and spec.name != envconfig.basepython:
candidates.append(spec.name)
return check_with_path(candidates, spec)