Skip to content

Commit

Permalink
chore: Not cache package in local file default
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyinc committed Oct 7, 2023
1 parent f790f4a commit 2c17074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
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"
)
Expand Down

0 comments on commit 2c17074

Please sign in to comment.