mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
9296f561d9
- Fix virtualenv - Update pythonfinder Signed-off-by: Dan Ryan <dan@danryan.co>
27 lines
725 B
Python
27 lines
725 B
Python
# -*- coding=utf-8 -*-
|
|
from __future__ import print_function, absolute_import
|
|
import os
|
|
import platform
|
|
import sys
|
|
|
|
PYENV_INSTALLED = bool(os.environ.get("PYENV_SHELL")) or bool(
|
|
os.environ.get("PYENV_ROOT")
|
|
)
|
|
ASDF_INSTALLED = bool(os.environ.get("ASDF_DATA_DIR"))
|
|
PYENV_ROOT = os.path.expanduser(
|
|
os.path.expandvars(os.environ.get("PYENV_ROOT", "~/.pyenv"))
|
|
)
|
|
ASDF_DATA_DIR = os.path.expanduser(
|
|
os.path.expandvars(os.environ.get("ASDF_DATA_DIR", "~/.asdf"))
|
|
)
|
|
IS_64BIT_OS = None
|
|
SYSTEM_ARCH = platform.architecture()[0]
|
|
|
|
if sys.maxsize > 2 ** 32:
|
|
IS_64BIT_OS = platform.machine() == "AMD64"
|
|
else:
|
|
IS_64BIT_OS = False
|
|
|
|
|
|
IGNORE_UNSUPPORTED = bool(os.environ.get("PYTHONFINDER_IGNORE_UNSUPPORTED", False))
|