chore: Not cache package in local file default

This commit is contained in:
FangYin Cheng 2023-10-07 21:29:53 +08:00
parent f790f4a505
commit 2c17074652

View File

@ -14,7 +14,7 @@ from setuptools import find_packages
with open("README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
BUILD_NO_CACHE = os.getenv("BUILD_NO_CACHE", "false").lower() == "true"
BUILD_NO_CACHE = os.getenv("BUILD_NO_CACHE", "true").lower() == "true"
LLAMA_CPP_GPU_ACCELERATION = (
os.getenv("LLAMA_CPP_GPU_ACCELERATION", "true").lower() == "true"
)