Skip to content

Commit

Permalink
fixes an install issue (nod-ai#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-garvey authored Aug 25, 2022
1 parent 6442487 commit 1bfd00e
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 @@ -8,7 +8,7 @@

PACKAGE_VERSION = os.environ.get("SHARK_PACKAGE_VERSION") or "0.0.4"
backend_deps = []
if os.environ["NO_BACKEND"] is None:
if "NO_BACKEND" in os.environ.keys():
backend_deps = [
"iree-compiler>=20220427.13",
"iree-runtime>=20220427.13",
Expand Down

0 comments on commit 1bfd00e

Please sign in to comment.